Re: for Annada Prasana

2004-07-01 Thread Gaurav Mengi
I'm sorry but this was a simple Echo like appl using STREAM SOCKETS(TCP)..but even this wasn't working on the Tungsten C gaurav Click on the image to chat with me Powered by IMaround Patent pending presence and IM technology from Geodesic http://www.geodesiconline.com - Original Message

Re: for Annada Prasana

2004-07-01 Thread Chris Faherty
On Friday 02 July 2004 02:33 am, Gaurav Mengi wrote: > Hi Annada, > I've tested the application and it runs successfully if I try to > communicate between :: > 1)Two palm Simulators > 2)between simulator running on windows mchine and another application > running on linux machine.. > > But when i

RE: for Annada Prasana

2004-07-01 Thread Annada Prasana
Hy Gaurav Mengi, AppNetTimeout? for NetLibSocketBind it should be -1. For UDP socket no need of NetLibSocketListen & NetLibSocketAccept. NetLibReceive is okey. Thankx Annada -Original Message- From: Gaurav Mengi [mailto:[EMAIL PROTECTED] Sent: Friday, July 02, 2004 12:04 PM To: Palm Develo

Re: for Annada Prasana

2004-07-01 Thread Gaurav Mengi
Hi Annada, I've tested the application and it runs successfully if I try to communicate between :: 1)Two palm Simulators 2)between simulator running on windows mchine and another application running on linux machine.. But when i try to run on the device..ie I'm only able to send the data from

RE: for Annada Prasana

2004-07-01 Thread Annada Prasana
Hy,Gaurav Mengi Can you test it for simulator first?Bcoz for device may be some problem of GPRS data communication.And in code first make the from address field to NULL,wheather it is working fine? Thankx Annada -Original Message- From: Gaurav Mengi [mailto:[EMAIL PROTECTED] Sent: Frida

for Annada Prasana

2004-07-01 Thread Gaurav Mengi
Hi Annada, I've seem ur previous postings about receving packets on the device from the PC when u r using UDP packets..Even I'm facing the same problem n frequently making postings but no replycan u plzz help me with that if u know the solution... I'll highlight upon my issues:

RE: URGENT QUESTION - What is the real free memory?

2004-07-01 Thread Isabella
Hi Ricardo, Just copy and paste the following code. You can see the free memory space of Palm on palm screen. char s[50]; UInt32 value; UInt32 totalMemoryP; UInt32 dynamicMemoryP; value= GetOSFreeMem(&totalMemoryP, &dynamicMemoryP ); StrPrintF (s, "value: %lx",value/1024); WinDrawC

Re: help on Eclipse

2004-07-01 Thread vanitha s
When u start making a new project select the option of palm 68K project then click the build option, it would compile as palm code only i think. regds vanitha --- jeff ang <[EMAIL PROTECTED]> wrote: > can anybody tell me what i need to do to compile a > code as Palm OS Code Resource on Eclipse? >

Re: Disabling menu for a short time

2004-07-01 Thread Ben Combee
At 08:46 PM 7/1/2004, you wrote: Hi all, I'm looking for a way to disable the menu being selected in an application for a short time, then enabling it again. I want to do this so that certain controls cannot be selected for a certain time whilst some other events are occurring. I have been abl

Disabling menu for a short time

2004-07-01 Thread Kyle Dorian
Hi all, I'm looking for a way to disable the menu being selected in an application for a short time, then enabling it again. I want to do this so that certain controls cannot be selected for a certain time whilst some other events are occurring. I have been able to disable other buttons being

which one would be better - PRC or PDB?

2004-07-01 Thread Nur
I am developing a dictionary database which can be modified by the application. It can be stored either in PRC (resource database) or in PDB (record database) format. Is there any recommendation to use one over another from this dictionary application's perspective? Thanks a lot. Regards, Nur --

RES: URGENT QUESTION - What is the real free memory?

2004-07-01 Thread Desenvolvimento 3
Guys, thanks for all answers. Now I got what I want. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: URGENT QUESTION - What is the real free memory?

2004-07-01 Thread Chris Faherty
On Thursday 01 July 2004 02:07 pm, Desenvolvimento 3 wrote: > To get the free space must I have to do anything more than using > MemCardInfo function? Do a search here for GetOSFreeMem. I'd post the search result but it was about 1,000 characters. http://kb.palmsource.com That function does a

Legal audio sample rates?

2004-07-01 Thread Magnus Berg
I've asked this before without luck, I'll try once more. Which audio sample rates are legal? My question *is* motivated because of the following confusing differences. The Palm OS Reference states that the Sound Manager supports "All normal sampling rates (8k, 11k, 22.05k, 44.1k, 48, 96k)". The

Re: Serial number or unique ID

2004-07-01 Thread Dave Lippincott
Again, its in the Knowledgebase: http://makeashorterlink.com/?O266453B8 - Original Message - From: "Alexandre Teodoro Guimarães" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Thursday, July 01, 2004 12:36 PM Subject: RES: Serial number or unique ID > so don´

Re: URGENT QUESTION - What is the real free memory?

2004-07-01 Thread Ben Combee
At 01:07 PM 7/1/2004, you wrote: Hi people, I am using the MemCardInfo function to get the palmos´ free space. I thought it was right. When I look into the INFO application I see about 1MB less at least. What is that? To get the free space must I have to do anything more than using MemCardInfo func

Tungsten C Wi-Fi failure

2004-07-01 Thread Oran Turner
Hi, I've experience two Tungsten C Wi-Fi failures within as many weeks.  Both units had been updated with 2.0, and were working fine for up to a week without problems.  The symptom of the failure is an inability to connect to any Wi-Fi network, and all zeros for the MAC address under Wi-Fi Info.

Re: displaying video/audio/graphics

2004-07-01 Thread Magnus Berg
Alos, what would be the best way to play video's? I haven't come across any information on this and I'm not even sure if it's possible. So I don't even know where to start with this one. MMPlayer has a library that can be used for this. Drop us a mail on [EMAIL PROTECTED] for more info.

is it right??

2004-07-01 Thread Desenvolvimento 3
I read the documentation again, calm and got the conclusion below...right? for (counter = 0; counter < MemNumRAMHeaps(0); counter++) { heapID = MemHeapID(0, counter); if (!MemHeapDynamic(heapID)) { MemHeapFreeBytes(heapID, &heapM ,&maxFreeCS );

URGENT QUESTION - What is the real free memory?

2004-07-01 Thread Desenvolvimento 3
Hi people, I am using the MemCardInfo function to get the palmos´ free space. I thought it was right. When I look into the INFO application I see about 1MB less at least. What is that? To get the free space must I have to do anything more than using MemCardInfo function? I am sorry, it could be a

Re: Converting a text file from PC format to Palm Database format

2004-07-01 Thread Ben Combee
At 12:18 PM 7/1/2004, you wrote: What would be the best way to convert a text file from PC format to Palm Database format? Of course, the data will have to be broken down to 64K chunks of records. Convert it to a file stream, and use the FileOpen/FileRead/FileClose APIs on the device. The tool 'p

Converting a text file from PC format to Palm Database format

2004-07-01 Thread Nur
What would be the best way to convert a text file from PC format to Palm Database format? Of course, the data will have to be broken down to 64K chunks of records. Thanks, Nur -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/

RES: Serial number or unique ID

2004-07-01 Thread Alexandre Teodoro Guimarães
so don´t have a secure way to have a unique number for every palm? some devices don´t have the serial number? -Mensagem original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] nome de Dave Lippincott Enviada em: quinta-feira, 1 de julho de 2004 13:23 Para: Palm Developer Forum Assunto

Re: Serial number or unique ID

2004-07-01 Thread Dave Lippincott
Your answer is in the knowledgebase: http://makeashorterlink.com/?D29C412B8 http://makeashorterlink.com/?T1BC522B8 not all devices have a app readable serial number. - Original Message - From: "Alexandre Teodoro Guimaraes" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTEC

Re: how can i read the adobe acrobat file from palm?

2004-07-01 Thread Roberto Pedrozo Mendes
You can to use the Adober Acrobat Reader For palm. But it doesn´t work wel with a large files . I convert a 10Megabytes file and it worked 3 hours and crash. i´m find too other option. Isabella <[EMAIL PROTECTED]> wrote: Hi All, Can any one tell me, how can i read the adobe acrobat file from p

Procedure Alarm!

2004-07-01 Thread Keyur Patwa
Hi guys, In my app, I want to do some task in the background and allow the user to interact with the GUI which may even stop the task running in the background! As a solution, I am thinking about implementing Procedure Alarm! Is it advisable to implement this to solve my problem? I read about it

sync palm using mult stations to a server

2004-07-01 Thread Alexandre Luz Barreto
I need a way to sync a palm in any station i got here... the data must be send to a server ever staion ll have hotsync... so i user ll come to any staion he wants plug his plam and hit hotsync so the data must be send to a server in the network is there a way to do that? i'm doing some testes here

RES: Serial number or unique ID

2004-07-01 Thread Alexandre Teodoro Guimaraes
The function retval = SysGetROMToken ((UInt16) 0, sysROMTokenSnum, (UInt8**) &bufP, &bufLen); not work in Zire21... why? have another way? -Mensagem original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] nome de Alexandre Teodoro Guimaraes Enviada em: quinta-feira, 1 de julho de 2004

concept behind reading and editing word or excel in palm?

2004-07-01 Thread Isabella
Hi All, i want to know the concept behind reading and editing word in palm. And i want to know how that word doc gets updated in PC from palm(using conduits). In Palm we can not load the msoffice software then how they are doing that with palm. is there any documents related to that? Thanks, I

Serial number or unique ID

2004-07-01 Thread Alexandre Teodoro Guimaraes
Anyone know how I can get a serial number or unique ID for every palm? I to make some kind of key, that do not work in every palm. One key for one palm cannot work in another. tanks guys. Alexandre -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.p

Re: sysAppLaunchCmdSyncNotify

2004-07-01 Thread Danielle O'Hallisey
Ben Combee wrote: >I'd suggest using the syncNotify to set an alarm for your application, >and to use the alarm to launch your app. Alarms are disabled while the >sync is happening, but turned back on when it has completed. It sounds as if we are at last barking up the right tree, then; thanks! O

how can i read the adobe acrobat file from palm?

2004-07-01 Thread Isabella
Hi All, Can any one tell me, how can i read the adobe acrobat file from palm. Thanks, Isabella.S -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Address book application size

2004-07-01 Thread Ben Combee
At 05:58 AM 7/1/2004, you wrote: Hi All, How default applciations are build. I have seen difference in sizes a) Address application built in the device as well as simulator - 1K b) Address application compiled by us in release mode - 90 K Why this difference is their. Are we missing some setting wh

