RE: Virtual Phone...does it exist ?/ yes !

2001-07-16 Thread juergen . schwister
This may be brain fade but, in sdk 4 I have the virtual phone manual and it talks of a windows/macintosh app but I can find no reference to it other than in the manual. Does this virtual thing exist, if so where can it be found? I got it with the sdk40-tools.zip file (W!ndw0$ Plattform). The

problem with emulator

2001-07-16 Thread elena
Hi, My application work in Palm device without problem, but in Emulator in all Rom I get message: Palm Os Emulator UiAppShell (unknown version) called SysFatalStartup.c line 96, Error launching application. I checked the line file SysFatalStartup.c /* * Call the standard system code for

Stack Overflow problem

2001-07-16 Thread manish jaggi
My application is a segmenyed one and the segment size is under 68K it is just 47k My application was executing perfectly with the emulator. But suddenly somehow it sarted giving errors like Stack Overflow and as a result the debugger was skipping some lines of code . Can anyone help me out or

problem with emulator

2001-07-16 Thread elena
Hi, My application work in Palm device without problem, but in Emulator in all Rom I get message: "Palm Os Emulator UiAppShell (unknown version) called SysFatalStartup.c line 96, Error launching application." I checked the line file SysFatalStartup.c /* * Call the standard system code

Re: WinGlueDrawTruncChars() of SDK3.5's PalmOSGlue on Visor

2001-07-16 Thread IKEDA Shigeru
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve Mann [EMAIL PROTECTED] writes: | I modified my program, but I still got a white rectangle. | | Here's some code that should work on all OS versions. [...] Thanks for the code. I'll try it if WinGlueDrawTruncChars() can't be used. BTW

StrPrintF for the PalmOS .. ?

2001-07-16 Thread Essell
hi guys .. i've tried something like this it doesn't work on the palm .. StrPrintF(testMe[x],%02x,testString[y]) .. %02x seems to be the same as %x with this function .. but i really need %02x .. can someone please tell me how this is done .. or if it cannot be done .. any other way i could

glib with prc-tools 2.0.92

2001-07-16 Thread Chalain Marc
i found some example of glib with old version of prc-tools. I saw that the def files take new entries to describe the export functions and other information. Some body know how to use exactly the def file for glib? i'm looking for a Makefile and a def file examples. I'm looking for the entry

Re: Modem creating problems!! Urgent

2001-07-16 Thread Patrick Vuichard
Vini Bhatnagar [EMAIL PROTECTED] wrote in message news:56497@palm-dev-forum... Could somebody please help me with Modem Dialing. I want to dial in to my Server and want to specify my Phone number, prefixes etc. I am able to do this if from the Network Prefrences Panel. But I want to achieve

FldSetText Question

2001-07-16 Thread George R
I'm trying to use FldSetText to set a handle to a field. My handle is actually a pointer to a record in my database. I want to set portions of the handle that correspond to database fields to different form fields. Thus I don't want to use FldSetTextHandle. While FldSetText is supposed to allow

Re: FldSetText Question

2001-07-16 Thread Scott Brooks
I just use another variable and fill it with the text I want. Here, I grap a value I call pCount: UInt16 YOUR_TEXT_LENGTH = 9, YOUR_OFFSET = 4; recHandle = DmGetRecord(testDB, CurrentItem); recText = MemHandleLock(recHandle); pCountHandle = MemHandleNew(YOUR_TEXT_LENGTH);

Re: StrPrintF for the PalmOS .. ?

2001-07-16 Thread Dave Lippincott
Read about StrPrintF (StrVPrintF) in the manual, especially the part about which modifiers it does support. (and please note that the '0' fill modifier is not listed) I don't have an alternate solution off the top of my head, but it might be easier to add your 0's after you have converted you

FloatMgr

2001-07-16 Thread Sara Revell
Hi, Does anyone have experience comparing two floats? I need to know which is the best way to compare floats? I have tried both the ways below, getting different results: float testLength, smallestLength; a) if (testLength smallestLength) b) if (_f_flt(testLength, smallestLength) == 1)

Re: SysTicksPerSecond ()

2001-07-16 Thread Dave Lippincott
I believe the value is hardcoded in the ROM (or was at one point). If you're worried about it taking up CPU cycles, run your app through the profiler and see how much time it takes. - Original Message - From: Bradly J. Barton [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED]

Re: Installation Problems

2001-07-16 Thread Dave Lippincott
It's kind of irrating that InstallShield don't have built in support within their Express version for installing Palm OS conduits. They don't have conduit support in any of their versions. If you use the full version, you still need to call the InstallAid DLL routines from your script.

modifications to TCP/IP stack

2001-07-16 Thread RamaKrishna Nuthi
Hi! All: First of all, I am kind of new to palm OS environment (but not new to programming). We need to make changes to TCP/IP stack and was wondering if anybody out there can give me some pointers as to where do I start. Thanks --RamaKrishna -- For information on using the Palm Developer

Re: CW7.1 Unused variables

2001-07-16 Thread Lee Martineau
grep is your friend here (or use the IDE Search/Find in files option). George Aslanis wrote: Ok, I should have known this was going to happen, so let's try again: Besides the OBVIOUS function level option, is there an option for detecting unused GLOBAL variables? Jim Schram [EMAIL

Simulating Network Disconnects

2001-07-16 Thread Clark Dorman
I am working on a client/server application and would like to simulate network disconnects. How can I do that with the POSE? I am, right now, having to go through the server code and do things to it to close the socket and other nasty things (sleeps to cause timeouts, etc.), but I would

Re: CPP ISO

2001-07-16 Thread Thomas Maeder
RedStar wrote: Where i can find documentation or (better) examples on CPP for CodeWarrior? Standart packet doesn't have it - only C. I know. The docs and examples that come with CodeWarrior (including the SDK) are very, very poor. -- For information on using the Palm Developer Forums, or

RE: FldSetText Question

2001-07-16 Thread Robert McKenzie
Scott's method works fine. However, let me try to clear up some basic matters about FldSetTextHandle vs. FldSetText. A field deals with its contents without regard to how it got them. That is to say, if you call FldSetTextHandle, it will get the size of handle and use that to call FldSetText

RE: Dynamic PopUp Lists Problem

2001-07-16 Thread Scott Johnson (Bellevue)
From: manish jaggi [mailto:[EMAIL PROTECTED]] I am trying to fill the contents of the list at runtime. If i do this the list no longer pops up when i click the popup trigger. If you added a ctlSelect event handler to fill the list, make sure to return false from the handler. If you return

Re: WinGlueDrawTruncChars() of SDK3.5's PalmOSGlue on Visor

2001-07-16 Thread Steve Mann
Thanks for the code. But this code can handle text which contains multibyte characters, e.g. Japanese characters? No, and it probably won't work for all the ROM-based fonts either. Consider it a starting point, not a complete solution. Regards, Steve Mann -- Creative Digital Publishing Inc.

Re: List Draw Problem

2001-07-16 Thread Chang . Elizabeth
I commented out line #2 and the error message went away. I tested the application and the Up and Down arrows were showing when the list was longer than the display area. It looks like the Constructor sets the default to Has Scrollbar in list controls. Thanks for pointing out. But how would

MemPtrResize problems

2001-07-16 Thread Jeremy Nuss
Hello all, I have a problem of sorts. It seems that if I call MemPtrResize on the same variable more than once I get a fatal error. Anyone else had this problem? (POSE says that I have written directly to memory manager. Heres the code I use: pseudo code (global variable) char** string;

Re: List Draw Problem

2001-07-16 Thread Steve Mann
Thanks for pointing out. But how would you do it if you have to change the structure? Well, with OS 4.0, you can change a form object's structure, but it's not recommended. POSE complains about it to warn you, but if you're not running under POSE it will work. Under OS 5.0, it won't work.

Re: MemPtrResize problems

2001-07-16 Thread Steve Mann
MemPtrResize(string, sizeof(char *) * CurrentNumberofStrings + sizeof(char *)); string[CurrentNumberofStrings] = (char *)MemPtrNew(StrLen(ptr) + 1); // Check the values of CurrentNumberofStrings and the resize value (sizeof(char *) * CurrentNumberofStrings + sizeof(char *)) before calling

What is the 'sane' size of preferences?

2001-07-16 Thread Igor Mozolevsky
What is the maximum recommended size of preferences for an application? Anyone? IM -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Palm customer base

2001-07-16 Thread palm
This is sort of a marketing question that I'm posing here because of its technical implications, potential importance to many of us, and no obvious other list to use. I'm trying to make some decisions about what to support. What I'd like to know, as either absolute numbers or percentage

Re: MemPtrResize problems

2001-07-16 Thread Jim Schram
At 12:51 PM -0500 2001/07/16, Jeremy Nuss wrote: MemPtrResize(string, sizeof(char *) * CurrentNumberofStrings + sizeof(char *)); string[CurrentNumberofStrings] = (char *)MemPtrNew(StrLen(ptr) + 1); // line that POSE indicates problem CurrentNumberofStrings++; /code Now, that works the *first*

Re: List Draw Problem

2001-07-16 Thread Chang . Elizabeth
Thanks again. The default list attributes work for me. -Elizabeth Steve Mann [EMAIL PROTECTED]

Re: MemPtrResize problems

2001-07-16 Thread Igor Mozolevsky
--On 16 July 2001 12:51 -0500 Jeremy Nuss [EMAIL PROTECTED] wrote: Hello all, I have a problem of sorts. It seems that if I call MemPtrResize on the same variable more than once I get a fatal error. Anyone else had this problem? (POSE says that I have written directly to memory manager.

Re: What is the 'sane' size of preferences?

2001-07-16 Thread Aaron Ardiri
What is the maximum recommended size of preferences for an application? the default.. around 4096 bytes. // az [EMAIL PROTECTED] http://www.ardiri.com/--- free games! -- For information on using the Palm Developer Forums, or to unsubscribe, please see

RE: MemPtrResize problems

2001-07-16 Thread Jeremy Nuss
Hmm thanks everyone, I am indeed getting an error after the first resize.. my error is memErrChunkLocked. I'll try to figure out why I'm getting that on the second resize but not the first... but in the meantime if anyone has a clue pass it on to me, thanks all. -- For information on using

problem with LateWakeupNotification

2001-07-16 Thread Thomas Werner
Using the LateWakeupNotification (via programmstart) in my project i have found the folowing: 1. I get a LateWakeupNotification at midnight (why? datechange?). But the palm do not wake up (LateWakeup-Docu: after this notification the palm will be on same time ...), i get problems with my

Re: SysTicksPerSecond ()

2001-07-16 Thread Jim Schram
At 7:22 AM -0400 2001/07/15, Paul Nevai wrote: I know that currently SysTicksPerSecond () == 60 on POSE and 100 otherwise. My question is, if there are any plans to have any Palms where it is NOT 100. Any predictions? The value returned by SysTicksPerSecond() changes according to the version of

Ultralite and SPT1700 Barcode reader problems...

2001-07-16 Thread Juan Pablo Reyna A.
Hi there, I'm new to this forum, as I finally decided that I can not figure out the solutions by myself. Hopefully any of you could give me a hand or tell me who should I contact in order to get some enlightment. We are developing using: +++ STP1700 with Palm OS v.3.2. +++ MetroWerks

Configuring POSE for m505

2001-07-16 Thread Young S. Cho
Okay, I got the latest POSE files (POSE 3.2, Skins 1.7 and OS 4 ROMS) from the Palm site. I'm trying to configure for the m505, but keep only getting the IIIc as the Skin option. I was using the PalmOS40-efigs-color.rom as the ROM file. I know that individual ROM files only allow certain skins

RE: Configuring POSE for m505

2001-07-16 Thread Scott Johnson (Bellevue)
From: Young S. Cho [mailto:[EMAIL PROTECTED]] I'm trying to configure for the m505, but keep only getting the IIIc as the Skin option. I was using the PalmOS40-efigs-color.rom as the ROM file. [...] Am I using the correct ROM file for the m505? No, -color in the ROM name means IIIc

Compile Link Warnings

2001-07-16 Thread Scott Brooks
Does anyone know how to get rid of these? Warning: C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\condmgre.h This header has moved from CondMgre.h to CondMgr.h, please update your source. Warning: C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\instappd.h This header has moved from

In desparate need of m5xx serial sync cables...

2001-07-16 Thread Chris DiPierro
I'm at the point where I need a few of the 5xx serial sync cables to sell as part of a hardware product we're producing. Unfortunately we can't find any available anywhere. Has anyone been able to locate some? Pricing is really not an issue at this point. -- For information on using the Palm

Getting started

2001-07-16 Thread Todd Cary
I am a newbie to programming the Palm. The Palm OS Bible is on it's way and it has been a l-o-n-g time since I did any C work (Object Pascal is my language). Outside of CodeWarrior, are there any other C environments that do not require such a up-front investment? Is there a source for a

RE: Getting started

2001-07-16 Thread Scott Johnson (Bellevue)
From: Todd Cary [mailto:[EMAIL PROTECTED]] Outside of CodeWarrior, are there any other C environments that do not require such a up-front investment? Yes. See http://www.palmos.com/dev/. Read everything. -slj- -- For information on using the Palm Developer Forums, or to unsubscribe,

Re: SysTicksPerSecond ()

2001-07-16 Thread Steve Sabram
Good question. Frankly, if you are planning to do any timer based code, keep using that API. I do it just to keep my POSE and pqa runs in sync with each other. Steve From: Paul Nevai [EMAIL PROTECTED] Reply-To: Palm Developer Forum [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL

RE: What is the 'sane' size of preferences?

2001-07-16 Thread Danny Epstein
What is the maximum recommended size of preferences for an application? For unsaved prefs, I don't think there's any problem with large records. You should be able to go right up to just under 64K. There are occasions when the unsaved preference database gets backed up, but I don't think

Re: MemPtrResize problems

2001-07-16 Thread Dave Lippincott
Place breaks in your project on each line where you lock and unlock this chunk. Make sure the unlock is being called as many times as the lock. - Original Message - From: Jeremy Nuss [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Monday, July 16, 2001 2:32 PM

RE: StrPrintF for the PalmOS .. ?

2001-07-16 Thread Peter Epstein
Converting an integer between 0 and 255 to a 2 digit hex number is probably easier to do from scratch than using StrPrintF followed by adding the 0's at the beginning. Just use / 16 and % 16 to get the digits. Then map the digit value to a character by indexing into a constant string

Re: Ultralite and SPT1700 Barcode reader problems...

2001-07-16 Thread Dave Lippincott
I'd try posting your barcode questions to the Symbol developers forum and your conduit questions to the Conduit developers forum. Although you still might get an answer here. - Original Message - From: Juan Pablo Reyna A. [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Cc:

Philosophy - Dialogs VS Forms

2001-07-16 Thread Gary Gorsline
In developing a UI, philosophies always are a consideration. Lets say your program has a data entry screen, a menu for preference settings and some do it buttons. The data entry form would allow the event loop to process events so that the OS handles all field input, popups, scroll bars, etc

Re: In desparate need of m5xx serial sync cables...

2001-07-16 Thread Dave Lippincott
Nope, I've been trying to order some since the M500 was released. I don't think they've been released yet. If you do find some, would you be so kind as to let me know who had them in stock (after you order yours of course). - Original Message - From: Chris DiPierro [EMAIL PROTECTED]

Re: StrPrintF for the PalmOS .. ?

2001-07-16 Thread Steve Sabram
It is not called sprintf since not all the format tags are supported. To do what you want, this is what I suggest. void us2hexstr(char *pHex, unsigned short i) { char buffer[16]; StrPrintF(buffer, %x, i); unsigned short len = StrLen(buffer); if(len == 1) { StrPrintF(pHex, 0x0%s,

Gremlin crashes saying Field.c, Line:121, Invalid word wrapping info

2001-07-16 Thread Sangwon Lee
Hello, while running gremlins under Palm OS 3.0 debug Rom (Emulator version 3.1), it crashed when it was writing something on the text field, saying Field.c, Line:121, Invalid word wrapping info. what can possibly cause this problem? could it be due to a mistake in scrollbar implementation?

Re: WinGlueDrawTruncChars() of SDK3.5's PalmOSGlue on Visor

2001-07-16 Thread Ken Krugler
I use WinDrawTruncChars() to draw texts at fields of table. However on Visor (PalmOS3.1) the ellipsis character is drawn like a white rectangle instead of I searched the forum archive and found that using WinGlueDrawTruncChars() should fix the problem. I modified my program, but I still

Re: WinGlueDrawTruncChars() of SDK3.5's PalmOSGlue on Visor

2001-07-16 Thread Ken Krugler
At 12:00am -0700 01-07-16, Palm Developer Forum digest wrote: Subject: Re: WinGlueDrawTruncChars() of SDK3.5's PalmOSGlue on Visor From: Steve Mann [EMAIL PROTECTED] Date: Sun, 15 Jul 2001 20:01:30 -0700 X-Message-Number: 21 I modified my program, but I still got a white rectangle. Here's

Re: MemPtrResize problems

2001-07-16 Thread Stephan Veigl
Place breaks in your project on each line where you lock and unlock this chunk. Make sure the unlock is being called as many times as the lock. I had some similar problem and didn't understand it. Ok, there was an memErrChunkLocked error - but why does it occur? 1) there was no memLock in

Re: MemPtrResize problems

2001-07-16 Thread Igor Mozolevsky
--On 16 July 2001 21:47 +0200 Stephan Veigl [EMAIL PROTECTED] wrote: Place breaks in your project on each line where you lock and unlock this chunk. Make sure the unlock is being called as many times as the lock. I had some similar problem and didn't understand it. Ok, there was an

Re: Getting started

2001-07-16 Thread Todd Cary
Scott - When I try to go to the Cygwin download page, I get an error. Has something changed? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

RE: Philosophy - Dialogs VS Forms

2001-07-16 Thread Peter Epstein
Since the event handler you specify for a dialog when using FrmDoDialog gets first crack at all events, you really can do pretty much anything you want in the way of event handling. I'd say go ahead and use FrmDoDialog for your preferences. For the actions that require a long time, communicating

Re: What is the 'sane' size of preferences?

2001-07-16 Thread Aaron Ardiri
What is the maximum recommended size of preferences for an application? the default.. around 4096 bytes. hmm.. brain not plugged into today.. read preferences as stack :) // az [EMAIL PROTECTED] http://www.ardiri.com/--- free games! -- For information on using the Palm Developer

RE: MemPtrResize problems

2001-07-16 Thread Scott Johnson (Bellevue)
From: Jeremy Nuss [mailto:[EMAIL PROTECTED]] my error is memErrChunkLocked. Well, as documented, MemPtrResize always succeeds when shrinking the chunk but will successfully expand it only if there happens to be enough free space right after the chunk in the heap; otherwise it fails. Is this

missing user events (EvtAddEventToQueue/EvtGetEvent)

2001-07-16 Thread Adrian Pfisterer
Hello all... In my application I use the system event queue to pass messages around. I'm noticing that if I have a FrmCustomAlert up when a user event comes in I never seem to see it. If I comment out the FrmCustomAlert I do get it. I don't know what other situations might arise where this

RE: missing user events (EvtAddEventToQueue/EvtGetEvent)

2001-07-16 Thread Peter Epstein
FrmCustomAlert has it's own event loop. That means it calls EvtGetEvent. It sounds like your event is being fetched from the event queue by this event loop, so your app event loop never sees it. - Peter Epstein -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Downloading Cygwin

2001-07-16 Thread Todd Cary
When I cleick on the Download Cygwin link on the Palm developer's page, I get an error from the Palm server. What am I missing? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Portability/Compatability issues vis a vis versions 3.5...

2001-07-16 Thread Scott Herman
Is there any documentation concerning backward compatability issues when developing for a wide variety of OS versions, some of which may be older than 3.5. I am developing for a population of users, many of whom have older devices, and for various reasons do not want to upgrade. TIA Scott

RE: Gremlin crashes saying Field.c, Line:121, Invalid word wrapp ing info

2001-07-16 Thread Kevin O'Keefe
I had this happen once with a one line edit field that we had marked as a multiline edit field in constructor Kevin -Original Message- From: Sangwon Lee [mailto:[EMAIL PROTECTED]] Sent: Monday, July 16, 2001 12:31 PM To: Palm Developer Forum Subject: Gremlin crashes saying Field.c,

Turn palm off code!

2001-07-16 Thread DrumBSF
Ok, some people told me to search for this in some forums and I went everywhere they said. For those of you that are about to ask, yes I have read the documentation serveral times.The only reason I am even writing thi9s email is that about amonth ago someone asked the same

Re: WinGlueDrawTruncChars() of SDK3.5's PalmOSGlue on Visor

2001-07-16 Thread IKEDA Shigeru
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ken Krugler [EMAIL PROTECTED] writes: | WinGlueDrawTruncChars() of SDK3.5's PalmOSGlue library contain the | fix for this problem? | | You need to be using the glue code from the 4.0 SDK. See forum | archives for a past discussion on this topic. I

Re: Turn palm off code!

2001-07-16 Thread John Stephenson
Dear Mr. BSF If you search for the word "sleep" (no quotes) at this site: http://www.escribe.com/computing/pcpqa/index.html and read through the articles, you will find all the answers.spikeFrom: [EMAIL PROTECTED] Reply-To: "Palm Developer Forum" <[EMAIL PROTECTED]>To: "Palm Developer Forum"

RE: Portability/Compatability issues vis a vis versions 3.5...

2001-07-16 Thread Richard Burmeister
From: Scott Herman Is there any documentation concerning backward compatability issues when developing for a wide variety of OS versions, some of which may be older than 3.5. See the Compatibility Guide section of the Palm OS R Programmer's API Reference. -- For information on using the

Bitmap Families

2001-07-16 Thread DrumBSF
I am trying to put some color pictures in my program and understand that I have to put them in a bitmap family in the constructor. How do I do that though, all it lets me do when I create a bitmap family is change the height and width. Please help me! Thanks!

Need your input for research

2001-07-16 Thread Orkut Buyukkokten
Hi All, I am doing research on efficient email access on PDAs. I need some statistics for a paper I am writing right now. I would greatly appreciate if you could answer the following brief questions. You can send your answers directly to me at: [EMAIL PROTECTED] 1. How do you enter text on your

RE: Turn palm off code!

2001-07-16 Thread Richard Burmeister
From: [EMAIL PROTECTED] Ok, some people told me to search for this in some ... Just go to the Knowledge Base and search for power off. If that's too complicated for you, go to http://oasis.palm.com/dev/kb/faq/1067.cfm and use the code posted there to post a lockChr or vchrPowerOff to turn

Re: Bitmap Families

2001-07-16 Thread John Stephenson
Dear Mr. BSFIf you search for thephrase "bitmap families" (no quotes) at this site:http://www.escribe.com/computing/pcpqa/index.htmland read through the articles, you will find all the answers.spikeFrom: [EMAIL PROTECTED] Reply-To: "Palm Developer Forum" <[EMAIL PROTECTED]>To: "Palm Developer

Re: Turn palm off code!

2001-07-16 Thread Jim Schram
At 6:52 PM -0400 7/16/01, [EMAIL PROTECTED] wrote: Ok, some people told me to search for this in some forums and I went everywhere they said. For those of you that are about to ask, yes I have read the documentation serveral times.The only reason I am even writing thi9s email is that about

LstSetSelection problem

2001-07-16 Thread Danny Swarzman
When I call LstSetSelection, POSE crashes. If I try to step through with the debugger, the debugger doesn't advance. Using CW 7 on Mac with PalmOS 3.5. Anyone else have this problem? -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Downloading Cygwin

2001-07-16 Thread Todd Cary
To be more exact, on the Palm page titled, Installing PRC-Tools with CygWin and I click on the link, Cygwin b 20.1, I get the error page titled, Error, with the explanation, Page is not available. Am I missing something? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- For

Re: Downloading Cygwin

2001-07-16 Thread Igor Mozolevsky
--On 16 July 2001 17:53 -0700 Todd Cary [EMAIL PROTECTED] wrote: To be more exact, on the Palm page titled, Installing PRC-Tools with CygWin and I click on the link, Cygwin b 20.1, I get the error page titled, Error, with the explanation, Page is not available. Am I missing something?

Re: missing user events (EvtAddEventToQueue/EvtGetEvent)

2001-07-16 Thread Adrian Pfisterer
Isn't this a problem? I would expect if I add an event to the app event queue I would be guaranteed to see it again. Sounds like what you're saying is that this isn't the case. What else has its own event loop and calls EvtGetEvent? Adrian. Peter Epstein wrote: FrmCustomAlert has it's

Popup trigger behavior difference in OS 3.1 and OS 3.5

2001-07-16 Thread C Srinivas
Hi : I have coded a popup trigger associated with a list control in a form. The list is drawn using a callback. The popup behaves as expected in 0S 3.5 . However, in OS 3.1, the entire list is shown expanded and transparent and the other form controls are not hidden. Am I missing something

Field question..

2001-07-16 Thread Joe Siebenmann
Hi Everybody, I have a large field ( with scrollbar ) and would like to be able to get a command text, and then add the result text, and so on, keeping everything so you can scroll back to see things. I've tried all the usual combinations of FldGetTextHandle(), FldSetTextHandle() etc. without

RE: Downloading Cygwin

2001-07-16 Thread Richard Burmeister
From: Todd Cary To be more exact, on the Palm page titled, Installing PRC-Tools with CygWin and I click on the link, Cygwin b 20.1, I get the error page titled, Error, with the explanation, Page is not available. As Aaron Ardiri reported on July 10, you can get this at

clock performance

2001-07-16 Thread Jeff Keating
Has anyone experience using SysSetPerformance()? I am looking for source examples and any documentation. Thanks. jeff _ Get your FREE download of MSN Explorer at http://explorer.msn.com -- For information on using the Palm

Re: LstSetSelection problem

2001-07-16 Thread Ben Combee
Danny Swarzman [EMAIL PROTECTED] wrote in message news:56824@palm-dev-forum... When I call LstSetSelection, POSE crashes. If I try to step through with the debugger, the debugger doesn't advance. Using CW 7 on Mac with PalmOS 3.5. Anyone else have this problem? Try updating to CodeWarrior

Re: missing user events (EvtAddEventToQueue/EvtGetEvent)

2001-07-16 Thread Ben Combee
Adrian Pfisterer [EMAIL PROTECTED] wrote in message news:56831@palm-dev-forum... Isn't this a problem? I would expect if I add an event to the app event queue I would be guaranteed to see it again. Sounds like what you're saying is that this isn't the case. What else has its own event

Free functions

2001-07-16 Thread Anuradha J
hi, My problem is with regard to freeing a dynamically created control object. For instance, I create a button or a checkbox by calling CtlNewControl() and pass required parameters. I use this control in the form and later like to just free this control from memory. Is there any function to

Error launching application

2001-07-16 Thread elena
Hi,all My application work in Palm device without problem, but in Emulator in all Roms I get message: "Palm Os Emulator UiAppShell (unknown version) called SysFatalStartup.c line 96, Error launching application." I checked the line file SysFatalStartup.c /* * Call the standard system code

Help Please

2001-07-16 Thread Vinayak Ponkshe
Hi All, I have developed one application. I am using Palm os3.5 and code warrior 6. I am able to download my application on Palm III . I have visor also. But I am not able to run my application on Visor. It get crash. I think it might be bcoz of os conflict bcoz visor has palm os 3.0. So

Re: MemPtrResize problems

2001-07-16 Thread Alexander Zuev
Scott right. You have two way to avoid this: 1) use ligament MemPtrResize - MemPtrNew, if first function fail, use second (example you may see in NetSocket.c included into CodeWarrior SDK) 2) use functions MemHandleNew, MemHandleResize. Then when changing a size of memory 'memory manager' will

RE: Downloading Cygwin

2001-07-16 Thread Aaron Ardiri
As Aaron Ardiri reported on July 10, you can get this at http://www.palmos.com/dev/tech/tools/gcc/dist/cygwin-b20.1-full.exe. I thought that someone at Palm would have fixed that link by now... while Palm is at it.. change the pilrc link to this:

ATTN: PGHQ - important notice for developers

2001-07-16 Thread Aaron Ardiri
hi i am sure Kenny would email everyone when he wakes up - but, heck. it is 1am there (and, he is in bed - so, i'll take the liberty of doing this) at around midnight CDT it apparently seems that yahoo stores have ripped the domain: www2.viaweb.com this means, the following url is no