Re: Error: Unable to launch Target Environment :(

2006-03-25 Thread Gary Shelton
Hello all, I'm just starting with PODS, have been useing WinSoft's Packet Studio(Pascal), and am having the same problem. I have searched the group and have not found a fix. This seems to be a common problem. anyone able to direct me to some help. I did find one post that talked about starting

Error: Unable to launch Target Enviroment

2006-03-25 Thread Gary Shelton
Hello all, I'm just starting with PODS, have been useing WinSoft's Packet Studio(Pascal), and am having the same problem. I have searched the group and have not found a fix. This seems to be a common problem. anyone able to direct me to some help. I did find one post that talked about starting the

Re: Error: Unable to launch Target Enviroment

2006-03-25 Thread Gary Shelton
Hey All, Got debugger working by manually starting POSE then Debugger and loading prc file. Still won't work from PODS but better than nothing. Gary -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Static Functions?

2005-05-20 Thread Gary Shelton
What does the keyword "static" do in this header file? I have been programming in Pocket Studio (Pascal) and am trying to learn C/C++ so I can use Palm developer as well as understand code examples for ongoing Pocket Studio programs. Taken from Library example pf Palm OS Programming Bible: lib

Re: Static Functions?

2005-05-20 Thread Gary Shelton
Thanks Ben. I'll add the article list to my bookmarks. BTW be assured I did a lot of digging before posting. Palm OS Bible, C++ Primer, code examples, as well as online C/C++ tutorials. However...Another Question on Macro's -- For information on using the PalmSource Developer Forums, or t

Question on Macro example

2005-05-20 Thread Gary Shelton
Hello all, Another Question on C/C++, Please be patient just learning. Example from Palm OS Bible librarian sample. librarianDB.c // Utility macros for handling bit fields #define BitAtPosition(pos) ((UInt16)1 << (pos)) #define GetBitMacro(bitfield, index) ((bitfield) & BitAtPosition(index))

Built-in menu commands

2005-05-25 Thread Gary Shelton
Hello all, Anyone know where I can find a list of built-in menu commands and their ID's, such as the Cut, copy, paste commands? Thanks, Gary -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Built-in menu commands

2005-05-25 Thread Gary Shelton
Should have bean clearer, This is one of the articles that turned me on to pre-defined menu commands. What I was after was any info that gives a comprehensive list of the available commands. It is frustrating to spend time creating routines and then finding that it had already been done, you mi

Re: T5 Memory Issue

2005-06-12 Thread Gary Shelton
I'll try, I have a T5 and was confused by the amount of memory also. the memory is split, 32Mb of main memory listed on the palm desktop as 'Handheld' the rest is seperate and listed as INTERNAL. Almost as a seperate card. This is the memory that can be used as a USB drive. Gary -- For in

Re: Problems with FrmGotoForm

2005-09-30 Thread Gary Shelton
Michael, What part of the form is displayed? If it is just a blank screen you may have forgotten to add the form to he frmLoadEvent. if (event->eType == frmLoadEvent) { // Load the form resource. formId = event->data.frmLoad.formID; form = FrmInitForm(formId); FrmSetActiveForm(form); Gar