T3 Calendar vs Datebook

2004-07-01 Thread Andrew Waites
Hi, Our app has a backup function which copies DBs to the SD card. This is used when roadwarriors lose their customer or product DBs. For completeness I've been also backing up the main Palm DBs (Datebook, ToDos, Memos, etc). On the T3 these PIMs have been replaced (sort of) with new versions

help on Eclipse

2004-07-01 Thread jeff ang
can anybody tell me what i need to do to compile a code as Palm OS Code Resource on Eclipse? __ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail -- For information on using the Palm

Re: Address book application size

2004-07-01 Thread Dave Lippincott
This may be the size of the data associated with the app and not the app size. Those applications are not 1K on any device. - Original Message - From: "Ritu Chawla" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Thursday, July 01, 2004 8:39 AM Subject: RE: Addre

Re: BUS Error - Using Shared Lib, Please help..

2004-07-01 Thread Dave Lippincott
A bus error means there is a bug in your code where you are writing to a memory location you have not allocated for your application/library. Check your code, make sure you have allocated memory properly and have not copied a string into too small of a container i.e. copy a 10 char string into mem

Re: Help on VFSDirEntryEnumerate is urgently [tetsuo Nagamatsu]

2004-07-01 Thread Dave Lippincott
sizeof will return the size of the actual pointer not the data it points to. StrLen would be the best solution to recover the length of the string the pointer points to. MemPtrSize will return the size of the memory chunk originally requested by MemPtrNew. I'd use this if you were not using a NUL

