re: Query on pdb files

2005-02-21 Thread Evan Ovadia (Verdagon)
Usually PDB's are stored in the palm's storage heap. It's viewed by the application that was built for it, like how the Memo database is only viewed by the Memo application. You don't need to convert a .PDB file to a palm database, the HotSync tool does it for you. Hope this helps =) -- For

Re: PODS PNO not working.

2005-01-21 Thread Evan Ovadia (Verdagon)
I commented out the three Adn functions and it still gives the same error. Am I missing something? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

PODS PNO not working.

2005-01-16 Thread Evan Ovadia (Verdagon)
Hey everyone. This morning I started up PODS, created a new Managed PNO project, built it, installed it, ran it, and when I clicked on the button, it gave me a fatal error. I tried making a standard PNO project, same thing happened. Why doesnt it work? I didn't make any changes at all... --

Templates in .cpp files not being included?

2005-01-16 Thread Evan Ovadia (Verdagon)
I'm in the process of rewriting my project to have multiple .cpp files instead of a huge tree of .h files, but I'm running into a very frustrating problem. I have the frame of the application in a file called E-Frame.cpp. Then there's the source code for my templated linked list class, the

Re: How can I prevent user from reaching the launcher?

2005-01-16 Thread Evan Ovadia (Verdagon)
How about you let the user access the basic programs, like Todo and memopad, datebook, clock, etc. ? This might be possible by having your program log what applications are launched at what times. And if it shows them launching a program that you dont want them to launch, fire them or

Managed Make 68k Project - Out of space!?

2005-01-16 Thread Evan Ovadia (Verdagon)
Hey everyone. Since my previous version was getting uncontrollably confusing (I couldn't find out which sections were overflowing), I decided to rewrite the code in a Managed Make 68K C++ project. I was under the impression that it would manage the sections for me, but now I'm getting the same

Re: PODS... which sections are full?

2005-01-13 Thread Evan Ovadia (Verdagon)
That's probably a possibility. I only have one source file, and all the other source code is in header files which are all included. Maybe thats the bug. I'll try using more sources. -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: PODS... which sections are full?

2005-01-12 Thread Evan Ovadia (Verdagon)
Why isn't this working? PODS isn't telling me which sections are full! No matter what arrangement i put the functions in, there's always that signed word overflow error! -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: PODS... which sections are full?

2005-01-12 Thread Evan Ovadia (Verdagon)
I tried finding a command line but the only thing that sounded close was 'Run' under the 'Run' menu and that doesn't do anything helpful. Where is the command line? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: PODS... which sections are full?

2005-01-11 Thread Evan Ovadia (Verdagon)
I can't seem to find these .o files... can you point me in the right direction? All I can find is the file called multiple_code_sections.o -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: PODS... which sections are full?

2005-01-11 Thread Evan Ovadia (Verdagon)
Okay I tried rebuilding and looking at the Debug folder because I couldn't find anything there. But this time, a file called AppMain.o appeared just for a second and disappeared. I managed to get its size before it disappeared, it was 0kb. What do i do? It seems that the filesize is unreliable

PODS... which sections are full?

2005-01-10 Thread Evan Ovadia (Verdagon)
Hey everyone. I'm trying to build my project and I'm getting the usual error where my 64k records in the code are full. You know, the error signed word overflow. Usually I fix this error by moving them around into different sections. But now I'm up to 4 or 5 sections, and some are full and

Re: RGBColorType doesn't like me?

2004-12-23 Thread Evan Ovadia (Verdagon)
So... I've come up with a sort-of solution. Can I make a pointer to the MyColorType, and typecast it to a RGBColorType* and pass that to a function? Seems like it would work to me. -- For information on using the Palm Developer Forums, or to unsubscribe, please see

RGBColorType doesn't like me?

2004-12-20 Thread Evan Ovadia (Verdagon)
Hey everyone! I'm having trouble with the RGBColorType structure. Here is the section of code that is giving me the problem: struct TileType { bool Walkable; char Icon; RGBColorType Color; }; When I comment out the RGBColorType Color; line my application works fine. When

WinPushDrawState

2004-11-07 Thread Evan Ovadia (Verdagon)
Hey, I have a question about the WinPushDrawState and WinPopDrawState functions. When I call WinPushDrawState and WinPopDrawState, I know that it's copying the current drawstate into a global somewhere. Then I pop it again, and everything's fine. But what would happen if I called them in this

re: Multiple code resources

2004-11-04 Thread Evan Ovadia (Verdagon)
Are you using PODS? If you are, I can tell you how to do it. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Signed .word overflow; switch may be too large

2004-10-17 Thread Evan Ovadia (Verdagon)
What do you mean by move my code into different sections? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Signed .word overflow; switch may be too large

2004-10-17 Thread Evan Ovadia (Verdagon)
This isn't working right... I think I'm missing something. I went to that link you gave me, and it had two solutions... one without globals, and one with. I use the solution with globals, and it told me to include a .def file that had this line in it: multiple code { code1 code2 } but it

Re: Signed .word overflow; switch may be too large

2004-10-17 Thread Evan Ovadia (Verdagon)
So my application is too large? It's only ~30 kb... are you saying that PODS cant make apps larger than 32kb? what a ripoff! -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: vector multiply

2004-10-16 Thread Evan Ovadia (Verdagon)
So how do you do vectors in Palm OS 5...? I tried typing in #include vector vectorint MyNewShinyVector; but PODS gave mr a syntax errorr on the word vector... -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: vector multiply

2004-10-16 Thread Evan Ovadia (Verdagon)
Thanks ben you're a lifesaver. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Signed .word overflow; switch may be too large

2004-10-16 Thread Evan Ovadia (Verdagon)
Signed .word overflow; switch may be too large; 33496 at 0xc6[/cygdrive/c/DOCUME~1/EVANOV~1/LOCALS~1/Temp/ccR59OsE.s] Atharia-009 line 3643 I got 20 of these errors, so I got rid of ALL of my switch statements and it's still there. I googled it but didn't get anything that was related to PODS.

Re: Images with PODS

2004-10-09 Thread Evan Ovadia (Verdagon)
This is what I have so far: MemHandle bmphandle = DmGetResource(((UInt32)'T'24)|((UInt32)'B'16)|((UInt32)'M'8)|(UInt32)('P'),1000); MemPtr *bmpptr; bmpptr = MemHandleLock( bmphandle ); WinDrawBitmap( (BitmapType *)bmpptr, 50, 50 ); I got that DmGetResource line from the zodiacgamer forums...

Images with PODS

2004-10-08 Thread Evan Ovadia (Verdagon)
Hey! I've worked for months on trying to get an image to display. It's a simple 12x12 256-color bitmap. I can import it into a folder in my project, but I can't display it. I tried displaying it using WinPaintBitmap, but i can't put the bitmap into a BitmapType. Can someone give me the url to