re: Serious problems with SysZLib on Tungsten T

2005-05-11 Thread Matthew Henry
For what it's worth, we are using the ARM port of syszlib in our commercial application, and I have not heard of any issues with it on the T. I don't happen to be using the macros though, I am opening it "by hand" Err error; Boolean loaded = false; /* First try to find the library. */

re: How do you get HsNavGetFocusColor () on the T5?

2005-02-01 Thread Matthew Henry
Nevermind, figured it out. PmUIUtilLibOpen (refNum); PmUIUtilNavGetFocusColor (refNum, color, rgbColorP); PmUIUtilLibClose (refNum); Works on the T5 and Treo 650. Use HsNavGetFocusColor() for the 600. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://ww

How do you get HsNavGetFocusColor () on the T5?

2005-02-01 Thread Matthew Henry
I have a number of gadgets in my app, so I have to handle a lot of the 5-way navigation by hand. I have been using HsNavGetFocusColor (hsNavFocusColorSecondaryHighlight, &rgbColor); to get the secondary highlight. This allows me to draw my selected item with the pale blue highlight that all

re: too many called functions - how to get more ?

2004-12-16 Thread Matthew Henry
So, if I'm understanding you correctly, your program is crashing periodically and you think that is because your call stack is too deep? That seems awfully unlikely. Are you running out of stack space? Do you have some kind of infinite recursion going on? What is the maximum depth of your ca

re: Multisegment Problem in Codewarrior

2004-12-03 Thread Matthew Henry
This might not be terribly helpful, but I can assure you that having more than 2 segments should work. I had an app that was over 10 segments on CodeWarrior 8.3, and I had no problems other than handling no-global launch codes. Make sure everything you need for launch codes other than appLaunc

Re: Has anyone gotten the PalmSource Installer OTA demo to work?

2004-11-23 Thread Matthew Henry
>When I tested WebPro 3.5, it worked fine with this URL syntax; I don't know if >this is a change from 3.0.1c or not. It could be a demo limitation as well. I just found my original T3 installation disc and installed the Web Pro Browser that came with the T3, which was version 3.0. It still doe

Has anyone gotten the PalmSource Installer OTA demo to work?

2004-11-22 Thread Matthew Henry
I am trying to get the PalmSource Installer OTA demo to work. http://www.palmsource.com/installer/demo/ So Got my T3 connected to my Windows machine via bluetooth. I can surf the web and such, everything is great. Then I go to here: www.palmsource.com/installer/demo/ota Ok so far. I click on "O

Re: Treo 600 5 way navigator -- default button doesn't get focus ring

2004-11-09 Thread Matthew Henry
Thanks Ben, I overrode DoModal() in my parent ModalForm class so that the frmOpenEvent is posted before the form is initialized - that worked even better. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

re: Know of any Real Life POL apps?

2004-11-08 Thread Matthew Henry
eWallet 4.0 was written using POL. http://www.iliumsoft.com/site/mprods/products.htm -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Treo 600 5 way navigator -- default button doesn't get focus ring

2004-11-05 Thread Matthew Henry
Sorry, I should explain, my FixFnavFocus() method should be called at the end of OnOpen(). -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Treo 600 5 way navigator -- default button doesn't get focus ring

2004-11-05 Thread Matthew Henry
I believe I found an even slicker solution to this problem. Basically, POL::CModalForm is doing something so that the default focus ring is never set. I can't for the life of me figure out what POL::CModalForm is doing wrong, but this appears to work around it. void CMyModalForm::FixFnavFocus(

UIPickColor pops up the DIA on the T3

2004-06-16 Thread Matthew Henry
On the T3, UIPickColor() (Displays a dialog that allows the user to choose a color) pops up the Dynamic Input Area. Is there any way to stop this, short of writing my own color pick dialog? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.c

Re: Multiple FrmSetEventHandlers for a single form

2004-03-19 Thread Matthew Henry
Padmini Paladugu wrote: Hi Friends: I am developing a game application.(Card Trading Game) I have deck of 30 cards in my database. When I first launched the application my form has one List Interface,Draw Button,Play Button, and Beam Button. ListInterface has initial seven cards from the database

