Re: TCP/IP, SSL and PALM

2008-05-29 Thread Christian Vandendorpe
, Christian Vandendorpe wrote: I'm afraid that you will have to implement yourself the TLS and SSL layer. I've been looking long and hard for an SLL layer ported to the Palm but I dont think it's been done yet. I'm thinking on trying to port the Mozila layer, that would bve neat. Some

Re: TCP/IP, SSL and PALM

2008-05-29 Thread Christian Vandendorpe
me to spend time on this if my entire app is going to be infected with the GPL virus just because of an SSL library in it. You could of course just make the library itself GPL and let your app call it. Or you can ask the owner of the GPLed code how much it would cost for you to

Chunk over-lock in CategoryFind ??

2008-05-28 Thread Christian Vandendorpe
Hi all, I get this chucnk over-locked in a couple of my program and cant figure out what is going on. On response to a pop trigger event I do the following: plst = GetObjectPtr(CurrencyCategoryList); CategoryCreateList(g_appType-pdbData,plst,g_catCurrent,

OS3.5 popups

2008-05-28 Thread Christian Vandendorpe
the screen. In the ctlSelectEvent of the form I only call CategorySelect(). What else should I be doing? Thanks Chris --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access

Re: Palm fonts for Windows

2008-05-28 Thread Christian Vandendorpe
, or to unsubscribe, please see http://www.palm.com/devzone/mailinglists.html --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: Handling RTF documents

2008-05-28 Thread Christian Vandendorpe
/devzone/mailinglists.html --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: Programmatically Launch 'Tips'?

2008-05-28 Thread Christian Vandendorpe
On Thu, 27 Jan 2000 08:38:40 -0500 [EMAIL PROTECTED] wrote: Does anyone know of a clean way to programmatically launch 'tips'? How about calling FrmHelp? I put my own i icon in the corner of my main app views as a button, and then service it by calling FrmHelp with the ID of a help string

Re: Installers for Palm applications?

2008-05-28 Thread Christian Vandendorpe
Install Tool (allow me to HotSync .prc on to the device) as well as register conduits for me. Thoughts? Thanks, Ben Flaumenhaft -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm.com/devzone/mailinglists.html --- Christian Vandendorpe ([EMAIL

RE: Color and Fill function

2008-05-28 Thread Christian Vandendorpe
, at least to me that sounds pretty complicated! Chris At 06:21 PM 1/26/2000 , you wrote: At 1:54 PM +0100 25-01-00, Christian Vandendorpe wrote: I'm in the process of adding pie charts to my program. This would look very cool with color! Only problem is that there is no fill function

Re: Color and Fill function

2008-05-28 Thread Christian Vandendorpe
At 08:21 PM 1/26/2000 , you wrote: On 26-Jan-00 Christian Vandendorpe wrote: Yes, flood fill, I was missing the term. I thought about it a bit more and will just do arc fill that means that to draw a pie wedge of a certain color, I'll just draw many lines of that color from the center

Re: HTTP_USER_AGENT

2008-05-28 Thread Christian Vandendorpe
://www.palm.com/devzone/mailinglists.html. --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: Color and Fill function

2008-05-28 Thread Christian Vandendorpe
overkill to do a rectangle fill of a pie wedge, at least to me that sounds pretty complicated! Chris At 06:21 PM 1/26/2000 , you wrote: At 1:54 PM +0100 25-01-00, Christian Vandendorpe wrote: I'm in the process of adding pie charts to my program. This would look very cool with color! Only problem

Color and Fill function

2008-05-28 Thread Christian Vandendorpe
Hi, I'm in the process of adding pie charts to my program. This would look very cool with color! Only problem is that there is no fill function in the OS. I've thought about writing my own recursive fill function but there is also no way to know if a pixel is on or not! Unless I am missing

Re: Color Device Developer Connection on Feb, 2?

2008-05-28 Thread Christian Vandendorpe
/mailinglists.html --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: Me too (Subject problem)

2008-05-28 Thread Christian Vandendorpe
How about [Palm] ? I'm already subscribed to a PDF list (as in Acrobat PDF). Chris On Mon, 24 Jan 2000 09:20:43 -0500 [EMAIL PROTECTED] wrote: On Sun, Jan 23, 2000 at 09:35:08PM -0800, Bobo the Clown wrote: Stuart, et al. I want to make this list as helpful for developers as possible, so

CReating a scrollable map

2008-05-28 Thread Christian Vandendorpe
Hi, I want to have a city map that can be scrolled with the pen. The map is quite large (315x492). I've been trying to use: winOffscreen = WinCreateOffscreenWindow(315,492,screenFormat,error); to blit the map onto and then was planning to copy parts of it to the current draw window.

Re: Automated build using CodeWarrior

2008-05-28 Thread Christian Vandendorpe
On NT ide.exe /? just launches the IDE while cmdide.exe /? does display the command line parameters. However when I call cmdide.exe with any of the options it just starts the ide and doesnt executes them anyway. Chris Ben Combee wrote: Christian Vandendorpe [EMAIL PROTECTED] wrote in message

Re: Automated build using CodeWarrior

2008-05-28 Thread Christian Vandendorpe
Make sure you call cmdide.exe and not ide.exe Chris Edmond Chan wrote: Ben, we must be using different versions of CW because I have already tried invoking ide.exe with /? for hints prior to sending my initial email. Nonetheless, I tried again with the other options you listed, no luck...

Re: code for GCC in CW

2008-05-28 Thread Christian Vandendorpe
There's that open source police again.. worse than an army of lawyers... As far as I know the GNU license doesnt prohibit recompiling under a different compiler. Chris Hari Warrier wrote: The format of CW .lib files won't be recognized by gcc, Why can't you compile that .lib (sources) under

Re: TCP/IP problem with POSE

2008-05-28 Thread Christian Vandendorpe
I debug all my TCP/IP apps from POSE without any problems. Just set the redirect netLib calls to host tcp/ip as you mentioned and then launch my app inside the CW debugger. TCP/IP is very fast from POSE !! Chris [EMAIL PROTECTED] wrote: I am trying to debug a tcp/ip application on a Palm IIIc

Installing programs from a Beaming Station

2008-05-28 Thread Christian Vandendorpe
Hi all, I'm developing a Palm OS-based guide for an international sporting event. The company that is paying me would like to install beaming stations at the event so that people with a Palm OS device can just point their Palm at the beaming station and download the program in question. Has

Re: running out of sockets in Palm OS 3.5

2008-05-28 Thread Christian Vandendorpe
Yup, I was getting the same error. But you can fix it by setting a linger time of 0. After opening a socket I do the following: NetSocketLingerType linger; linger.onOff = true; linger.time = 0; if

Re: NetLibGetHostByName alternative?

2008-05-28 Thread Christian Vandendorpe
hmm I would have assumed that this was hardwired to the Palm OS TCP/IP stack. Yes there seems to be a bug in NetLibGetHostByName with DNS aliases. The easy work around (easy because it requires a re-release of my program) was to use the cannonical DNS name. Chris [EMAIL PROTECTED] wrote: In

Re: Palm Vx syncs only at 9600

2008-05-28 Thread Christian Vandendorpe
I'll try another craddle on Monday. However I cant sync above 9600 on Windows or Mac using the craddle or HotSync cable (the one that comes in the travel pack). Chris Jim Schram wrote: At 10:26 AM +0100 11/3/00, Christian Vandendorpe wrote: I cleaned the contacts and was able to sync

Re: Palm Vx syncs only at 9600

2008-05-28 Thread Christian Vandendorpe
'97 still works great it makes me wonder about the Vx. Cheers Chris Christian Vandendorpe wrote: This is not a develper question but it is stopping me from developing :-) I thought someone might have a bright idea since talking 3 times on the phone today with Palm Support hasnt yielded any

Re: WheelMouse with CodeWarrior Editor

2008-05-28 Thread Christian Vandendorpe
This has nothing to do with CW but with the MS WheelMouse drivers. My experience is that MS drivers suck compared to the Logitech ones. At work I have a MS mouse and the wheel is just akward to use in most applications while at home my Logitech mouse works great, even in CW without MDI. Chris

Palm Vx syncs only at 9600

2008-05-28 Thread Christian Vandendorpe
This is not a develper question but it is stopping me from developing :-) I thought someone might have a bright idea since talking 3 times on the phone today with Palm Support hasnt yielded any answers. I HotSync 3 Palms on my NT machine - a Professional, IIIc and Vx. They are all hooked up

CategoryFreeList creates Memory chunk underlocked

2008-05-28 Thread Christian Vandendorpe
Hi all, When I run my app under gremlins I get a memory chunk underlocked in CategoryFreeList. The code looks like this: CategoryCreateList(..) LstPopupList(..) CategoryFreeList(..) I use the correct parameters in CategoryFreeList which match the ones used in CategoryCreateList. Anyone

Re: gethostbyname() failing (PalmOS cant cope!)

2008-05-28 Thread Christian Vandendorpe
was netErrTimeout, I then increased the timeout value in NetLibGetHostByName and now the error is netErrDNSTimeout. Can any Palm engineer please confirm that this could be a problem on the Palm OS ?? Are there any workarounds (apart from using IP addresses)? Many thanks Chris Christian

gethostbyname() failing

2008-05-28 Thread Christian Vandendorpe
Hi all, I've been using gethostbyname() in my network code for a long time with the fix for hostnames that return more than 4 addresses. This has worked fine. Every once in a while a user comes back to me saying that they got a gethostbyname error (an error message I output in case gethostbyname

Re: How to determine color or no color palm?

2008-05-28 Thread Christian Vandendorpe
I've written the following function in my code to check this: Boolean IsColorDevice() { if (GetRomVersion() = 0x0350) { UInt32 depth; WinScreenMode(winScreenModeGetSupportedDepths,NULL,NULL,depth,NULL); if (depth =

How to display Palm VII Antena strength (was Palm VII in POSE and new Proxy)

2008-05-28 Thread Christian Vandendorpe
like 'chrOta'? Thanks again Chris Christian Vandendorpe wrote: How do I get the Palm VII to access the network from POSE? Right now it is failing and I imagine that this is due to the new Palm.net proxies. How do I change the proxy on a Palm VII? Thanks Chris --- Stock Manager - http

Palm VII in POSE and new Proxy

2008-05-28 Thread Christian Vandendorpe
How do I get the Palm VII to access the network from POSE? Right now it is failing and I imagine that this is due to the new Palm.net proxies. How do I change the proxy on a Palm VII? Thanks Chris --- Stock Manager - http://TinyStocks.com -- For information on using the ACCESS Developer

Re: TCP/IP, SSL and PALM

2008-05-28 Thread Christian Vandendorpe
I'm afraid that you will have to implement yourself the TLS and SSL layer. I've been looking long and hard for an SLL layer ported to the Palm but I dont think it's been done yet. I'm thinking on trying to port the Mozila layer, that would bve neat. Chris Gil wrote: Hi, 1. Does PALM

Re: ANN: SysZLib with armlet released

2003-01-21 Thread Christian Vandendorpe
Have you considered making a version that just has the ARM code? This would keep it at a reasonable size. Chris Justin Clark wrote: Nope, no debugging symbols.. The PRC now has 39KB of ARM code, in addition to the original 32KB of 68K code. -- For information on using the Palm Developer

Re: Palm OS 5.2, tungsten/sony?

2003-01-21 Thread Christian Vandendorpe
I hope Palm releases it for the Tungsten. I was very disapointed when I saw that the browser that came with OS 5.0 was that silly proxy based Novarra browser. The new browser looks very nice but works with 5.1 and up. [EMAIL PROTECTED] wrote: I see Palm OS 5.2 is out:

Re: Disabling auto-off ?

2002-11-21 Thread Christian Vandendorpe
Bill Andreozzi wrote: I do it by: WORD ito = SysSetAutoOffTime( 0 ); EvtResetAutoOffTimer(); // perform whatever time intensive task I have. SysSetAutoOffTime( ito ); EvtResetAutoOffTimer(); Thanks! exactly what I need. I found out that the Palm OS can turn itself off during

Re: Image Compression

2002-11-21 Thread Christian Vandendorpe
Henk Jonas wrote: picture. Therefore things like Huffman or LZW exist, to compress high color images. You could look into the zip code for palm (somewhere at sourceforge, iirc) and use this compression library to compress your Yes it's out there, I use it for PNG stuff, only problem is that

Disabling auto-off ?

2002-11-20 Thread Christian Vandendorpe
Does anyone know how to temporarily disabling the device auto-off ? Thanks in advance. Chris -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Tungsten using dev ROM ?

2002-11-14 Thread Christian Vandendorpe
If you do a : FtrGet(sysFtrCreator, sysFtrNumROMVersion, romVersion); on a Tungsten you get back that the stage is been set to sysROMStageDevelopment (0) instead of the usual sysROMStageRelease (3) for all other Palm devices that I can remember. So is this a mistake or was the Tungsten rushed

Re: Vr9 Pricing??

2002-11-14 Thread Christian Vandendorpe
Ben Combee wrote: V9 includes 95% of the functionality included with V8, plus a lot of new features. The Handspring Springboard ROM linker was dropped from the product, and are we no longer distributing the HandEra 330 SDK. The product is also hosted only on Win32 systems, not Mac OS, but

Re: OT : Graphics tool for 16-bit bitmaps

2002-11-14 Thread Christian Vandendorpe
Jim Cooper wrote: Photoshop can handle this and is the best tool for bitmap editing. Not that I can see. It will create 8- and 24-bit images, but not 16 (this is on v6, I think). If you know how to do it please email me direct with instructions I can pass on to the designer. I usually

Re: VersaMail (MultiMail) plugin API

2002-11-14 Thread Christian Vandendorpe
Danny Wong wrote: HI, Just noticed that my plugins for MultiMail Pro does not Work with VersaMail on Palm OS 5. Does anyone know if the API have been changed? If so where can I get the doc. Regards, hmm good luck trying to get any answer from Palm regarding this. I once tried to contact

Re: Negative Number Input

2002-10-11 Thread Christian Vandendorpe
Oliver wrote: In your keyDownEvent event handler do: [...] But that, of course, doesn't prevent the user from entering something like 1-2.3-...2424, so you'd still need to write code to validate that what was entered is actually a valid number, i.e., - minus character is at the

Re: LIST MEMEORY LEAKS

2002-10-11 Thread Christian Vandendorpe
You must cleanup all memory that you allocate, dont expect the OS to do that for you. Then do a FrmCloseAllForms. This is probably where your leak comes from. Every Palm program must call FrmCloseAllForms just before it exits. -- For information on using the Palm Developer Forums, or to

Re: app install problem - urgent help is needed

2002-10-07 Thread Christian Vandendorpe
Check also that you are not doing something like orphanning the AppInfo block of your DB. I just had a situation like this where I had to hard reset my Palm because it was in an infinite reset loop like you described. Maks Pyatkovskiy wrote: Please check your app on Palm OS Emulator: 1.

Re: Problem connecting via Bluetooth

2002-10-05 Thread Christian Vandendorpe
Hi, Actually I think I know the cause of this. My form has a large bitmap in it and I guess this may take a lot of stack space. It looks like the BT library requires also a lot of stack space. Calling NetLibOpen tries to initialize the BT library but this fails and returns the useless error

Re: converting Windows bitmap into Palm bitmap

2002-10-05 Thread Christian Vandendorpe
Alexander Galkin wrote: I need to write a code in conduit that would take Windows bitmap and convert it to Palm bitmap in binary format and save this binary data into Palm database. Palm app code then would read data from database and draw the bitmap. Is there any sample source code available

Re: C or C++

2002-10-04 Thread Christian Vandendorpe
Mark Wilden wrote: From: Christian Vandendorpe [EMAIL PROTECTED] hmmm actually I cant think of a single good reason to write in C++ for the Palm. I do C++ on Windows Why do you do C++ on Windows? Makes it easier to use MFC. -- For information on using the Palm Developer Forums

Re: C or C++

2002-10-03 Thread Christian Vandendorpe
Boy, tell me about it! I can't believe these discussions still come up--or that anyone is still using C in this day and age. Even if you don't use OOP, exceptions, or generic programming, C++ is still an easier and safer language than C. hmmm actually I cant think of a single good reason

Problem connecting via Bluetooth

2002-10-03 Thread Christian Vandendorpe
Hi, I'm having this very strange problem. I have my own networking library which I have been using for a long time on several different projects. It works fine bringing up PPP connections to the Internet over IR, Bluetooth.. well we all know this, the OS hides all this. However a strange

Re: Problem connecting via Bluetooth

2002-10-03 Thread Christian Vandendorpe
Hmm it looks like it's NetLibOpen() which returns this error 0x2F0C. Any of the Palm people know why this could fail under certain cases with BT? Chris Christian Vandendorpe wrote: Hi, I'm having this very strange problem. I have my own networking library which I have been using

Re: Trouble dismissing dialog

2002-07-10 Thread Christian Vandendorpe
I do this by posting an event to myself simulating that a button was pressed. Works quite well. Chris Richard Coutts wrote: I have a generic dialog function for instantiating my dialog and for registering my handler. It works great, except that I want to add the behaviour that if the

PalmSource Europe

2001-01-31 Thread Christian Vandendorpe
Any developers coming to PalmSource Europe? If so, it would be great to meet for a beer. I suggest meeting every night around 10 pm at the O'reilly's Irish bar on Paleis Straat. To get there: - go to the Dam square (the main square of Amsterdam where the Queen's castle is) - face the Madam

Re: Security News

2001-01-28 Thread Christian Vandendorpe
hmm.. if I remember correctly it was a certain little program that you wrote that gave McAffee and others the opportunity to sell this kind of software for the first time on the Palm OS platform. We should all, as developers for this platform, be more careful in what we release. Chris Aaron

Re: ANN: ogeLib library available NOW under LGPL

2001-01-24 Thread Christian Vandendorpe
Link doesnt seem to be working. Chris "Owen G. Emry" wrote: The ogeLib is now available for download in preliminary form. This is a collection of useful utility routines I've amassed over the last few months. Included are modules for database abstraction, date manipulation, etc.

Re: Cryptography

2001-01-24 Thread Christian Vandendorpe
How is it going with PilotSSLeay? I was thinking of checking it out to see if I could implement an SSL layer on the Palm. Chris But I've implemented an entire Open PGP (rfc 2440) library for the Palm. It may be available somewhere, and was based on my rfc2440 reference implementation

Re: Wireless comm in Palm

2001-01-24 Thread Christian Vandendorpe
Basically: - read the instructions that came with your phone on how/if it supports data transfers - read the instructions that came with your palm on how to configure it - check your isp on what net settings you have to set that's it I've put up a few screen shots as an indication here:

Re: Pinging my wireless device

2001-01-24 Thread Christian Vandendorpe
They probably block incoming packets at the gateway Ralph Krausse wrote: Is there a reason I would not be able to ping my Omnisky modem? I can do the reverse, ping my machine from the Omnisky modem. Anyone? Thanks Ralph Krausse ** www.consiliumsoft.com ** Free Palm OS Source Code --

ANN: PalmSource Europe - Info about Amsterdam

2001-01-10 Thread Christian Vandendorpe
Hi all, I wrote a program last summer for Heineken for the Euro 2000 football conpetition. I suddenly realised that this program might still be useful for those of you who are coming to Amsterdam for PalmSource Europe. In the program you will find: - Hotel information with phone numbers

Re: Standard Template Library: stlport

2001-01-04 Thread Christian Vandendorpe
Where did you find this? Chris Paul Anthony Mandrafino wrote: Hi, Some time ago, there was a discussion thread concerning the use of STL. The suggestion was to try STLPORT which is freely available. I've located the sources and have attempted to integrate them into my project. There

Re: CW r7.

2000-12-28 Thread Christian Vandendorpe
You may want to take a look at a small program I wrote: MacFork (http://www.zorglub.com/pilot.html). I also do my programming on NT4 and resource editing on Mac. On the Mac I mount my NT NTFS dev drive. MacFork does the resource conversion between Windows and MacOS so that you can edit in one

Re: Porting from PalmOS to Mac and Win32

2000-12-28 Thread Christian Vandendorpe
If you use standard programming techniques such as separating your gui code from the code that does the work you can achieve quite a lot. I have some source files that compile on PalmOS, Win32 and MacOS. Chris Owen Flagel wrote: Any suggestions/recommendations for software to port PalmOS to

Re: Palmsource Europe

2000-12-15 Thread Christian Vandendorpe
ere abouts in Amsterdam is the RIA ??? I know the main aras a bit. Thanks Rik -Original Message- From: Christian Vandendorpe [SMTP:[EMAIL PROTECTED]] Sent: 13 December 2000 13:59 To: Palm Developer Forum Subject: Re: Palmsource Europe I live in Amsterdam so if th

Re: CW r7.

2000-12-15 Thread Christian Vandendorpe
Gee I dont know what all the slack about CW is. I personally think it's a decent compiler/environment. I miss a few of the features from the VC++ editor (block selection, and other gui stuff) but the debugger and the rest works perfectly on WinNT. I use CW intensively for Stock Manager, debugging

Re: Palmsource Europe

2000-12-13 Thread Christian Vandendorpe
I live in Amsterdam so if there is demand I can check out which bars would be good to go to and could hold a medium crowd of people. Chris Jens Rupp wrote: Hi, Since all US based developers are probably off to Palmsource i should have the full attention of the Europeans :) Who else is

Re: UID in a pdb

2000-12-13 Thread Christian Vandendorpe
I think when you create records on the PC you are supposed to just give then an id of 0 and then the Palm will take care to assign an id when the database is transfered. Chris [EMAIL PROTECTED] wrote: Hello, i have a question about the three byte long unique identifier of an record in a

PalmSource Europe

2000-12-10 Thread Christian Vandendorpe
is in ... Amsterdam ! Way to go guys, excellent choice! :-) It'll only be a 15 min bicycle ride to the RAI. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Chunk over-lock in CategoryFind ??

2000-12-07 Thread Christian Vandendorpe
Hi all, I get this chucnk over-locked in a couple of my program and cant figure out what is going on. On response to a pop trigger event I do the following: plst = GetObjectPtr(CurrencyCategoryList); CategoryCreateList(g_appType-pdbData,plst,g_catCurrent,

CReating a scrollable map

2000-12-02 Thread Christian Vandendorpe
Hi, I want to have a city map that can be scrolled with the pen. The map is quite large (315x492). I've been trying to use: winOffscreen = WinCreateOffscreenWindow(315,492,screenFormat,error); to blit the map onto and then was planning to copy parts of it to the current draw window.

Re: Automated build using CodeWarrior

2000-12-01 Thread Christian Vandendorpe
On NT "ide.exe /?" just launches the IDE while "cmdide.exe /?" does display the command line parameters. However when I call "cmdide.exe with any of the options it just starts the ide and doesnt executes them anyway. Chris Ben Combee wrote: "Christian Vanden

Re: Automated build using CodeWarrior

2000-11-29 Thread Christian Vandendorpe
Make sure you call cmdide.exe and not ide.exe Chris Edmond Chan wrote: Ben, we must be using different versions of CW because I have already tried invoking "ide.exe" with "/?" for hints prior to sending my initial email. Nonetheless, I tried again with the other options you listed, no

Re: running out of sockets in Palm OS 3.5

2000-11-27 Thread Christian Vandendorpe
Yup, I was getting the same error. But you can fix it by setting a linger time of 0. After opening a socket I do the following: NetSocketLingerType linger; linger.onOff = true; linger.time = 0; if

Installing programs from a Beaming Station

2000-11-27 Thread Christian Vandendorpe
Hi all, I'm developing a Palm OS-based guide for an international sporting event. The company that is paying me would like to install "beaming stations" at the event so that people with a Palm OS device can just point their Palm at the beaming station and download the program in question. Has

Re: NetLibGetHostByName alternative?

2000-11-06 Thread Christian Vandendorpe
hmm I would have assumed that this was hardwired to the Palm OS TCP/IP stack. Yes there seems to be a bug in NetLibGetHostByName with DNS aliases. The "easy" work around ("easy" because it requires a re-release of my program) was to use the cannonical DNS name. Chris [EMAIL PROTECTED] wrote:

Re: WheelMouse with CodeWarrior Editor

2000-11-03 Thread Christian Vandendorpe
This has nothing to do with CW but with the MS WheelMouse drivers. My experience is that MS drivers suck compared to the Logitech ones. At work I have a MS mouse and the wheel is just akward to use in most applications while at home my Logitech mouse works great, even in CW without MDI. Chris

Re: Palm Vx syncs only at 9600

2000-11-03 Thread Christian Vandendorpe
'97 still works great it makes me wonder about the Vx. Cheers Chris Christian Vandendorpe wrote: This is not a develper question but it is stopping me from developing :-) I thought someone might have a bright idea since talking 3 times on the phone today with Palm Support hasnt yielded any

Re: Palm Vx syncs only at 9600

2000-11-03 Thread Christian Vandendorpe
I'll try another craddle on Monday. However I cant sync above 9600 on Windows or Mac using the craddle or HotSync cable (the one that comes in the travel pack). Chris Jim Schram wrote: At 10:26 AM +0100 11/3/00, Christian Vandendorpe wrote: I cleaned the contacts and was able to sync

Palm Vx syncs only at 9600

2000-10-31 Thread Christian Vandendorpe
This is not a develper question but it is stopping me from developing :-) I thought someone might have a bright idea since talking 3 times on the phone today with Palm Support hasnt yielded any answers. I HotSync 3 Palms on my NT machine - a Professional, IIIc and Vx. They are all hooked up

Re: gethostbyname() failing (PalmOS cant cope!)

2000-10-26 Thread Christian Vandendorpe
on the same sort of program. Hence, I'm running up against the same sort of problems with name resolution that Christian is facing. If anyone has a solution for this, I wouldn't mind hearing about it as well. Thanks much! Edmund Seto "Christian Vandendorpe" [EMAIL PROTEC

CategoryFreeList creates Memory chunk underlocked

2000-10-26 Thread Christian Vandendorpe
Hi all, When I run my app under gremlins I get a memory chunk underlocked in CategoryFreeList. The code looks like this: CategoryCreateList(..) LstPopupList(..) CategoryFreeList(..) I use the correct parameters in CategoryFreeList which match the ones used in CategoryCreateList. Anyone

gethostbyname() failing

2000-10-19 Thread Christian Vandendorpe
Hi all, I've been using gethostbyname() in my network code for a long time with the fix for hostnames that return more than 4 addresses. This has worked fine. Every once in a while a user comes back to me saying that they got a "gethostbyname error" (an error message I output in case

Re: gethostbyname() failing (PalmOS cant cope!)

2000-10-19 Thread Christian Vandendorpe
was netErrTimeout, I then increased the timeout value in NetLibGetHostByName and now the error is netErrDNSTimeout. Can any Palm engineer please confirm that this could be a problem on the Palm OS ?? Are there any workarounds (apart from using IP addresses)? Many thanks Chris Christian

Re: TCP/IP, SSL and PALM

2000-10-03 Thread Christian Vandendorpe
0 at 12:10:19PM +0200, Christian Vandendorpe wrote: I'm afraid that you will have to implement yourself the TLS and SSL layer. I've been looking long and hard for an SLL layer ported to the Palm but I dont think it's been done yet. I'm thinking on trying to port the Mozila layer, that woul

Re: TCP/IP, SSL and PALM

2000-09-28 Thread Christian Vandendorpe
I'm afraid that you will have to implement yourself the TLS and SSL layer. I've been looking long and hard for an SLL layer ported to the Palm but I dont think it's been done yet. I'm thinking on trying to port the Mozila layer, that would bve neat. Chris Gil wrote: Hi, 1. Does PALM

Palm VII in POSE and new Proxy

2000-09-28 Thread Christian Vandendorpe
How do I get the Palm VII to access the network from POSE? Right now it is failing and I imagine that this is due to the new Palm.net proxies. How do I change the proxy on a Palm VII? Thanks Chris --- Stock Manager - http://TinyStocks.com -- For information on using the Palm Developer

How to display Palm VII Antena strength (was Palm VII in POSE and new Proxy)

2000-09-28 Thread Christian Vandendorpe
character like 'chrOta'? Thanks again Chris Christian Vandendorpe wrote: How do I get the Palm VII to access the network from POSE? Right now it is failing and I imagine that this is due to the new Palm.net proxies. How do I change the proxy on a Palm VII? Thanks Chris --- Sto

Re: Table doesn't respond to taps under 3.5...

2000-05-30 Thread Christian Vandendorpe
ch/support/forums/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/ --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the Palm Developer Forums, or to u

Re: How do I resolve Object not in form error?

2000-05-19 Thread Christian Vandendorpe
he active form and that is why it can't find EditTable? Could someone help me fix this bug? I have included some of the code below...I am happy to provide more if it helps... Thanks. Clancy J. Clark --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on u

Re: Application Beaming from withing the application itself

2000-05-11 Thread Christian Vandendorpe
alm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/ --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: Changing the User Name on a device

2000-05-10 Thread Christian Vandendorpe
Yes, download a program called PalmName, you'll find it on PalmGear. I just used it a few days ago and works great. Chris On Wed, 10 May 2000 08:21:10 -0400 [EMAIL PROTECTED] wrote: Hello: Is there any way to change the User Name on a device without resetting it? Thanks Chip Petersen

Re: Transferring Resources from PC-Mac

2000-05-09 Thread Christian Vandendorpe
, Software Engineer Active Sky Pty Ltd -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/ --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the Palm Developer Forums

Re: palm software cracking

2000-05-04 Thread Christian Vandendorpe
a protection scheme or otherwise make it free. I experimented with this a couple of years ago with one of my apps and nobody bought it. 4) Just forget it and not mess with the bother and make my program freeware. That's always good. Chris --- Christian Vandendorpe ([EMAIL PROTECTED]) http

Customizing field draw routines

2000-05-03 Thread Christian Vandendorpe
Has anybody tried to customize the field draw routines in order to have the text drawn in a special way? It would be great to make a custom field that would recognize tags in the text such as bold and underline and draw the text between those tags with the specified attributes. I guess I

Re: Constructor and Colors

2000-04-26 Thread Christian Vandendorpe
have all changed. All I want is the standard blue circle, but it changes to purple! What must I do? Many Thanks. Steve -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm.com/devzone/mailinglists.html --- Christian Vandendorpe ([EMAIL

Re: socket programming and PalmVII

2000-04-11 Thread Christian Vandendorpe
For the Palm VII you have to use the inetlib which is quite different from the netlib. In my program I use the same high level functions for all network communication but then in the low level routines I branch out to using standard sockets (netlib) or inetlib depending on the hardware. Chris

Re: Looking for a PalmPilot or Cell Phone to do stock trading

2000-04-06 Thread Christian Vandendorpe
f the way." -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm.com/devzone/mailinglists.html --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the Palm Developer Forums, or to unsubscribe,

Re: ?Miscellaneous Debugging Irritations -- solutions?

2000-04-05 Thread Christian Vandendorpe
this? yes this is due to optimization. Since you do not use Test1-Test5 they are all assigned to the same memory location. Turn off all optimizations to avoid this. Chris --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the Palm Developer Forums

Re: GSM TCP/IP connection

2000-04-04 Thread Christian Vandendorpe
It's pretty "easy" using the NetLib. There is a TCP/IP example in the SDK example programs. This will get you started. Chris On Tue, 4 Apr 2000 12:03:03 +0200 [EMAIL PROTECTED] wrote: In a new project I have to connect the Symbol with the barcode reader ove r GSM (Ericsson SH888) to

Re: Crossplatform development

2000-04-02 Thread Christian Vandendorpe
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm.com/devzone/mailinglists.html --- Christian Vandendorpe ([EMAIL PROTECTED]) http://www.zorglub.com -- For information on using the Palm Developer Forums, or to unsubscribe, please see http

  1   2   >