Re: Address book application size

2004-07-01 Thread Robert Moynihan
Well, just keep in mind that you can't do too much processing in 1k of code. Even a terribly simple application that contains nothing more than a 32x32b/w icon will be greater than 100bytes in size, and would show up as a 1k application. Try inspecting the contents of the device with somethin

RE: Address book application size

2004-07-01 Thread Ritu Chawla
Does this means the Info shown on device as well simulator does give actual applciation size for default applications. check for Address - 1K Memo Pad - 1 K Phone- 1 K To do list- 1 K -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Robert Moynihan Sent: Thur

Re: Address book application size

2004-07-01 Thread Robert Moynihan
Ritu Chawla wrote: Hi All, How default applciations are build. I have seen difference in sizes a) Address application built in the device as well as simulator - 1K b) Address application compiled by us in release mode - 90 K Why this difference is their. Are we missing some setting which needs to b

is there any event which is generated on beaming

2004-07-01 Thread vanitha s
hello, we are developing an application in which after beaming, the database is checked if that code is present.is there any event which tells us that the beaming is done & we can start searching now?plz help regards vanitha __ Do you Y

Address book application size

2004-07-01 Thread Ritu Chawla
Hi All, How default applciations are build. I have seen difference in sizes a) Address application built in the device as well as simulator - 1K b) Address application compiled by us in release mode - 90 K Why this difference is their. Are we missing some setting which needs to be done. rgds Ritu

BUS Error - Using Shared Lib, Please help..

2004-07-01 Thread Ritu Chawla
Hi All, I have created a C++ applciaiton. which is using two shared libraries. Initially iwas able to call the functions fromthe app. But as the code size is growing i am facing problems . >From last two days as soon as i try to debug ny applciation by adding the libs in EXECUTABLE settings i get

Re: Help on VFSDirEntryEnumerate is urgently [tetsuo Nagamatsu]

2004-07-01 Thread Chris Apers
You can't use sizeof() on a pointer allocated with MemPtrNew use MemPtrSize instead. But as you are enumerating i don't think you need to allocate fileName each time. Better and faster to use Char fileName[256] and then you can use sizeof(). - Original Message - From: "Helmut A. Bender"

Re: Help on VFSDirEntryEnumerate is urgently [tetsuo Nagamatsu]

2004-07-01 Thread Helmut A. Bender
Am Donnerstag, 1. Juli 2004 04:55 schrieb Tatsuo Nagamatsu: > > I have changed the size to 256 but still the same > > result. anyway the snippet of code below is taken from > > Palm OS Reference Manual, but it doesn't work either. > > > > Char *fileName = (Char*) MemPtrNew(256); > > > > info.nameBu