Re: jpegArmlet help

2004-03-19 Thread Matthew Henry
Todd Walk wrote: I'm trying to get jpegArmlets to work, but I need some help. (I know zilch about armlets.) First, I'm trying to modify testArmlet2 (I need only the decoder) to work. Will that work? Do I need anything else besides the stuff in jpegToys? I installed the starter.prc, ARMlet.pdb

Re: Sorry, I didn¡¯t explain it clearly.

2004-03-19 Thread Matthew Henry
wj wrote: I¡¯m going to develop my application on Palm OS4, so the application can be run not only on Palm OS4 but also on OS5 without any additional changes. But, because of some considerations, I want to let bitmaps displayed in low density in case of Palm OS5. Is it possible? If poss

Re: Close to overflowing stack

2004-03-16 Thread Matthew Henry
Wojtek wrote: Hi. May problem is: App works fine tested on Simulators and Emulator with 3.5 ROMS. On Emulator with 4.x roms I get "App is close to overflowing stack..." or "..ovewrflowed stack" It happens for example when I enter TODO and tap Details button which shows dialog "Select task" becaus

Re: Working With many files in Palm

2004-03-16 Thread Matthew Henry
[ a | x ] - Peter Alex wrote: Hello, I develop applicaton running on Palm OS 5. This application may search and tile (about 9 files tiling) from secondary storage. 1. Is there any idea how should achieve this? I need help since i can see nothing when i view my SDCard with my T3 (even i have man

Re: what is the color theme (prefColorThemeID) doing internally?

2004-03-16 Thread Matthew Henry
You don't need to write an app. There are already a number of applications that let you adjust the default system colors, including the freeware Colorize: http://www.freewarepalm.com/graphics/colorize.shtml Looking at the assembly code for Colorize in PRCExplorer, it looks like he's just

what is the color theme (prefColorThemeID) doing internally?

2004-03-15 Thread Matthew Henry
A little background: I was using a T3 as my regular Palm and I switched to a TG-50. When I used the T3 I used the "Blue" color theme. When I synced my user ID to the TG-50, I got all my apps and data, as well as the "Blue" color theme. Now the interesting thing is, the TG-50 doesn't have an op

Re: more than 16 color with jpeglib?

2004-03-13 Thread Matthew Henry
DongDong wrote: I'm studying and testing the JPEG library from http://www.nyctergatis.com/jpeglib/ I can successfully display a jpeg file in VFS but just 16 colors, instead of 256 or 65536 colors originally in the file. I've tried studying its source and have no idea. Anybody has used this library

Re: scrollbar e table

2004-03-12 Thread Matthew Henry
Roberto Pedrozo Mendes wrote: Hi How i can to link a scrollbar and table ? Thanks FWIW, that'd be pretty nonstandard. Tables always have up/down buttons, for any app I've ever seen. POL has support for linking a scrollbar to its CGrid class; that's easy to do. But rows in a CGrid can't have va

Re: jpeg armlet library question

2004-03-12 Thread Matthew Henry
At 07:03 AM 3/12/2004 -0800, you wrote: hi matt, thank you for trying this, but i actually need the decompressing one (and TestArmletC is the compressing one, right?). i have been struggling with TestArmlet2. can you check the size of ARM0001.bin in that project for me and see if you can get it t

Re: Working with GIF File Palm OS

2004-03-11 Thread Matthew Henry
[ a | x ] - Peter Alex wrote: I am new to PalmOS and currently working application which deals with many GIF Files. I am having problem on how to store/read those files under PalmOS environment. 1. how should i treat them under PalmOS environment? I found that PalmOS treated files in different mann

Re: jpeg armlet library question

2004-03-11 Thread Matthew Henry
Patti Wells wrote: however, I'm still unable to test its performance on the actual device because of the build warning regarding the resource (I'm assuming this is the armlet) being too big. in digging through the archives I've found information about building the pno so that it has a .sbin inste

