Controls and the drawnAsSelected property.

2003-08-14 Thread Matthew Darkstorm Bevan
Hello! I'm attempting to create generic VFS Open and Save dialogs, however, I wish to put a dropdown list in the title of the form. If you've ever used a Macintosh (pre OS-X days), you may remember the spiffy ability to quickly navigate up the directory tree by option-clicking the title in the

Re: Soft Reset Application Launch

2003-08-14 Thread rguevara
write 'Het1' with the simple quotes -- Open WebMail Project (http://openwebmail.org) -- Original Message --- From: [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Wed, 6 Aug 2003 09:57:16 -0700 Subject: Re: Soft Reset Application Launch hi, with regards to

Re: (Newbie) Howto send and receive files??

2003-08-14 Thread Ricardo Marques
thx a lot hope this will do the trick -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Reference numbers in shared libraries

2003-08-14 Thread LionScribe
When creating a shared library, is it possible for an internal library function to determine the current libraries reference number? Sometimes I can't pass the refNum as a parameter, like in Application-defined functions. LionScribe -- For information on using the Palm Developer Forums, or to

RE: TblSetCustomDrawProcedure() - illegal implicit conversion

2003-08-14 Thread Jeff Ishaq
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben Combee Sent: Tuesday, August 12, 2003 12:39 PM To: Palm Developer Forum Subject: RE: TblSetCustomDrawProcedure() - illegal implicit conversion At 02:25 PM 8/12/2003, Scott Johnson wrote:

Low Memory - (Newbie Ques)

2003-08-14 Thread nmailey
Okay, this a bit of a dorky question. I asked at a C Forum, and this was the suggestion. I'm hoping this is a Palm Dev Forum related issue: I'm simply trying to add and Int32 element from one structure to the other but I keep getting: Application just read from memory location 0x14,

RE: new and delete in Palm

2003-08-14 Thread Mayank Babu Rastogi, Noida
Hi Chris, Thanks. Palm OS 5 API reference document doesn't talk about new and delete. Is there any additional library which provides these functions ? regards, Mayank -Original Message- From: Chris Apers [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 3:57 PM To: Palm

Re: ErrThrow

2003-08-14 Thread gamepower111
It looks like you're using the non-exception version of POL with C++ exception handling. The non-exception version uses Palm OS's ErrThrow/ErrTry system, while the C++ exception version uses real C++ exceptions. yes, I am using POL CNetLibClientStream class to implement the socket

Re: Bitmap offscreen window larger than 64KB?

2003-08-14 Thread José dos Santos Machado
Carsten escreveu: This is NOT good. MemSemphore issues aren't even mentioned in the official Palm-OS sdk. (when I remember right...) Sony should care more about the things they publish, reading that article sounds like MemSemaphore - used every day, don't care about the consequences ... H...

Re: lists (how to change scrollbar look feel)

2003-08-14 Thread Prashant Jha
Toshiro, You can use the ScrollBar control from the Constructor if you are using Code Warrior. This gives you the regular scroll bar that you see in Browsers and other desktop applications. But to make the scrolling happen, whether you want page scrolling or line scrolling, you will need to write

Re: Please Help LstSetListChoices not working

2003-08-14 Thread Steve K
Got her all working. I had a strange pointer problem elsewhere that was causing a lot or problems throughout my program. I think it was the way I was getting lstP. Thanks for all your help. finalized function: static Boolean PopulateList(ListType* lstP, char** listString, UInt16 size) {

Re: Fw: Re: How know the name fields of PDB file

2003-08-14 Thread David Martin
AppForge has a dll for reading/writing their PDBs on the desktop. code looks the same as it is on the handheld, so you could write an extraction program with Visual Basic to work with the files fairly quickly. not that I advocate using AppForge, but the tools are all there. David M ---

Re: ErrThrow

2003-08-14 Thread gamepower111
I have fixed the problem, I made stupid mistakes! Thanks Ben! -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

FrmNewLabel

2003-08-14 Thread gamepower111
Hi everyone, I used the following codes to create a label dynamicly, but why the lable didnt appear on the form? FormType *frmP = FrmGetActiveForm(); char* labelCaption = hello; FrmNewLabel (frmP, 1500,labelCaption , 30,30, stdFont) ; thanks. fan -- For information on using the

Re: Bitmap offscreen window larger than 64KB?

2003-08-14 Thread Khaki Wizard
Are you using FtrPtrNew to allocate storage memory to store the image data? I'm wondering whether it is efficient enough for fast rendering, if I have frequent update to the bitmap. So what is better? 1. Use BmpCreate to allocate a bitmap 64Kb for double buffer. I think performance is nice,

Re: Non-relocatable chunk leaked

2003-08-14 Thread Viren
From the size of the log file, it looks the leaks come from the link-list. The log file contains the following sentence: Non-relocatable chunk leaked at 0x0003C460, size = 24 Looks like you allocated the memory by MemPtrNew() [ or new if C++ ] and then forgot to de-allocate it. Would you

Re: using versamail and the exchange manager

2003-08-14 Thread Richard George
Gosh I feel really dumb ... after all these years hacking code I hadn't realised that the mailto schema could take a load of arguements, D'UH! So, for the benefit of anyone who is searching these archives in years to come - check out RFC 2368 (www.faqs.org/rfcs/rfc2368.html). Manohar

RE: Palm Emulator

2003-08-14 Thread Keith Rollin
From: Steve K [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 4:45 PM To: Palm Developer Forum Subject: Palm Emulator Newbie Question. Why is it that some things run on the palm just fine, however, cause errors on the Palm emulator? Is the emulator more strict on what you

Non-relocatable chunk leaked

2003-08-14 Thread gamepower111
Hi all, I have created a link-list during running, and I have implemented a desconstractor for it. When I exit the palm os application, memory leak occurs. From the size of the log file, it looks the leaks come from the link-list. The log file contains the following sentence: Non-relocatable

Re: newbie table question

2003-08-14 Thread Ralf Krauss
Have You set the load-data callback procedure for the specified column? For Example have You set TblSetLoadDataProcedure for textTableItem or TblSetCustomDrawProcedure for customTableItem? Tables are a little bit tricky, please give use more Info's... Ralf Christian Lindemeier [EMAIL

Bitmap offscreen window larger than 64KB?

2003-08-14 Thread Khaki Wizard
Hi, all: Is it possible to use BmpCreate() to create a bitmap larger than 64KB, say 640x480 8bpp, and use it to build an offscreen window for double-buffer paint purpose? Or I have to draw such large dynamic BMP with WinDrawPixel() directly on the screen? Thanks,

Re: Bitmap offscreen window larger than 64KB?

2003-08-14 Thread Aaron Ardiri
http://www.cliedeveloper.com/spotlight/kinoma1.html IMHO it's a good tutorial on working with semaphores and blocks larger than 64k... This is NOT good. MemSemphore issues aren't even mentioned in the official Palm-OS sdk. (when I remember right...) yes, you do remember right. it

64K limit in Palm ( was Re: new and delete in Palm )

2003-08-14 Thread drvirens
Thanks Ben! Didn't see that post and posted the question which you already had answered. Thanks Dave too for your reply. -Viren -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: OS5.2: has SysNotifyBroadcastFromInterrupt WakeupHandler been fixed ?

2003-08-14 Thread Steve Mason
Brad, thanx for the answer. Got a followup question... My question is: Does anyone know if the SysNotifyBroadcastFromInterrupt() is supported in OS 5.2? It is not supported in any 5.x release. Also can someone confirm that the interrupt-driven wakeup handler is fully functional in

Newbie question about textTableItem

2003-08-14 Thread Christian Lindemeier
Hello I'm trying to write text into a table i created, but nothing seems to work. The column is a textTableItem and all commands I try don't want to work with me. Please help. Thanks in advance. __ Die sicherste Form der

memory leak

2003-08-14 Thread gamepower111
Hi everybody, In the FormHandleEvent function, i used the following codes, when the form can be closed correctly and return to the main form of the project. but if i exit the application, memory leak occured. If I delete the frmCloseEvent codes in this form, it works well. Who can tell me the

Re: Low Memory - (Newbie Ques)

2003-08-14 Thread Ben Combee
Well, although completely illegal it works. Why would CodeWarrior allow me to perform such a haneous action if it was that bad. It doesn't work. CodeWarrior is allowing the code because you explicitly used casts to tell the compiler that you knew what you were doing. The original case wasn't

unallocated chunk of memory

2003-08-14 Thread gamepower111
I created a link-list, and the link-list class provides destructor. the destructor is as following: void PlayerList::removeAll() { playerNode *pPlayerListPtr; while (head) { MemPtrFree(head-player); pPlayerListPtr = head-next; MemPtrFree(head); head = pPlayerListPtr; } } When I exit

Example of a Palm application logon form/dialog.

2003-08-14 Thread Fred Zappert
Hi, Could someone point me to an example of a Palm application that contains logon form, preferably with userid and password. Icing on the cake would be hashing of the values of userid and password (preferably contained in a database), and that the example would be in CW. Thanks, Fred. --

Re: Please Help LstSetListChoices not working

2003-08-14 Thread Ben Combee
At 04:31 PM 8/13/2003, Steve K wrote: I am trying to set the choices in a list using LstSetListChoices, and know I am getting very close to getting it to work. I call my function to populate the list and I receive no error and I get no data displayed in my list. Here is the function. static char*

Re: Emulator

2003-08-14 Thread Dave Lasker
See http://www.palmos.com/dev/support/docs/emulator/Emulator_Running.html#972432 Hope that helps... Dave henry [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi everybody, Could any one tell me how to hotsyc in my emulator? what config have to set? -- For information on

Low Memory - (Newbie Ques)

2003-08-14 Thread nmailey
I've got it working with this, but this seems like the scenic route to what I want to do. Or is this as efficient as things get numberInt1 = (UInt32) onOrder.orderQty; numberInt2 = (UInt32) onOrderFound.orderQty; onOrder.orderQty = (UInt32 *)(numberInt1 + numberInt2); Thanks Nole

Re: Bitmap offscreen window larger than 64KB?

2003-08-14 Thread Dave Carrigan
On Wed, Aug 13, 2003 at 02:10:48PM -0700, Khaki Wizard wrote: Nice finding. I also searched the old archives and somebody suggests use BmpCreate to get bitmap memory as malloc, which can be larger than 64KB. All kinds of tricks! If you're going to rely on that kind of unsupported

Re: Low Memory - (Newbie Ques)

2003-08-14 Thread Dave Carrigan
On Wed, Aug 13, 2003 at 07:25:42PM -0500, [EMAIL PROTECTED] wrote: It's also completely illegal. What good is converting an integer into a pointer going to do you? Well, although completely illegal it works. Why would CodeWarrior allow me to perform such a haneous action if it was that bad.

Re: Palm Emulator

2003-08-14 Thread Dave Carrigan
On Wed, Aug 13, 2003 at 05:24:44PM -0700, Steve K wrote: In that case, I'm curious what is wrong with this code that runs fine on the palm handheld but is rejected by the emulator with the following error on line marked with *: Project (1.0) called SysFatalAlert with the message: Field.c,

Re: Question about DmWrite

2003-08-14 Thread Ben Combee
At 07:10 PM 8/12/2003, Brad Figler wrote: Does DmWrite handle overlapping memory? Yes. DmWrite is implemented using MemMove, which correctly handles overlapping regions to avoid copying data that's already been written. -- Ben Combee [EMAIL PROTECTED] CodeWarrior for Palm OS technical lead Palm

Re: Newbie question about textTableItem

2003-08-14 Thread Alan Ingleby
Christian Lindemeier [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I'm trying to write text into a table i created, but nothing seems to work. The column is a textTableItem and all commands I try don't want to work with me. Please help. Your explanation doesn't give much to go on.

Re: Please Help LstSetListChoices not working

2003-08-14 Thread Steve K
Using the debugger and an emulator as opposed to just running it on the palm gives me an error message on the LstSetListChoices call: Inventory (1.0) called SysFatalAlert with the message: Font.c, Line:248, Invalid font. thanks Steve Ben Combee [EMAIL PROTECTED] wrote in message news:[EMAIL

Please Help LstSetListChoices not working

2003-08-14 Thread Steve K
I am trying to set the choices in a list using LstSetListChoices, and know I am getting very close to getting it to work. I call my function to populate the list and I receive no error and I get no data displayed in my list. Here is the function. static char* gPlateString =

Re: Reference numbers in shared libraries

2003-08-14 Thread Alan Ingleby
LionScribe [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] When creating a shared library, is it possible for an internal library function to determine the current libraries reference number? Sometimes I can't pass the refNum as a parameter, like in Application-defined functions.

Re: Cleening Up

2003-08-14 Thread Eugene
Hi, I mean crash :) not crasies :). It does reboot ;) Thanks. Hi, I have small problem. I do programming in CW 9. And when i do hotsynk due to cleening up operationg my palm crasies!!! :) i tried already a lot : If someone knows please do help :) Thanks :) -- For

