Re: PODS 1.1 debugging

2005-03-18 Thread bioinfonews
Hi, I've got a problem with the PODS 1.1 integrated debugger under Windows XP SP1: it doesn't step through the application. To be more precise, it steps alright up to the AppEventLoop. But then, once I do some action, like clicking a menu, it simply runs through the application without

Re: John Marshall still doing Palm stuff?

2005-03-18 Thread Ben Combee
At 12:47 AM 3/18/2005, you wrote: I know he was at Palm and then at enterprise.net but I am getting User Unknown from his email at enterprise! I would like to point out a few minor updates for some of his Palm web pages if I can contact him. Somebody shoot me his email, please? I think you can

Re: Freeware distribution?

2005-03-18 Thread Per Trelje
Frank LaRosa wrote: I wrote a small game which I'd like to distribute for free. Are there any web sites around to which I can upload it? I can recommend http://www.shoplagom.com. -- Find my ResToXrd converter at one of these sites http://www.shoplagom.com/developer_all.asp?devid=2

RE: Is it possible to resize a form at runtime?

2005-03-18 Thread Vesselin Bontchev
frmMain.Height = 30 .Width .Top .Left Is that what you mean? No, most definitely not. First of all, an object of the type FormType does not have such fields. Perhaps you meant something like frmMain-window.windowBounds.extent.y = 30; or something like that. However, the PalmOS

Re: Browser Creator ID problems - nothing unusual...

2005-03-18 Thread Miro Pomsar
Hi, I use the following code. The blazer creatorID could also be included from a palmONE sdk header. It should work for webpro3 and 4(aka blazer), (treo600, treo650, any tungsten). char *url ; LocalID appDbID ; #define BLAZER_CREATOR'BLZ5' if(

RE: PODS Debug, show global variables

2005-03-18 Thread Vesselin Bontchev
That being said there is a work around: type the name of the global variable into the Expressions tab. This work around works for most cases Sorry, but it doesn't work - neither for global variables, nor for static variables. Oh, the *names* of the variables do show on the Expressions tab

Re: Browser Creator ID problems - nothing unusual...

2005-03-18 Thread Neil Whitworth
John Spence wrote: Hello, I'm developing a web-access application on a Treo 600 (Cingular Service) running Palm OS 5.2.1. I want to do what appears to be the standard method of programmatically launching a web browser to access a specific URL. I seem to be having a problem with the Creator ID of

Re: problem with NetLibSocketAddr , NetLibArrrINToA

2005-03-18 Thread A.Kazantsev
What is the error? What is the version of SDK installed within your CW 8.0? As I recall you should upgrade to CW 9.3 to run the Simulator. vk Hi all, vk In my network application I am trying to get the IP address vk of my local host and remote host by function - NetLibSocketAddr vk . i am using

BlueTooth on simulator

2005-03-18 Thread Vladan Markovic
Is this posible, to run Bluetooth app. on the simulator, or is there some free lib./program that can be helpful. Vladan Markovic -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: John Marshall still doing Palm stuff?

2005-03-18 Thread John Marshall
Gregg Woodcock wrote: I know he was at Palm and then at enterprise.net I'd be curious to hear how you know that, considering that it is not true. Enterprise.net was merely an ISP that I used in the UK seven years ago (and thus _before_ I was at Palm). Somebody shoot me his email, please? You

DES,RC4,3DES

2005-03-18 Thread Armada.li
I can call CryptEncrypt and CryptDecrypt to encrypt/decrypt data on windows platform using DES,RC4,3DES... How do I do them on palm platform. I use codewarrior9. Thanks. -- For information on using the Palm Developer Forums, or to unsubscribe, please see

RE: this is test

2005-03-18 Thread John Sutton
This is result -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Vladan Markovic Sent: 17 March 2005 11:02 To: Palm Developer Forum Subject: this is test This is test -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Any smart way to handle options for all the different device

2005-03-18 Thread Cory Pratt
For my programs, I created an abstraction layer. For example, say you want to draw a color line. I've wrapped the device-specific line drawing routines in my own routine (MyWinPaintLine). If the device supports color, WinPaintLine is called. If not, WinDrawLine is called. It's a little more

Bitmap Help!!!

2005-03-18 Thread Sohil Shah
Is there a different way of creating bitmaps for the Palm device. Are there special tools or tools like Paint and Photoshop can be used? If regular desktop tools can be used is there a way to specify the Palm based bitmap properties in those? I am referring to the bitmap properties that are

Re: Is it possible to resize a form at runtime?

2005-03-18 Thread Dave Carrigan
On Thu, Mar 17, 2005 at 09:41:33PM -, Vesselin Bontchev wrote: Where is this SampleCollapse thingy BTW? I checked the Samples folder of PODS, of SDK-5r4 and of SDK-6.1 and while there are various samples there, there isn't anything called SampleCollapse or CollapseUtils. This is sample