Re: Cobalt APIs

2004-03-10 Thread Matthew Henry
Ben Combee wrote: At 08:42 AM 3/10/2004, you wrote: Is there a list of the OS 6 APIs like there is at: http://www.palmos.com/dev/support/docs/palmos/ReferenceTOC.html for the OS 5 APIs? Right now, I'm specifically interested in APIs for displaying .jpg files. Is this capability not present in OS

Re: Getting the Simulator to always stay on

2004-03-10 Thread Matthew Henry
Muriph, Michael wrote: I did this once awhile back. But I have been digging for 30 mins. Is there a line to add to the palmsim.ini??? try insomnia http://www.fps.com/DisplayProduct.asp?itemID=32&item=Insomnia -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: is Bitmap compression restricted to certain PalmOS versions?

2004-03-09 Thread Matthew Henry
they're backwards compatible for older OS's. Or does using bitmap compression limit your app to only those OS versions and later? yep. FWIW and IIRC, we had problems with early Handspring devices and bitmap compression, so we don't use any type of OS bitmap compression in any of our apps. Of co

Re: Display bitmap image from an offline database

2004-03-08 Thread Matthew Henry
b) any recommended jpeg decode library which I could use if I want to store jpeg on my offline database? Here's a JPEG armlet (PNOLet if you insist). http://www.dp.mcw.edu/palmImaging/jpegArmlets.zip Doesn't help with your other, more basic questions. Did you try the Palm OS bible? or possibly

Re: Creating a setup for the application

2004-03-05 Thread Matthew Henry
[EMAIL PROTECTED] wrote: I am currencly using HB++ to make my application for Palm. I have a lot of table files, and images which i need to install on the target device to run my application. Can any one please tell me any tool (free would be better) in which i could make my exe. So you just want a

Assembly on the Palm

2004-03-04 Thread Matthew Henry
So my last major Palm issue I figured out by looking at the disassembly code that CodeWarrior generated. It was a tad tricky as I haven't done any assembly since I was a teenager on the 6502. Does anyone have any recommendations for good books on the subject? My background is, I am a long time

Re: How to access bits data of a bitmap larger than 64K?

2004-03-04 Thread Matthew Henry
I say "seems to" because I'm having trouble getting the packing of RGB bits in the 16-bit word right. Does anyone know exactly what it is? I'm using CW 9.3 on a Zire 71. I've been blissfully ignorant of ARM/68K endian issues so far but I suspect it may be coming into play here. UInt16 sixteenBit

Re: CodeWarrior 9.3: can't new [] or delete [] without globals

2004-03-03 Thread Matthew Henry
Ben Combee wrote: At 01:00 PM 3/3/2004, you wrote: I can't do a new wchar_t[80] in a no-globals launch code in one of my source files. The problem only occurs in release builds, not debug. ... This is indicating that the code that implements the array new operator is in a source file that's i

Re: Creating a C++ object to reference List Functions

2004-03-03 Thread Matthew Henry
Use a static method or a global function. Store your this pointer in a global variable. Then you can get at your class object from the callback function using the global variable. Dan Cadwell wrote: Is there a workaround? Or how can I make this routine work? Can you send me to an example or l

CodeWarrior 9.3: can't new [] or delete [] without globals

2004-03-03 Thread Matthew Henry
I can't do a new wchar_t[80] in a no-globals launch code in one of my source files. The problem only occurs in release builds, not debug. But if I do a wchar_t* foo = new wchar_t[1]; delete []foo; in my application start (which is in a different source file), then I can. This is the code that fa

Problem with SysNotifyRegister and DmSetDatabaseInfo on the T3

2004-03-01 Thread Matthew Henry
I am seeing a very strange problem with SysNotifyRegister and DmSetDatabaseInfo on the T3. I am using the collapse utilities, and the simplest case in which it occurs is this... I have my applications "data" database. Call it "foo". I rename it. Then I create a new database called "Foo", chan

Re: Warnings after updating a CW 9.3 install to the Palm 5.0 SDK R3

