memory issues vs storage card

K

Khanh

hi,

Our PPC App seems to have memory issues such as it is exited
unexpectedly, I've taken a look then the memory information as
follows:

CE Database: 70 MBs
Program : ~ 28 MBs

Thus it's most likely to suplement memory for device, and storeage
card comes as a result.

My questions is:
1. Can our PPC App overcome memory issues by storage card?
2. If 1 is OK, how to take most adavantage of memory issue via
storage card? for ex, how to specify the Temp directory on storage
card when downloading, synchronizing with SQL Server database?
etc...

Any idea would be appreciated,
Thanks
K
 
D

Dan

When inserting a memory card into a device, it simply exists as another
partition, or quite simply a folder that can be accessed. Typically "\\MMC
Card" or something of that nature...

Therefore when handling data you could have a preference to storing data on
the card in the following sort of fashion:

string szPath = "\\Program Files\\MyApp\\Data";
if ( Directory.Exists ( "\\MMC Card" )
{
szPath = "\\MMC Card";
}
string szFilename = szPath + "\\TempFile.dat";

Hope that helps some...

Dan.
 
D

Dan

What operating system is your PDA running?

You should be able to look at the config and alter the memory settings to
incorporate any 3rd party memory card you have installed...

Dan.
 
K

Khanh

hi,

My Device is Pocket PC 2003, Fujitsu Loox FLX3AW.
I mean my PDA currently has 117MBs, can I increase this value by add
some more physical memory ? (similar to add more RAM in desktop PC;
not storage card or flash disk)

Thanks,
K
 
D

Dan

Khanh,

I may be mistaken, but I think this is fixed. Opening up the PDA probably
voids the warranty so I don't see how it's possible to add more memory
yourself.

Daniel.

Khanh said:
hi,

My Device is Pocket PC 2003, Fujitsu Loox FLX3AW.
I mean my PDA currently has 117MBs, can I increase this value by add
some more physical memory ? (similar to add more RAM in desktop PC;
not storage card or flash disk)

Thanks,
K

Dan said:
What operating system is your PDA running?

You should be able to look at the config and alter the memory settings to
incorporate any 3rd party memory card you have installed...

Dan.

Khanh said:
Could I install more physical memory in PDA? and how?

Thanks

"Dan" <danielbass [at] postmaster [dot] co [dot] uk> wrote in message
When inserting a memory card into a device, it simply exists as
another
partition, or quite simply a folder that can be accessed. Typically
"\\MMC
Card" or something of that nature...

Therefore when handling data you could have a preference to storing
data
on
the card in the following sort of fashion:

string szPath = "\\Program Files\\MyApp\\Data";
if ( Directory.Exists ( "\\MMC Card" )
{
szPath = "\\MMC Card";
}
string szFilename = szPath + "\\TempFile.dat";

Hope that helps some...

Dan.

hi,

Our PPC App seems to have memory issues such as it is exited
unexpectedly, I've taken a look then the memory information as
follows:

CE Database: 70 MBs
Program : ~ 28 MBs

Thus it's most likely to suplement memory for device, and storeage
card comes as a result.

My questions is:
1. Can our PPC App overcome memory issues by storage card?
2. If 1 is OK, how to take most adavantage of memory issue via
storage card? for ex, how to specify the Temp directory on storage
card when downloading, synchronizing with SQL Server database?
etc...

Any idea would be appreciated,
Thanks
K
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top