Thanks for your suggestions.
Yes I am using the multiple code segments.. Is that causing this problem? . _____ From: %%email.bounce%% [mailto:%%email.bounce%%] On Behalf Of Jeff Loucks Sent: Tuesday, January 08, 2008 3:21 PM To: Palm Developer Forum Subject: RE: unable to use StrPrintF() I saw sample code go by in the replies, all of which should work. Try something simple like this; { Char buffer[32]; Char *p; UInt16 num; num = 123; p = buffer; StrPrintF(p, "%d", num); } If this example crashes, then you have other problems, as Harald suggests. In what context is this code executed? Are you servicing a launch code that does not set up globals? If so, are you referencing any globals, or do you have multiple code segments? Harald's suggestion to provide more code context is always a good one. -- [Jeff Loucks, Gig Harbor, WA, USA] -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/ -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/