2004-03-01 Thread Matthew Henry
Muriph, Michael wrote: I followed Ben's manual instructions and I receive the following after doing the manual copies and trying to MAKE the buildall.mcp project. I get those warnings too. They don't seem to be important. -- For information on using the Palm Developer Forums, or to unsubscri

Re: Sony Clie Error Message

2004-02-26 Thread Matthew Henry
Robert Scott wrote: I developed my first PalmOS application on a Tungsten T2. It uses Mathlib and streaming sound and PNOs to do some CPU-intensive ... Should a Clie be able to run my application? It has PalmOS 5.0. I Most OS 5 Clies don't support streaming sound, IIRC. -- For information on us

Re: How to tell if your Palm was just turned on

2004-01-28 Thread Matthew Henry
Robert Moynihan wrote: Matthew, are you sure about this: "if you start the Palm using any of the other hardware buttons, it doesn't send either sysNotifyLateWakeupEvent or sysNotifyEarlyWakeupEvent". I use those notifications to resond to ANY hardware button press that wake up the device, and I ha

How to tell if your Palm was just turned on

2004-01-27 Thread Matthew Henry
I am writing an app that is run when the Clie's REC button is pressed. The Clie's REC button behaves just like one of the standard 4 hardware buttons. For the purposes of this question, I'll just call it a Palm. One piece of functionality I'd like to add is to have the Rec button toggle the p

Re: PDB form VIsual Basic

2004-01-13 Thread Matthew Henry
> Can anyone tell me if it is possible to create a *.pdb file from within > Visual Basic. Libraries to create PDB files: http://flippinbits.com/twiki/bin/view/Main/DevelopmentToolsList -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/d

Re: Distributing a PRC with several shared library as a single PRC?

2004-01-12 Thread Matthew Henry
> >I would like to distribute a Palm application, which consists of a main > >PRC and several other shared libraries (in PRC format). > > > >Is there any way to combine the several PRCs into a single PRC for user to > >install? After the user has installed the PRC, I suppose it should be > >expande

Re: networking

2004-01-12 Thread Matthew Henry
"RAHUL CHOUBE" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > hi, > > can i get some information on how does a palm > simulator interact on the internet with other simulator??? > Settings->Communication->Redirect Netlib calls to Host TCP/IP Then just program using standard sock

Re: Fatal Exception: Could it be a bad Memory Management ?

2004-01-09 Thread Matthew Henry
> I still couldn't resolve the reason for my fatal exception. > Debugging my application, I see that the fatal exception occurs after the > PilotMain() has returned. The debugger only shows assembler code after the > PilotMain() has returned. The assembler code looks like this (see below). Assumin

Re: Navigator button on Tungsten T2

2004-01-09 Thread Matthew Henry
"Marianne" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi > > I am using a Tungsten T2 device, I just wanted to know which event is fired > when you press the right and left of the navigation button. See PalmNavigator.h. If you don't have it you need the latest SDK from from Palm

Re: OS 5 Simulator, FrmCustomAlert(), "text can't end with blank line" error

2004-01-07 Thread Matthew Henry
"Brian Preston" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > The Palm OS Reference (which I did read before posting > this, btw) that I've been using says that is only > required for OS 2.0 and below. I was testing 5.0, so I > didn't think I needed to do that. > > However, that sol

Re: Fatal Exception: Could it be a bad Memory Management ?

2004-01-07 Thread Matthew Henry
"Marcel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Since the exception only occurs if I have called another specific function > of my application before, I guess that the reason for the exception might be > a memory leak in this other function. Question: Can memory leaks or a ba

Re: [Fwd: usb ?]

2004-01-07 Thread Matthew Henry
> all I want is connectiong the palm with the PC. Can I use socket through the cradle ? > Haven't tried any fancy-schmancy communication myself between the Palm and Desktop. But there is a version of VNC for the Palm with source code. Presumably that will give you TCP/IP communication ideas. http

Re: CW 9.2/Palm OS 68K Linker crashes

