Localization

2002-12-02 Thread prasadb
Hai all, How localize the application and resources from english to japanees language. I have used prc2ovl tool to craete an overlay of an existing App.prc. I have loaded both application and overlay of the application on a japanees rom. I didnt find any japanees resources in the application. I

resources in other languages.

2002-12-02 Thread prasadb
Hai folks, Is there any option to create resources in japanees language using constructor, CW IDE. I have found a japanees support folder in Coderwarrier files. Do i need to replace PalmRez.dll with palmRezJ.dll? thanks®ards PrasadB -- For information on using the Palm Developer Forums

prc2ovl

2002-12-02 Thread prasadb
hai all, I am using prc2ovl tool to create a japanes overlay of an english app. does this prc2ovl tool will change the resources to japanees version. I mean button titles, form titles will change to japanees text?. or is there any other way to localize resources? Thanks in advance for any help.

RE: compile a project

2002-12-04 Thread prasadb
I guess U need to chnage the header name pilot.h to PalmOS.h in ur .c file . -Original Message- From: Silvain Jewoh [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 5:35 PM To: Palm Developer Forum Subject: compile a project I try to compile a old project.The project was w

Application supports multi language

2002-12-05 Thread prasadb
work on both english and japanees devices. I have tried Overlays..seems to be its not working. thanks PrasadB -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: debug on device

2002-12-11 Thread prasadb
You must need to kill the hotsync program before debugging. The easy way to enter "shortcut ..2" is tap find button on silk screen and enter "shortcut ..2" in Find text field. I hope it solves ur problem. P:) -Original Message- From: Chris Apers [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: trouble in float type

2002-12-11 Thread prasadb
Use FloatMgr API: FlpCorrectedAdd()for adding two values, for help on API you can find in palmOS reference manual. regards Pbathini -Original Message- From: palmosÐÂÎÅ×é [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 2:18 PM To: Palm Developer Forum Subject: trouble in floa

Font styles

2002-12-11 Thread prasadb
Hai all, How to implement italic and underline styles for a specific font in palm? I want to implement like this. If user selects a word in a texfield and taps on a button, the selected word should become italic or bold or underlined. any help ?. regards PBathini -- For information on using

gadget enter Event

2002-12-11 Thread prasadb
Hai all, when tap on a gadget, iam trying to catch a gadgetenterEvent. But its not firing at all. Any help? Thanks PB -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: gadget enter Event

2002-12-11 Thread prasadb
Yeah right, its frmGadgetEnterEvent. Sorry for the typo. PB -Original Message- From: Kevin OKeefe [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 1:17 AM To: Palm Developer Forum Subject: RE: gadget enter Event He probably meant frmGadgetEnterEvent. -Original Message--

RE: gadget enter Event

2002-12-11 Thread prasadb
Thanks for the info. PB -Original Message- From: Ben Combee [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 10:54 AM To: Palm Developer Forum Subject: RE: gadget enter Event At 10:02 2002-12-12 +0530, you wrote: >Yeah right, its frmGadgetEnterEvent. Sorry for the typo. Thi

Emulating expnasion card on OS5 simulator

2002-12-12 Thread prasadb
Hai all, How to emulate desktop folder as an expnasion card on OS5 simulator. I know it can be done on POSE. Thanks PB -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: why my list can not response to my click?

2002-12-13 Thread prasadb
jason, Can just send the whole function(Imean the form handle event function), i can get an idea where the mistake. regards Prasad -Original Message- From: jason [mailto:[EMAIL PROTECTED]] Sent: Friday, December 13, 2002 2:25 PM To: Palm Developer Forum Subject: Re: why my list can not

Printing program

2002-12-13 Thread prasadb
Hi, Can anybody help me in writing printing program?any pointers or links for this will help great. I need my application should able to print with out using third party printer application. regards Prasad -- For information on using the Palm Developer Forums, or to unsubscribe, please see h

RE: why my list can not response to my click?

2002-12-15 Thread prasadb
andled; } regards PrasadB -Original Message- From: jason [mailto:[EMAIL PROTECTED]] Sent: Monday, December 16, 2002 7:25 AM To: Palm Developer Forum Subject: Re: why my list can not response to my click? prasadb : below is the form handle content. please check it for me,thanks.

RE: Localization method in Addresses program

2003-01-03 Thread prasadb
If you observed in the Traget settings, each language resources are linked to the corresponding target only. For example the resources in jpJP(japanees lang) folder will be linked to AdressjpJP target. You can select the required target and can build the prc. regards PB -Original Message-

size of structure

2003-02-19 Thread prasadb
Hai folks, I have a basic doubt about the memory allocated for a structure in Palm.I declared following structure in my program. The size of elements in the structure is 25 bytes. But when i tried to find size of whole structure using sizeof(mystruct) its returning 26 bytes. I found that if sing

RE: Masking characters for Password field

2003-03-03 Thread prasadb
Hai Ramesh, This is one of the way to replace the password chars which are keyed in. case keyDownEvent: if (event->data.keyDown.chr > 32) { fld = GetObjectPtr(Login); FldInsert(fld, "

RE: Masking characters for Password field

2003-03-03 Thread prasadb
and also you need to store the character entered in a buffer to compare . if (event->data.keyDown.chr > 32) { //copy the event.data.kewdon.chr in to a buffer fld = GetObjectPtr(Login); FldInsert(fld, "*", 1);

RE: In a loop is it possible to use button

2003-03-17 Thread prasadb
U can use nil event to get this functionality. put your code in nil event. Prasad -Original Message- From: Hemamalini [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 8:47 AM To: Palm Developer Forum Subject: In a loop is it possible to use button Hello, In FrmOpenEvent i

RE: In a loop is it possible to use button

2003-03-17 Thread prasadb
vent, &error)) if(!ApplicationHandleEvent(&event)) FrmDispatchEvent(&event); }while (event.eType != appStopEvent); } Hope this works for you regards PrasadB -Original Message- From: Hemamalini [mailt

RE: In a loop is it possible to use button

2003-03-17 Thread prasadb
> { > do{ > > if(startLoop) > wait = 1; > else > wait = evtWaitForever; > > EvtGetEvent(&event,wait); > > if(!SysHandleEvent(&event)) > if(!MenuHandleEvent(0, &event, &error)) > if(!ApplicationHandleEvent(&event)) > FrmDispatchEvent(&a