Downlaoding conduit Development Kit for windows

2001-09-11 Thread Aaron Peter
Hi, When tried to downlaod CDK 4.02a for windows it asked me to enter User name and Password. Is that i'm missing any step before downlaoding ? Please Help -Peter -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/for

RE: pdb to MS access

2001-09-11 Thread Kunal Taneja
There is a sample code on palm site for precisely this kind of application. The name is Address Transfer-1 it transfers data between the handheld's address book and a Microsoft Access database. you can follow that sample application to create your conduit. It is very detailed and simple. :-D Kunal

conduit - need help

2001-09-11 Thread Chaitra
Hi, Can i synchronize my palm with a webserver using a wireless modem. If yes..how do i go abt doing it. pl. guide and help me. Thanks Chaitra -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: pdb to MS access

2001-09-11 Thread Anuradha J
well, u can convert pdb files to a comma separated file, read from this new file and port it to MS Access. Anuradha __ FREE voicemail, email, and fax...all in one place. Sign Up Now! http://www.onebox.com -- For information on using the Palm D

power off and auto sleep

2001-09-11 Thread Matt Mason
I am having a problem with my appinfo data not being fully updated on power off and auto sleep. Is there a standard (or intelligent!) something I should be doing on those events? -- Matt Mason [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please

Re: Palm App does not save onto device after successfull 'run' and 'kill'

2001-09-11 Thread Vini P
Check ur app creator id --- dele adedoyin <[EMAIL PROTECTED]> wrote: > Please help, > > I've been trying to figure this out for some time > now. My app runs as > expected after down loading, while debugging but > after I kill the app, It is > no longer on the device. I would expect the app to >

Re: pdb to MS access

2001-09-11 Thread Shaikh Khurram Saghir
Different solutions are appropriate for different situations. What will happen if the database does not reside on the local system where the user syncs his device. I'll not do the stupidity of keeping the device into sync mode, burning it's batteries, till the data transmission on the tcp/ip compl

Re: Saving application on Palm Device

2001-09-11 Thread Ben Combee
> I need help desperately. I am getting increasingly frustrated. I am a novice > palm programmer. I have really been enjoying coding for the palm... that is > until I started running my app(s) on the device as opposed to the emulator. Try to install the PRC file generated by CodeWarrior directly

Saving application on Palm Device

2001-09-11 Thread dele adedoyin
Hello kind and ever so generous with advice forum members, I need help desperately. I am getting increasingly frustrated. I am a novice palm programmer. I have really been enjoying coding for the palm... that is until I started running my app(s) on the device as opposed to the emulator. My appli

RE: Palm App does not save onto device after successfull 'run' and 'kill'

2001-09-11 Thread Peter Epstein
You really should exit Launcher before dragging apps onto a POSE session. Run any app other than the one you're installing. -- Peter Epstein -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: Time??

2001-09-11 Thread Tom Hoelscher
Do you have the Palm OS docs? The Reference PDF documents several functions involving time. You might look at SelectTime, and see if it does what you want... on 9/11/01 6:45, Johnathan Smith at [EMAIL PROTECTED] wrote: > Time?? > > I know how to display the palmos calendar foe the user > to

Re: Palm App does not save onto device after successfull 'run' and'kill'

2001-09-11 Thread Tom Hoelscher
I've found that sometimes I have to go to another app, then back to Launcher to get my app to show up, if it wasn't loaded when I started the session. Haven't checked with the latest rev of POSE yet. This also happens if I drop an app onto the POSE sessions, with Launcher active. All I do is run

Re: FldSetTextPtr( fldP, NULL ) in POSE with m100 and PalmOS 3.5.1 ROM file.

2001-09-11 Thread Brian Smith
On Tue, 11 Sep 2001, Leonardo Gomes Holanda wrote: > Starter (1.0) just read from memory localtion 0x, which is in > low memory. "Low memory" is defined as the first 256 bytes of memory. > It should not be directly accessed by applications under any > circunstances. > > When debuging,

Re: Potentially Goofy Preferences Question

2001-09-11 Thread Bradly J. Barton
Yes, I have now confirmed this.. a reset will change the Palm back to the Preferences setting for the system volume when using SndSetDefaultVolume ... thanks for all the help. -- Bradly J. Barton - [EMAIL PROTECTED] Jenies Technologies Incorporated (972) 602-1835 http://www.JTI.net http:

RE: Changing table cell to be edited

2001-09-11 Thread Peter Epstein
One possible approach: set event->data.tblEvent.column = 1 in the event and return without setting handled = true. -- Peter Epstein -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Changing table cell to be edited

2001-09-11 Thread Seeley, Steve E
Hi all, I'm hoping someone can give some guidance on an issue I'm having when it comes to redirecting what cell gets edited in a table. I have a multi-column table. What I want to happen is if the user selects any column/field in a row only column 1 for that row gets selected and edited

RE: stack overflow

2001-09-11 Thread Peter Epstein
Infinite recursion is always a likely candidate for a stack overflow. Check the stack and see. Maybe a callback function for a table or other form object is somehow invoking a FrmDrawForm. Another thing to check for is a function that has a stack allocated variable that's huge. Such variables shou

stack overflow

2001-09-11 Thread Vital Cruvinel Ferreira
Hi, I received the following message during debugging my application using Codewarrior under a m100 ROM and PalmOS 3.5.3: "The application is getting close to overflowing the stack." It occurs when: FldSetTextHandle (fldP, txtH); valid txtH (not NULL and locked) FldDrawField (fld

Re: Palm App does not save onto device after successfull 'run' and 'kill'

2001-09-11 Thread Jun-Kiat Lam
One thing comes to mind: is your application set to type 'appl' (case-sensitive)? If it isn't, the Launcher will not display it. You can set this in the PalmRez Post Linker panel settings (inside the Project Settings). -- jkl - Original Message - From: "dele adedoyin" <[EMAIL PROTECTED]>

RE: Problem with Plugin example (from Knoledgebase article 1157)

2001-09-11 Thread Danny Epstein
Just a guess, but make sure PC -Relative Strings is on and Pool Strings is off. If PC-Relative Strings is off or Pool Strings is on, your strings literals are stored with your globals, and are only accessible on certain launch codes. -- For information on using the Palm Developer Forums, or to u

FldSetTextPtr( fldP, NULL ) in POSE with m100 and PalmOS 3.5.1 ROMfile.

2001-09-11 Thread Leonardo Gomes Holanda
I created this function to make my work easier when changing a text in a NON editable field. void CopyCharPtrToField( const Char * text, UInt16 fieldID) { Char* txtPtr; FormPtr frm = FrmGetActiveForm( ); FieldPtr fldP; fldP = FrmGetObjectPtr(frm, FrmGetObjectIndex( frm, fieldID ) ); txtP

Re: pdb to MS access

2001-09-11 Thread Ed Greenberg
At 05:01 PM 9/11/2001 +0530, you wrote: >Well, Just from the top of my mind. You can write comma separated files at >the dekstop during synchornization or directly from your PDB files and we >all very know that one can import the CSV files in MS access. > >Regards, >Khurram+ Couldn't he write a

Re: helppppp !! has anyone used non blocking sockets ??

2001-09-11 Thread Sajul Pamban
Hi there, Try defining optValueB as unsigned long optValueB = 1 ; Call NetLibSocketOptionSet after call to "NetLibSocketBind" / "bind " function / Macro. I hope this solves your problem. Set family as "netSocketAddrINET" / "AF_INET" and s_ad

Palm App does not save onto device after successfull 'run' and 'kill'

2001-09-11 Thread dele adedoyin
Please help, I've been trying to figure this out for some time now. My app runs as expected after down loading, while debugging but after I kill the app, It is no longer on the device. I would expect the app to be saved on the device with the Icon(s) I created. Is there a setting in constructer

expansion card

2001-09-11 Thread Susan Travis
Does anybody know whether the HotSync manager invoke respective conduits for apps on the expansion card? If not, is there a way it can be done? Susan _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

Syncing to expansion card

2001-09-11 Thread Susan Travis
Does anybody know if the HotSync manager invoke respective conduits for apps on the expansion card? If not, is there a way it can be done? Susan _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- F

Time??

2001-09-11 Thread Johnathan Smith
Time?? I know how to display the palmos calendar foe the user to pick a date, but my users have to pick a time?? does the palmos have anything?? __ Do You Yahoo!? Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger http://

Re: helppppp !! has anyone used non blocking sockets ??

2001-09-11 Thread Essell
hi sajul, thanks for u'r reply. i tried this .. but it doesn't seem to make any difference. this is what i did : Boolean optValueB = true; NetLibSocketOptionSet (AppNetRefnum, mainSockShort, netSocketOptLevelSocket, netSocketOptSockNonBlocking, &optValueB, 2, 1, &errP); & i called this functi

Re: pdb to MS access

2001-09-11 Thread Shaikh Khurram Saghir
Well, Just from the top of my mind. You can write comma separated files at the dekstop during synchornization or directly from your PDB files and we all very know that one can import the CSV files in MS access. Regards, Khurram+ - Original Message - From: Essell <[EMAIL PROTECTED]> Newsg

RE: I hate to say I told you so but..

2001-09-11 Thread troymcloine
Blah blah blah, I know evertything, I'm so hip and cool, I told you so. Blah blah blah. Get a life please!!! -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: pdb to MS access

2001-09-11 Thread Pietro F. Maggi
"Essell" <[EMAIL PROTECTED]> wrote: > > Hi there, > > i have a database on the palm. i need to know whether its possible for me to > port it to MS access. the database is obviously a .pdb file on my palm. what > kind of application would i have to write to convert this to MS access & how > would i

Problem with Plugin example (from Knoledgebase article 1157)

2001-09-11 Thread Pietro F. Maggi
I'm doing some testing on a plugin based on the plugin-1 example. Currently I've to write a sync client, and I'm trying to implement a plugin system. Starting from the example code I've added some code to open the Net library, but this fail: Char l_pcLibrary[20]; StrCopy(l_pcLibrary, "Net.l