2004-01-07 Thread Matthew Henry
"Alan Ingleby" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > FWIW, I use CW9.2 a LOT, and never get crashes. > I use it all day, every day, on a fairly complicated project with many object files and segments and I'd say it crashes at most a couple of times a week. Usually while de

Re: vchrRockerUp is 0x000B or 0x0132 ?

2004-01-06 Thread Matthew Henry
Treo 5-way is different from the PalmOne 5-way. Of course. Doing that same thing differently on every single device is part of The Zen of Palm (tm). I do this to be safe #define IS_TREO_5WAY_UP(x) (x->eType == keyDownEvent && (x->data.keyDown.chr == vchrRockerUp || x->data.keyDown.chr == vchr

Re: CW 9.2 Include paths for statements like #include a nd

2004-01-06 Thread Matthew Henry
"Muriph, Michael " <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > >Where can I find the paths that CW 9.2 searches for the above types of > includes? > Edit-> Settings-> Target -> Access Paths ->System Paths -- For information on using the Palm Developer Forums, or to unsub

Re: CW not debugging

2004-01-02 Thread Matthew Henry
"Sebastian Cancinos" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Maybe it happened to you some time. My CW (9.2) ,debugging with > the Emulator, when it finds an error, stops, shows the error message > and when I press 'Debug' the codewarrior doesn't respond. The error Hasn't hap

Re: Batch Build in CW 9.2

2004-01-02 Thread Matthew Henry
"Laszlo Kesmarki" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > Is there any way I can make (rebuild all) a Codewarrior project? > I do not want to change any project settings, but there are resource > files I generate from external tools and I want to compile the project >

Re: Moving from M125 to Tungsten T3 - Copy function

2004-01-02 Thread Matthew Henry
"keith cameron" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Using the copy function from the drop down menu with delete, beam etc & > copy on the T3 shows only applications to be available for copying to > and from the memory card. The M125 copy function also shows data bases > a

Re: how am I not using WinSetForeColor right?

2003-12-30 Thread Matthew Henry
"Brian Preston" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm trying to make my application a bit more > color-friendly by simply changing my controls > (buttons, labels, lists, etc) to blue instead of the ... > > I'm trying to use WinSetForeColor(), so I guess the > first quest

Re: Sony Clie Silk Screen Feature, Landscape mode

2003-12-30 Thread Matthew Henry
"Igor Stasyak" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi! > When i trying to enable Resize (using VskSetState(..., vskStateEnable, 1), > as it is described in Programmers Companion for Sony Clie) - Portrait > simulator works Ok, but Landscape returns error. Please help! Can't

Re: database pdb

2003-12-30 Thread Matthew Henry
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > i have written a library that create pdb on a windows os and > have rewritten most of palmos db and record functions. > > I ask myself if there is another way to accomplish the same task. If I understand your question, and I pro

Re: release version

2003-12-29 Thread Matthew Henry
"Pablo Martin Vera" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >When I change the target to release version in codewarrior I´ve got a lot of >warnings, one of these repetitive warnings is that the constructor and >destructor of my classes are not inline ¿Why? ¿Should I make the in

Re: release version

2003-12-29 Thread Matthew Henry
"Pablo Martin Vera" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] When I change the target to release version in codewarrior I´ve got a lot of warnings, one of these repetitive warnings is that the constructor and destructor of my classes are not inline ¿Why? ¿Should I make the inline

Re: Problem Freeing table's content (memory leaks)

2003-12-29 Thread Matthew Henry
I can only state the obvious, which is you ain't doin' something right. ;-) In my LoadData() callback for example, I have a single buffer I keep around and I fill that with the text I'm going to display. Every time my LoadData() is called I resize that buffer if necessary and load the text for th

Re: TxtGlueTruncateString

2003-12-29 Thread Matthew Henry
"Edward P. Ross" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am using TxtGlueTruncateString. Everything is OK as long as the > string I pass into it is less than the MaxWidth. If the string is > longer than the MaxWidth, I get an error that says: > > "...application just wrote

Re: Bizarre Things happening..