Re: Graying of controls on disabling

2003-08-14 Thread TVS Deepak
HI Marianne, You cannot gray-out controls in Palm. The option is not provided for performance reasons. Deepak - Original Message - From: Marianne [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 3:18 PM Subject: Graying of controls on

Re: BlueTooth error codes

2003-08-14 Thread TVS Deepak
Jan You will find the error codes for bluetooth in the file BtLibTypes.h The file is present in Metrowerks/CodeWarrior/Palm OS Support/Incs/Extensions/Bluetooth/BtLibTypes.h Deepak - Original Message - From: Jan Slodicka [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent:

Re: C++ virtual functions

2003-08-14 Thread drvirens
Hey Laurens and Brad, However, I want to use pure virtual functions in my classes solely to specify a contract that subclasses must abide to. The introduction of the virtual function is a sufficient condition for the compiler to defer the binding till run-time. It is you - the developer -

Re: Using Internationalization

2003-08-14 Thread drvirens
Hi Marianne, You would get teh documentation for this on palms site as well as with the codewarrior installation. On the palms site, search for overlay manager. -Viren --- In [EMAIL PROTECTED], Marianne [EMAIL PROTECTED] wrote: Hello, Is there any documentation where I can find about

Re: Dynamic lists (how to add items?)

2003-08-14 Thread Prashant Jha
Toshiro, Have you tried calling LstDrawList( ListType *listP ) after dynamically adding the item to the list. Prashant --- Toshiro V [EMAIL PROTECTED] wrote: I have a dynamic list visible in the main form of an application. I want to be able to add items to this list (pressing a button, for

(Newbie) Howto send and receive files??

2003-08-14 Thread Ricardo Marques
Hi. I'm developing an app for BT on a Palm m515. This app will do something like a file transfer and I would like for it to have the ability to allow the user to choose a file to send. For example, the user would go to the menu and press Send File, after which a form would appear asking which file

Re: Fw: Re: How know the name fields of PDB file

2003-08-14 Thread Douglas Handy
Viren, our palm-reader ( in-house developed utility ) was going for a toss sicne it was assuming that what would follow after 78 bytes would be really a record header ( b- bytes)...however, things used to fall apart thanks to AppForge implementations. No, things fell apart because you made

Re: Dynamic lists (how to add items?)

2003-08-14 Thread kcorey
On Wed, 2003-08-13 at 12:32, Toshiro V wrote: I have a dynamic list visible in the main form of an application. I want to be able to add items to this list (pressing a button, for example). I've been trying to do this but failed :( (I tried to use a callback draw function and it displays the

BYTE LIMIT on NetLibSend

2003-08-14 Thread Arijit Das
Palm Dev, I am sending bytes using NetLibSend, does anybody know the limit on how many bytes I can send at any one time ? Regards, -- Arijit Das -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: Unexpected behavior with PopupTriggers after migrating torcp-based resources

2003-08-14 Thread Kevin OKeefe
When migrating, RsrcToRcp didn't move the VISIBLEITEMS part to the RCP file, so my lists were not showing anything. Glad it was simple! K -Original Message- From: Kevin OKeefe Sent: Tuesday, August 12, 2003 10:27 AM To: Palm Developer Forum Subject: Unexpected behavior with

Re: Okay to use DmWrite() on ordinary memory?

2003-08-14 Thread Alan Ingleby
James [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Alan Ingleby wrote: As Aaron already pointed out, the braces are totally unnecessary. Furthermore, the following would generate a syntax error: sarcasm Thanks for all the very accurate, valid and verbose corrections so my code.

Fw: Re: How know the name fields of PDB file

2003-08-14 Thread rguevara
Thanks, i found the dump-db utility, work rigth with PDB files created by the other utility but even crash with the PDB created in the PALM,i think what the error found in the creation of the PDB, when i write some registers the size is: typedef struct { unsigned long norden;

Re: TblSetCustomDrawProcedure() - illegal implicit conversion

2003-08-14 Thread nmailey
The second and third parameter of MainListDrawFunction must be unsigned short instead of short as it currently is in your code! Okay, the fact the MainListDrawFunction being the problem totally makes sense...but like Ben was saying: ...PalmSource changes the type you pass to that routine to

Dynamic lists (how to add items?)

2003-08-14 Thread Toshiro V
I have a dynamic list visible in the main form of an application. I want to be able to add items to this list (pressing a button, for example). I've been trying to do this but failed :( (I tried to use a callback draw function and it displays the list nicely the first time, but the list did not

Re: new and delete in Palm

2003-08-14 Thread Chris Apers
Don't think so, just enable C++ compiler in your project. I use them with no problem. Hi Chris, Thanks. Palm OS 5 API reference document doesn't talk about new and delete. Is there any additional library which provides these functions ? regards, Mayank -- For information on using the

Re: new and delete in Palm

2003-08-14 Thread TVS Deepak
Hi Mayank, MemPtrNew and MemPtrFree can be used for new/delete. Deepak - Original Message - From: Mayank Babu Rastogi, Noida [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 3:49 PM Subject: new and delete in Palm Hi, I'm supposed to port

new and delete in Palm

2003-08-14 Thread Mayank Babu Rastogi, Noida
Hi, I'm supposed to port a C++ application from Windows to Palm. This application heavily uses standard C++ library functions - new and delete for memory allocation/deallocation . As per my understanding, new and delete are not supported in Palm. What could be the best alternative to these

Palm OS SDK for PRC-Tools on Windows

2003-08-14 Thread N
On Palmsource website there is palmos-sdk-5.0-1.zip available for prc-tools but it contains only static libraries. Other file available is palmos-sdk-5.0-1.tar.gz. This Tar archive contains the SDK header files and static libraries for any Unix like system and this is what we need since we are

RE: TblSetCustomDrawProcedure() - illegal implicit conversion

2003-08-14 Thread Scott Johnson
From: Ben Combee [mailto:[EMAIL PROTECTED] C++ doesn't allow the implicit taking of a function pointer from a function bare name. That's what the error is saying. Ben, are you sure about that? My copy of Stroustrup 3rd Ed. (section 7.7) explicitly states the '' is optional, and the compiler

CW Array size limits

2003-08-14 Thread Arijit Das
Palm-DEV, Does anybody know the array size limit for the CW IDE 5.1.1.1117 ? Regards, -- Arijit Das -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: CW Array size limits

2003-08-14 Thread Ben Combee
At 07:14 PM 8/14/2003, Arijit Das wrote: Palm-DEV, Does anybody know the array size limit for the CW IDE 5.1.1.1117 ? That's actually CW for Palm OS 9 or 9.1. If you use an int as the index for an array, it won't exceed 64K due to 16-bit math limits. There are other limits due to the maximum

RE: Reference numbers in shared libraries

2003-08-14 Thread LionScribe
I wonder if you can use SysLibFind()? Also, in a shared library, what does SysCurAppDatabase(0 return, the shared library, or the calling application? LionScribe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Alan Ingleby Sent: Thursday, August 14, 2003

DmQuickSort Question

2003-08-14 Thread Julio Sejtman
The prototype of this function is Err DmQuickSort (DmOpenRef dbP, DmComparF *compar,Int16 other) But now, Any one of you have a list of the meaning of the parameter other I want to know what parameter can I give to the funcion. I know that the parameter Other is to indicate a sort direction. The

Re: Porting Tool(s)

2003-08-14 Thread Aaron Ardiri
Does anyone know if there are any porting tools for PalmOS - PocketPC? I'm not asking for info on a multi-platform development environment (SHARK, Java, Basic etc..) as these typically require rewriting most of your code. alan, if you just want to go to Pocket PC, then, you can do what we

Re: TblSetCustomDrawProcedure() - illegal implicit conversion

2003-08-14 Thread nmailey
That did the trick... thanks gents... *thumbsup* Nole |-+--- | | Ben Combee | | | [EMAIL PROTECTED]| | | Sent by:| | |

Re: Okay to use DmWrite() on ordinary memory?

2003-08-14 Thread Aaron Ardiri
hey, i responsed cause you mentioned me :) not to nit-pick you :) *g* That's OK. I was just having a bad morning. I'm all better now I've got my caffeine fix. *g* - some idiot woke me up at 8:30am.. You do have to admit though, that many of the posts that go into this forum consist

Re: push buttons

2003-08-14 Thread José dos Santos Machado
quote Steve K escreveu: You'll want to make sure that all of your push buttons are within the same group. This will stop your program from highlighting each push button after it is selected. When they are in the same group, when selecting a new push button, the previous one will become un

RE: DmQuickSort Question

2003-08-14 Thread Scott Johnson
From: Julio Sejtman [mailto:[EMAIL PROTECTED] Err DmQuickSort (DmOpenRef dbP, DmComparF *compar,Int16 other) Any one of you have a list of the meaning of the parameter other It's a cookie that gets passed to your comparison callback function. I know that the parameter Other is to indicate a

TblSetCustomDrawProcedure() - illegal implicit conversion

2003-08-14 Thread nmailey
This compiles and runs fine in CodeWarrior Release 5: TblSetCustomDrawProcedure (pTable, Col_SlotCode, MainListDrawFunction); but it says for CW9 that I'm performing an: illegal implicit conversion from 'void (void *, unsigned short, unsigned short, struct RectangleType *)' to

Re: Does anyone notice this bug on Tungsten C?

2003-08-14 Thread Flex
Yep - in the developer area. I've already reported 3 :) by the way my TC have no such bug - hardware issue. Chris Apers [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is there a bug tracker for palmos related bugs ? Hi, I found an interesting bug whilst I am porting our

Re: Okay to use DmWrite() on ordinary memory?

2003-08-14 Thread Aaron Ardiri
Is it just me being paranoid, or do many of the experts on this forum not respond to newbie requests for help, only to wait so they can show their superiority by nitpicking the responses given by others? hey, i responsed cause you mentioned me :) not to nit-pick you :) *g* at least the

RE: TblSetCustomDrawProcedure() - illegal implicit conversion

2003-08-14 Thread Ben Combee
At 02:25 PM 8/12/2003, Scott Johnson wrote: From: Ben Combee [mailto:[EMAIL PROTECTED] C++ doesn't allow the implicit taking of a function pointer from a function bare name. That's what the error is saying. Ben, are you sure about that? My copy of Stroustrup 3rd Ed. (section 7.7) explicitly

Re: Link Error : PalmRez Error:

2003-08-14 Thread Edward P. Ross
I usually like to provide solutions when I find the answer to a question I asked. Here it goes. I turned the PC off last night and when I woke up today I turned it back on. I re-compiled, and it worked. No changes to anything, no tweaks, no nothing. Apparantly the computer just needed to

Re: Palm Zire Compability

2003-08-14 Thread L.M. Fridael
Régis Daniel de Oliveira [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] If i try ti install an aplication developed and tested on palm m130 on palm zire, will i have any problem, like resolution issues (Palm M130 resolution is160X160 pixels. Will my forms appear smaller on palm Zire

Re: Does anyone notice this bug on Tungsten C?

2003-08-14 Thread Chris Apers
Is there a bug tracker for palmos related bugs ? Hi, I found an interesting bug whilst I am porting our application from Sony Clie to Tungsten C: There is no pen down event at screen Y = 310 while the Tungsten C screen size is 320 * 320. The bug also is found on all other applications

Re: Movable vs nonmovable memory chunks

2003-08-14 Thread jeffreyrdiamond
My program contains about 95% of its data as read only data structures. The first thing it does when it starts is to lock down all its records (and hold them) so that it can set up static pointers to all the data. These records are as sequential as the PRC itself, since they are records of

Re: nilEvent problem

2003-08-14 Thread Aaron Ardiri
I have design an timing critical application that having a time bar dropping every 250ms, so I used EvtGetEvent(event, SysTicksPerSecond() / 4) at my EventLoop routine and handled the dropping of time bar at nilEvent, it works fine on PalmOS 3.x and 4.x, but having problem on Zire 71, the

launching IR or Modem HotSync

2003-08-14 Thread matt apt
I know that to start a HotSync I can launch the HotSync app with a launch command of: sysAppLaunchCmdSyncRequestLocal or sysAppLaunchCmdSyncRequest However, is there a way to cause HotSync to launch a modem or IR sync instead? As it is, it seems that I'm only able to get HotSync to launch

Re: Memory Management

2003-08-14 Thread Steve K
Sorry, tabbing, got alittle screwy, and I added an extra } on accident. This is better. static void foo(FormType *frmP) { FrmSetTitle(frmP, Test); Err error; MemHandle recH; char* test; LocalID dbId = DmFindDatabase(cardNo, barDB); gDatabase =

DmWrite/DmGetRecord

2003-08-14 Thread Steve K
Strange things are amuck in the Dm world for me today. I hope this is something simple, but here goes. I am still learning how to use the palm database and so I am making calls to DmWrite and then to DmGetRecord to verify that all data is being accuratly accounted for. After making the DmWrite

Re: USB-Port

2003-08-14 Thread Richard George
This isn't a solution (sorry) - but do you have a serial terminal that can use the USB port? Günther Plag [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello! I have a Handspring Visor Platinum with PalmOS 3.5. I want to use the cradle port (it is an USB-cradle) for

about field on high-res device

2003-08-14 Thread Miken
I use codewarrior7,and develop for palm. I find my program run well on low-res device,but there isn't underline on Field control.If I use field on table control,the problem appear too. please help me,and thanks.

Re: Listbox with checkbox - customized control.

2003-08-14 Thread Brian Smith
On Mon, 11 Aug 2003, Rangababu, TNV (IndSys) wrote: I have a typical requirement from my client. They are looking one customized control, where they will select multiple items by checking in the list. For this requirement, I need to implement one customized control, should have both the

USB-Port

2003-08-14 Thread Günther Plag
Hello! I have a Handspring Visor Platinum with PalmOS 3.5. I want to use the cradle port (it is an USB-cradle) for communication with my hardware. I use the New Serial Manager. If I use the port serPortCradlePort when opening the port with SrmOpen then there will be no problems - but it uses only

RE: DmWrite/DmGetRecord

2003-08-14 Thread LionScribe
StrLen gives you the length without the Null-Terminator, therefore you should always be using StrLen()+1 LionScribe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steve K Sent: Thursday, August 14, 2003 9:21 PM To: Palm Developer Forum Subject:

Re: About Repeating Button

2003-08-14 Thread Prashant Jha
Dhanashri, In the constructor, select Symbol 11 for FONT and you should see the repeating arrow-head symbols for horizontal scrolling or Symbol 11 for up-down scrolling. Hope that helps. Prashant --- Dhanashri K [EMAIL PROTECTED] wrote: Hello , I am trying to use the repeating button through the

putting a CLIE into console mode

2003-08-14 Thread Eric Allen
How exactly do you do it? I have USBPort.dll in the bin folder, I have CodeWarrior 9, I've tried both dotdottwo and actually punching in the shortcut. Nothing worked. Is it even possible to get it to work on a CLIE? -- Eric Allen Webmaster, Student, and Programmer http://svallens.com/epall/

Re: BYTE LIMIT on NetLibSend

2003-08-14 Thread Palm Dev Forum
That would depend on how the socket is opened. Stream will send a bunch of bytes (and on POSE it acts a little differently - do a search on the archives - I think it came up again about a month ago). UDP are limited to 1536 for the buffer size (or an error will occur) and less may be sent in

Re: Any doc. about programming on Zire 71

2003-08-14 Thread Oliver
Do anyone know, is there any document about the API for the built-in camera of Zire 71 ? Use the archive's search function: http://www.escribe.com/computing/pcpqa/search.html?query=Zire+camera HTH, Oliver __ Do you Yahoo!? Yahoo! SiteBuilder - Free,

Re: DmWrite/DmGetRecord

2003-08-14 Thread Steve K
Thanks, woulda stared at that for hours.. :) Wonder where else i've made that mistake... :) Thanks again. Steve K LionScribe [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] StrLen gives you the length without the Null-Terminator, therefore you should always be using StrLen()+1

RE: DmQuickSort Question

2003-08-14 Thread Randall Pulsifer
You use 'foo' any way you want, typically it's a sort direction. Skipping the issue of how concise this code is, for clarity's sake I'll leave your code alone and treat foo as a Boolean which will reverse the sort direction - DmQuickSort(db, (DmComparF *) SortRecords, 0); static

Any doc. about programming on Zire 71

2003-08-14 Thread Eccles Kwong
Do anyone know, is there any document about the API for the built-in camera of Zire 71 ? Thx ! Eccles -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Does anyone notice this bug on Tungsten C?

2003-08-14 Thread Xing Jin
Hi, I found an interesting bug whilst I am porting our application from Sony Clie to Tungsten C: There is no pen down event at screen Y = 310 while the Tungsten C screen size is 320 * 320. The bug also is found on all other applications installed in the device, I assume it should be a problem on

Re: Any doc. about programming on Zire 71

2003-08-14 Thread Eccles Kwong
Thx ! Oliver [EMAIL PROTECTED] ???:[EMAIL PROTECTED] Do anyone know, is there any document about the API for the built-in camera of Zire 71 ? Use the archive's search function: http://www.escribe.com/computing/pcpqa/search.html?query=Zire+camera HTH, Oliver

Fwd: [Garmin iQue SDK Announcement]Garmin iQue SDK available fordownload

2003-08-14 Thread Hal Mueller
Sender: [EMAIL PROTECTED] List-Archive: http://listserv.garmin.com/private.cgi/iquesdk-announce/ Date: Fri, 8 Aug 2003 10:22:05 -0500 Garmin's iQue 3600 SDK is now available. Please visit https://www.garmin.com/DeveloperZone/addDeveloper.jsp to download the SDK file. The iQue 3600 is now shipping.

RE: Recomnd 16-Bit editor/converter?

2003-08-14 Thread Randall Pulsifer
2 things: 1) of course I could write my own, but isn't that part of the purpose of this community? i.e. about a hundred have already written this code, so it's probably posted somewhere, and about a thousand others use an existing commercial/shareware converter (including pilrc, apparently). And

Okay to use DmWrite() on ordinary memory?

2003-08-14 Thread Todd Niec
Is it possible to use DmWrite() on ordinary memory? I have cases where buffers might be stored in ordinary memory (stack, heap, or static globals) or might be in a record in a file and I would like 1 method to write to both of them. thanks, todd niec -- For information on using the Palm

Re: How to use Radio Button

2003-08-14 Thread Mark Cameron
Aaron, that's a good idea in general. But our users are a bit hung up on the round thing, since that's what they're used to for web and PC surveys. It's a visual cue to interviewers and respondents. After 3 years of hearing the complaints, I finally gave in. :) In using gadgets, I also

Re: LstSetListChoices

2003-08-14 Thread Dave Carrigan
On Fri, Aug 08, 2003 at 12:26:13PM -0400, bullshark wrote: static char* gPlateString = PL3/16x\0PL1/4x\0PL5/16x\0PL3/8x\0PL1/2x\0PL5/8x\0; The above doesn't work. The compiler knows that dquote strings end with \0 so there is nothing in the .o image after PL3/16x. What are you talking

<    1   2   3   4   5   >