Re: DES,RC4,3DES

2005-03-18 Thread Ingbert Grimpe
On Fri, 18 Mar 2005 20:07:50 +0800, Armada.li [EMAIL PROTECTED] wrote: I can call CryptEncrypt and CryptDecrypt to encrypt/decrypt data on windows platform using DES,RC4,3DES... How do I do them on palm platform. Check Encrypt.h. You have EncDes (can also be used for 3DES of course) and

Reading whole PDB into buffer

2005-03-18 Thread Alex Gusev
Hi, all, I need to develop an application with sends selected PDB to some host. I can't just use Exchange Manager to do it because I need to 'decorate' my message with some additional stuff. So I'd appreciate any ideas on how to read whole pdb into memory buffer to be able to use it as

Re: Sketching in double density

2005-03-18 Thread Azrul
I believe the digitizer is simply cannot return the pen location in high resolution mode. It is the hardware limitation. If you are drawing in double density screen, you have to extrapolate the points yourself. Azrul www.mobile-coder.com resource/code snippets for pda/smartphone developer

Re: Reading whole PDB into buffer

2005-03-18 Thread Neil Whitworth
Alex Gusev wrote: Hi, all, I need to develop an application with sends selected PDB to some host. I can't just use Exchange Manager to do it because I need to 'decorate' my message with some additional stuff. So I'd appreciate any ideas on how to read whole pdb into memory buffer to be able to

Re: Browser Creator ID problems - nothing unusual...

2005-03-18 Thread John Spence
Hi Neil, I know there are lots of browsers out there. What I wanted to emphasize was that this is a Treo 600 out of the box running whatever browser is bundled with the Treo 600 by Palm or Handspring. Part of my problem is that there is no name to the program - it is just called WEB which

Re: Browser Creator ID problems - nothing unusual...

2005-03-18 Thread John Spence
Hi Milo, Thanks for the response. I tried the Blazer Creator ID you provided. Now it resets or crashes the Treo600, but at least it has an effect. Thanks for your idea. Bye, John -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Browser Creator ID problems - nothing unusual...

2005-03-18 Thread Ben Combee
At 11:43 AM 3/18/2005, you wrote: Hi Neil, I know there are lots of browsers out there. What I wanted to emphasize was that this is a Treo 600 out of the box running whatever browser is bundled with the Treo 600 by Palm or Handspring. Part of my problem is that there is no name to the program

Serial Port Baudrate

2005-03-18 Thread Terry Young
I have a program than runs on my old PalmPilot Professional using the serial port at 300 Baud. I'm trying to get it to run on a Palm IIIc, but I can't get the serial port baud rate set to 300. It will set to 1200 though. Does anyone know the range of the serial port baudrates or where I can

Make Clean doesn't make clean bug in PODS 1.1

2005-03-18 Thread Stadin, Benjamin
Hi, I occasionally got a problem when I switch between debug and release build in my makefile and tried to build with Project/Clean... in the menu (the problem isn't limited to that). This problem happens on occassion after I've changed source file names in my project. PODS shows an error

Re: Make Clean doesn't make clean bug in PODS 1.1

2005-03-18 Thread Benoit Cerrina
Stadin, Benjamin wrote: Hi, I occasionally got a problem when I switch between debug and release build in my makefile and tried to build with Project/Clean... in the menu (the problem isn't limited to that). This problem happens on occassion after I've changed source file names in my project.

Programmatically setting the number of visible lines in a list

2005-03-18 Thread Luc Le Blanc
I dynamically fill a list with LstSetListChoices. Depending on context the list can have 5 or 9 items. If I set the resource for 9 visible items in the Constructor resource file and later use LstSetListChoices to pass 5 items, the list opens half empty, which looks pretty bad; if I do the

Re: Programmatically setting the number of visible lines in a list

2005-03-18 Thread Robert Moynihan
Luc Le Blanc wrote: I dynamically fill a list with LstSetListChoices. Depending on context the list can have 5 or 9 items. If I set the resource for 9 visible items in the Constructor resource file and later use LstSetListChoices to pass 5 items, the list opens half empty, which looks pretty bad;

Re: Make Clean doesn't make clean bug in PODS 1.1

2005-03-18 Thread John Marshall
Benoit Cerrina wrote: The reason seems to be that make.exe loops through all .d files and checks references *prior* the .d files are deleted by make clean all. Just to say that in our project which use make and prc tools we also generate dependency and have the same issue after renameing .h

Position of first match in text

2005-03-18 Thread Stadin, Benjamin
Hi, I'm using StrStr to compute the position of the first match in a text string (TxtGlueFindString and FindStrInStr don't give the correct Position if the string doesn't start with the searched string, although they find a match...). My problem is that I get only the last text match, but I

re: Position of first match in text

2005-03-18 Thread Stadin, Benjamin
Argh Sorry. I forgot to lower case the text. Time to sleep. ;-) -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/