2003-12-29 Thread Matthew Henry
Sounds like you are stomping on memory all right. Did you try MemSetDebugMode (UInt16 flags) with one of the heavy duty settings? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: YASP (yet another segmentation problem)

2003-12-29 Thread Matthew Henry
> I assume that you need to do real work on some non-normal app launch > segment, like find? I meant of course "I assume that you need to do real work on some non-sysAppLaunchCmdNormalLaunch launch code, like sysAppLaunchCmdFind " Someday I'll learn to proofread before hitting send. -- For in

Re: YASP (yet another segmentation problem)

2003-12-29 Thread Matthew Henry
> I followed almost every tip included in the POL FAQ to reduce the > size of files in segment 1, but after all "optimization" im still > unable to include the "POLD1.lib" in segment 1 , which seems to be > one of the reasons for this > > Is there any alternate way to resolve this if im not abl

Re: BmpGlueSetTransparentValue oddness on Tungsten T3

2003-12-29 Thread Matthew Henry
It is my considered opinion that BmpSetTransparentValue(), and related functions, are crap. Use BmpRsrcSetTransparentValue() in the bitmap example project which you can d/l from Palm. "Trevor Powell" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Quick starting information: I'm d

Re: app icon

2003-12-23 Thread Matthew Henry
"Pablo Martin Vera" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How do I change my app icon using Pilrc designer with codewarrior?? > Look at your resource directory and edit the .bmps with your favorite image editor? -- For information on using the Palm Developer Forums, or

Re: Segmenting by function with CW?

2003-12-23 Thread Matthew Henry
"David Beers" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Thanks again, Matt. I had the same problem with trying to use #pragma > Segment 1 (space between "Segment" and "1") so that the name would match the > default name that CW supplies. But using #pragma Segment1 (without the

Re: about demohack

2003-12-23 Thread Matthew Henry
"Armada.li" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Merry Christmas to all! > I compile the demohack project using "demohack debug".After generate .prc > program,I install it into treo180g(os4.1) and sony TJ25(os5.2).I find it run > well on treo180g,but can't run above os5.I h

Re: Segmenting by function with CW?

2003-12-23 Thread Matthew Henry
"David Beers" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > A quick follow-up question here. Segmenting using #pragma segment is > working fine except for one important thing: how to control the order of the > segments. Specifically, how do you make sure that the functions you nee

Re: crappy T3 simulator

2003-12-23 Thread Matthew Henry
"palmDev" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > once installed my app everytime i reinstall my app the > T3 sim would just lock up. this happens on other apps > too. anyone know why? I have to kill it and restart it again and > it's becoming very annoying. > FWIW, happe

ensuring .rcp file is compiled first in CodeWarrior.

2003-12-22 Thread Matthew Henry
How do I ensure my .rcp file is compiled first in CodeWarrior 9.2? Because it doesn't always seem to. I suppose I want to set up a dependency that says the output of my .rcp file generates this header file, and all my other files require this header file. But not sure how to do that in CW. My oth

Re: Strategy for Enabling for T3

2003-12-19 Thread Matthew Henry
"Phil Hartley" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Matthew > > Thanks again for your reply. OK, so my question is, how did you resize the > forms? I can't see API to do this. Can you attach a small snippet, please? > Something like this // OS 3.5 Clie's crash on WinG

Re: Strategy for Enabling for T3

2003-12-19 Thread Matthew Henry
"Phil Hartley" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Matthew > > Thanks for your reply. The T3 resolution is 320 x 480 maximum. The forms I > use are double density so that translates to 160 x 240. I had to make the > forms 240 in width otherwise when the screen goes into

Re: Memory filling tool

2003-12-19 Thread Matthew Henry
"Eric Potter" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Is there a tool out there somewhere that fills all of the memory, so > that there is no free memory left? I need something like this for my > testing. > http://www.quantumclockwork.net/memoryhog/ -- For information on

Re: Strategy for Enabling for T3

2003-12-19 Thread Matthew Henry
Hmm. Why did you set the form sizes to 240x240? The T3 is 320x320. or 320x480 (I think). Is this a foreign funky resolution T3? I have all my forms 160x160, and they resize when necessary dynamically. >PrgStartDialog Write your own progress dialog? > modal forms I haven't run into any proble

Re: table static text problem

2003-12-17 Thread Matthew Henry
> constructive or helpful. On the other hand if you have an example of > placing one item into a text field and changing the attributes for that item > that would be helpful. > * Read the Palm OS Bible. * If doing it by hand is giving you too much trouble and you have access to POL (Object Librar

Re: illegal implict conversion from char * to const unsigned char * errors

2003-12-16 Thread Matthew Henry
"Monika Kauntz" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Help. I get an illegal implict conversion from char * to const unsigned > char* error on the following > on each entry: > step a. get rid of the "unsigned" step b. buy a book on C -- For information on using the Palm

anyone have a list of the Form IDs of the system forms?

2003-12-16 Thread Matthew Henry
Like Find, the On-screen Keyboard, etc. Did some searching in the headers and didn't come up with anything. (Just want to know everything that's going on when looking at the report generated by gremlins.) -- For information on using the Palm Developer Forums, or to unsubscribe, please see htt

Re: 5way SDK problem

2003-12-16 Thread Matthew Henry
> It seems that some stuffs from PalmChars.h (FiveWaySDK version) > are already defined in tapwave SDK (TwKeys.h) > and in PalmChars.h from Palm SG SDK > > So what file am i supposed to include in order to use correctly > 5way navigator ? > I haven't been using the tapwave headers and my stuff wor

Re: abour ARM native

2003-12-16 Thread Matthew Henry
> Can I develop a software based on ARM processor directly? not yet. (maybe) in Palm OS 6 -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Unloadable records in Simulator; wrong category?

2003-12-16 Thread Matthew Henry
I ran into something about this a few weeks ago. I think the simulator strips off the deleted records when you drag a .pdb on there. It's not a problem (unless you happen to want to test your app with that DB with deleted records). IIRC. -- For information on using the Palm Developer Forums,

Re: codewarrior problem

2003-12-16 Thread Matthew Henry
And you are including common.h? Either in your header file or every .cpp file that includes your header file. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: codwarrior 9 error/problem

2003-12-16 Thread Matthew Henry
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Whenever I try to run or debug my (old) application in Codewarrior I get > the following error: > > Failed to download the Palm OS database. The database may have been > protected with DmDatabaseProtect()." > I have done the following t

Re: Precompiled headers

2003-12-15 Thread Matthew Henry
> a precompiled header; however, I do not know if it is possible for me to do this under Palm development or how I would go about it and I'd appreciate some guidance from someone in the know. > I'd also like to say that apart for the strange bickering and sometimes rather condescending replies fou

Re: Many memory leaks help!

2003-12-15 Thread Matthew Henry
> and I declare a number of class A objects in the heap > and put them as global static variables. > > The problem is I can't delete class A objects even > when I do it at the end of the program eventhough I are you calling delete [] myC; in your destructors? note the []. -- For information o

Re: Palm Resource Editors..

2003-12-12 Thread Matthew Henry
> Serious answer #2: CW IDE editor > > More powerful than notepad, with syntax highlighting to let you know when > you spelled the PilRC keywords correctly. :) Ah, no wrap-around though. Barring the fact you can't see the whole string if it's long, it's also almost impossible to edit really long s

Re: Palm Resource Editors..

2003-12-12 Thread Matthew Henry
>Anybody know any good, stand-alone, Palm Resource editors? >( NOT part of an IDE ) Joke answer: microsoft notepad Serious answer: microsoft notepad. I always hand edit my .rcp files. Very rarely, if I feel the need to tweak a form and want a graphical view, I cut and paste just that form into P

Re: PalmSim error in KERNAL32.DLL

2003-12-12 Thread Matthew Henry
dunno why its not shutting down cleanly but you dont need to reboot to restore things to normal check your processes (ctl-alt-del, then processes tab). Kill any PalmsSim.exe tasks that are running. And get used to doing that, you'll be doing it a lot. ;-) -- For information on using the Palm

Re: Size of 68k app

2003-12-12 Thread Matthew Henry
"Deepak TVS" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, > I am writing a application which using a PNO. The size of the PNO is < > 64 K but the application together with the PNO consumes 70K. Can I run a 70K > application on Palm Devices. My application crashes when I

Re: Segmenting by function with CW?

2003-12-12 Thread Matthew Henry
> ...then every subsequent function will fall into SEGMENT1 until I insert > another #pragma segment? And can I invoke #pragma segment SEGMENT1 again in > another part of the file to add some other functions to the same segment? > I.e: SEGMENT1... SEGMENT2... SEGMENT1... SEGMENT3... etc.? > If y

Re: 5-way navigator on the simulator

2003-12-12 Thread Matthew Henry
Using Tungsten T Simulator Five Way Navigation was introduced with TUngsten T. The Simulator has been updated to allow developers to test their applications with the Five Way. The Five Way Navigator is map to the following keys: [Alt] + [Ctl] = Select [Alt] + [Left Arrow] = Left [Alt] + [Right A

Re: AddrressBD

2003-12-12 Thread Matthew Henry
> Palm gives you the code for the sample applications, including the desktop. > Take a look at that, or an open source program such as "Happy Days" (google > for it) for examples on how to read the address book db. I really should proofread before I hit "send". That response made no sense. I me

Re: AddrressBD

2003-12-12 Thread Matthew Henry
"Francisco García Tormo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > How can I get a name if I know the telephone of a person who is saved in > addresses application? > Palm gives you the code for the sample applications, including the desktop. Take a look at that, or an open s

Re: Segmenting by function with CW?

2003-12-11 Thread Matthew Henry
> it might wreak havoc when performing a merge with CVS. So I'm wondering: is > it possible to do segmenting with CW on a function-by-function basis similar > to the way it's done in GCC? Not familiar with GCC, but presumably CodeWarrior's #pragma segment is what u want. -- For information on

Re: event handler can't be called!

2003-12-11 Thread Matthew Henry
usually stack overflow happens when you get in an infinite recursion.But it's possible you are just using too darned much stack space, so it works sometimes and doesn't other times. Did you check if your are near the limit of the stack? -- For information on using the Palm Developer Forum

Re: CodeWarrior: #define for debug build?

2003-12-11 Thread Matthew Henry
or just #define DEBUG in the prefix file for your debug build. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

How to load POL symbols in CodeWarrior

2003-12-10 Thread Matthew Henry
I would like to get the POL symbols in my project, so that I can right click on, say, CForm and choose "Go To Class Declaration" and it'll jump me to that declaration. Ben posted something on this a week or two ago, but I've searched up and down the archives and can't find it. Escribe's search ca

Re: images

2003-12-09 Thread Matthew Henry
"Pablo Martin Vera" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I need some example code to create a pdb with images to show In my app. I want to create the pdb in window and then show the images on the palm. Any ideas or examples?? Your question is awfully vague. If you are inte

Re: exceptions in Palmos5

2003-12-08 Thread Matthew Henry
"Yona Dolev" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I transferred me Palmos4 app. to PalmOs5, Some of the exceptions work but > most of them crash - especially during connectivity. > Can anyone help? > Assuming I understand your question... Are you using the debug si

Re: Debugging "despite" CW 8.3 optimizations

2003-12-05 Thread Matthew Henry
>Whose assumptions? The compiler's or mine? I personnaly don't care where they're keypt. But can the CW debugger display the contents of variables if they get stored in registers? Would this be the reason of nonsense variables contents in the monitor window? Seems to me I've prevented variables fr

Re: Skins for OS 5 Simulator?

2003-12-05 Thread Matthew Henry
"Luc Le Blanc" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > With POSE, you could either take a POSE screen capture (and get the Palm > screen contents) or take a Windows screen capture (and get the picture > of a Palm running your application). Now, with Simulator, the window is >

  1   2   3   >