RE: Treo 600 connector

2004-07-20 Thread Agus Silas
Thanks a lot Ben... Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Ben Combee Envoyé : mardi 20 juillet 2004 14:38 À : Palm Developer Forum Objet : Re: Treo 600 connector At 07:34 AM 7/20/2004, you wrote: I've tried to find the Treo 600 connector

RE: application that run´s in background

2004-06-24 Thread Agus Silas
Thanks Armada... Regards, Agus Silas -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de armada Envoyé : jeudi 24 juin 2004 10:58 À : Palm Developer Forum Objet : Re: application that run´s in background Please download my open-source project from

RE: Does the Zire 71 contain RS232 -port ?

2004-01-06 Thread Agus Silas
You can use SrmReceiveCheck before SrmReceive. SrmReceiveCheck informs you the number characters waiting in the Rx buffer. Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de Horst Borscht Envoyé : mardi 6 janvier 2004 09:21 À : Palm Developer Forum Objet

RE: sprintf in CW9.2 link error

2003-12-03 Thread Agus Silas
Instead of using sprintf, you should use StrPrintF ( buf, %c, 1 ); Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de Markus Reichart Envoye : mercredi 3 decembre 2003 11:07 A : Palm Developer Forum Objet : sprintf in CW9.2 link error Hi. I've started

RE: Released at last - thanks to you all!

2003-12-02 Thread Agus Silas
Belle initiative et réalisation.. En parlant des cavernes, avez-vous lu Pourquoi j'ai mangé mon père ? de Roy Lewis ? Si vous ne l'avez pas encore lu, je vous le conseil. C'est un excellent livre sur les habitants des cavernes... Cordialement, Agus Silas BST Technologies T. 05 57 77 29 99 F

RE: more serial communication trouble

2003-11-28 Thread Agus Silas
It's all depend on your GPS device, for example, Magellan companion for Visor need to use their API to initialise and retrieve data otherwise it won't work. Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de Lawrence Lau Envoye : vendredi 28 novembre

RE: more serial communication trouble

2003-11-28 Thread Agus Silas
Yes, but it's all depend on your GPS device. Some GPS devices send data on it's serial port right after it's powered, so you can read using common serial com functions from your Palm. Some others, like the Magellan Companion, you will need to use their API to get NMEA data from the device,

RE: Too Much Code?

2003-11-10 Thread Agus Silas
I had the same problem until I change the link size from Small to Large mode with CodeWarrior. I don't know the option for GCC but I think you have this possibility too. What's the size of your .PRC file ? Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part

RE: How to close a conection?

2003-09-08 Thread Agus Silas
Set the second param to TRUE, this will close the connection immediately. Otherwise the connection will only be closed after the timeout. NetLibClose ( AppNetRefnum, true ); Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de Alexandre Barreto Envoyé :

RE: Newbie Question - Using Visual Studio??

2003-08-01 Thread Agus Silas
ASTA has some cool features ( http://www.astatech.com/demos/ ) for Palm. They once have a Pascal compiler for Palm environment, but I don't know if it still exists, I cannot find it in their site. Regards, Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la

RE: picture of connector

2003-07-31 Thread Agus Silas
Try this link : http://www.palmos.com/dev/tech/hardware/palmhardware/ , you can have more detailed information on Palm connectors Regards, Agus Silas BST Technologies http://www.bst-technologies.com

RE: how to send a http request via netlib?

2003-07-31 Thread Agus Silas
You can download HTTPTester from http://www.freewarepalm.com/communication/httptester.shtml It's a freeware with source included. The prc might not work as is, but you can modify the code and place some spies to track down. I had to modify the code to make it work on my TW. Regards, Agus Silas

RE: QUAKE - was Re: garmin PDA now shipping

2003-07-25 Thread Agus Silas
Yeah..., they should add GSM/GPRS functionality and it would be a killing stuff. Regards, Agus Silas BST Technologies http://www.bst-technologies.com/ ** ** -Message d'origine- De : [EMAIL

RE: Serial port hardware specs?

2003-07-21 Thread Agus Silas
If you're looking for information about Palm connector specs, try this link http://www.palmos.com/dev/tech/hardware/palmhardware/ Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de Scott Kelley Envoyé : samedi 19 juillet 2003 00:38 À : Palm Developer

RE: MemPtrFree - invalid chunk

2003-06-25 Thread Agus Silas
Yeap, you're right... Thanks Chris Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de Chris Tutty Envoyé : mercredi 25 juin 2003 01:22 À : Palm Developer Forum Objet : Re: MemPtrFree - invalid chunk From: Agus Silas [EMAIL PROTECTED] In fact, I've

RE: MemPtrFree - invalid chunk

2003-06-24 Thread Agus Silas
I only run it in release mode. Just on thing I forgot to mention. I run it on Tungsten W and I use CW v8.3 Agus -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la part de Rodolphe Bréjaude Envoyé : mardi 24 juin 2003 12:52 À : Palm Developer Forum Objet : Re:

RE: MemPtrFree - invalid chunk

2003-06-24 Thread Agus Silas
FOUND my bug, stupid me In fact, I've moved the free session from the end of the AppEventLoop to AppStop. I thougt that I cut then paste, but instead I copy then paste, so I freed twice. Now it works just fine, thanks to all of you. :) Stupid me Agus -Message d'origine- De :

RE: play litte sound with Palm

2003-06-16 Thread Agus Silas
Since command is a pointer, shouldn't you allocate memory space before ? Why don't you do just like this SndCommandType sndCmd; sndCmd.cmd = sndCmdFreqDurationAmp; sndCmd.param1 = 440; sndCmd.param2 = 1000; sndCmd.param3 = sndMaxAmp;

RE: bluetooth connection problem

2003-06-10 Thread Agus Silas
Hi all, I've also started a new project using Bluetooth device ( Socket bluetooth GPS receiver and Tungsten W with Palm BT SD card ), and tried the code found in the documentation the same as follow. Unfortunately I got an error code 0x3108 ( btPortID = 0 ) which is not referenced in the

Sending Data using GPRS on Tungsten W

2003-04-01 Thread Agus Silas
Hi all, I have a problem on sending data from my Tungsten W to my PC Win2000 with ADSL. I've written a small apps with CW8 for Tunsgten W which allow me to send data from the TW to another small apps (Delphi 7) running on Win2000 called NetChat. All NetChat does is listening on it's ADSL IP

Serial pb when Springboard used

2003-02-17 Thread Agus Silas
Hi, I use a VisorNeo with a Magellan GPS Companion springboard extension and I use Code Warrior v8. When I need to transfer data from the Visor to my PC (and vice versa) using a serial dock, I have to disconnect the GPS module from the springboard otherwise the transfer won't work at all. But,

RE: Form title does not update correctly on Handspring visor

2003-02-13 Thread Agus Silas
I use the VisorNeo with PalmOS 3.5.2H3.0 and I use FrmSetTitle to change the form title, but i haven't the problem you encountered. Just one thing, since you have developed the appli for Palm m100 have you tried to add the HandSpring SDK ? Agus Silas

RE: Little Help

2003-02-11 Thread Agus Silas
You're using it the wrongway, I guess that you want to convert second to string so that you can view it ? if so, you should do it this way : StrPrintF ( timeAsString, %02d, dateTime.second ); Cordialement, Agus Silas -Message d'origine- De : [EMAIL PROTECTED] [mailto

RE: Little Help

2003-02-11 Thread Agus Silas
I made a mistake in my last post, you should have something like this : char Buffer[50];// big enough for the whole string StrPrintF ( Buffer, %s:%02d, timeAsString, dateTime.second ); and display Buffer. Cordialement, Agus Silas -- For information on using the Palm Developer

It's christmas time.........

2002-12-24 Thread Agus Silas
Merry merry Christmas to all of you, Cordialement, Agus Silas -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Serial communication and Springboard

2002-12-17 Thread Agus Silas
() ). Curriously I can leave the Companion plugged when I use Hotsync (USB) to synchronize Apps. Is there a trick so that I can isolate the Springboard when I want to use the serial port ? Thanks in advance. Cordialement, Agus Silas -- For information on using the Palm Developer Forums

RE: Project building error

2002-12-11 Thread Agus Silas
function type or argument decoration). Yes, the switch option is set. I've also tried by desactiving this option and I got the same error message. Thanx, Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com 44° 52' 55.70 N - 0° 31

RE: GPRS samples

2002-12-10 Thread Agus Silas
Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com 44° 52' 55.70 N - 0° 31' 54.19 W -Message d'origine- De : [EMAIL PROTECTED

RE: GPRS samples

2002-12-10 Thread Agus Silas
Thanks Steve for your informations... Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com 44° 52' 55.70 N - 0° 31' 54.19 W -Message

RE: Project building error

2002-12-10 Thread Agus Silas
in that directory, only Tools.h and Tools.cpp. During the project building, Tools.cpp is compiled without error. In the project windows : Main.mcp - Source folder : Tools.cpp, MathLib.c, Main.cpp Thanks again Ben, Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97

GPRS samples

2002-12-09 Thread Agus Silas
Hi all, Can someone tell me where I can find any GPRS code samples ? I've tried to find it at Handspring or at PalmSource but I found nothing. A friend told me that the GPRS' SDK is still under developement, is that true ? thanks a lot in advance Cordialement, Agus SILAS

RE: GPRS samples

2002-12-09 Thread Agus Silas
are welcomed... I use CodeWarrior V8.3 and I just downloaded SDK 5.0 Thanks for our light Pietro... Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com 44° 52' 55.70 N - 0° 31' 54.19 W

Form refreshing pb on Visor Neo OS3.5

2002-11-21 Thread Agus Silas
. Please help, Thanks a lot in advance, Good day, Agus Silas -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Accessing the Springboard

2002-11-13 Thread Agus Silas
communication, but I cannot find the right port constant ? Thanks a lot in advance, Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com 44° 52' 55.70 N - 0° 31' 54.19 W

RE: Trailing Char at the end of a Pointer string

2002-10-22 Thread Agus Silas
Isn't null char supposed to '\0' instead of '/0' ? Cordialement, Agus Silas -Message d'origine- De : [EMAIL PROTECTED] [mailto:bounce-palm-dev-forum-51400;news.palmos.com]De la part de Dave

RE: Testing for nan?

2002-10-16 Thread Agus Silas
what about this ? if ( ( 0 abs(value) ) ( abs(value) 1 ) ) { // nan } else { // number } Cordialement, Agus Silas -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]De

RE: calculation goes wrong ...

2002-10-10 Thread Agus Silas
... and don't forget to declare : Int32 p; instead of Int16 p; since Int16 is a 16 bits integer, so max integer is 65536 (unsigned integer). That's why 200 000 in Int16 gives 3392 ( 200 000 % 65536 ) Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97

RE: Struct problem or maybe other problems...

2002-09-25 Thread Agus Silas
pointers in a great book written by Kernighan and Ritchie le langage C ( I guess that you are fench ). It's a reference in C programming. Cordialement/Greeting, Agus Silas -Message d'origine- De

RE: newline in string resource

2002-09-10 Thread Agus Silas
the second argument is a string Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com -Message d'origine- De : [EMAIL PROTECTED

RE: Help with basic serial communication

2002-08-28 Thread Agus Silas
I had to move to the new serial manager for Palm OS 3.5.2 Just one thing, your serial receive TimeOut is set to 1 sec, and I see no loop inside this routine. So, don't you think that it might just miss the data ? Do you use the cradle to transfer data from PC to Palm ? Cordialement, Agus

RE: Convert my olds projetcs from 6.0 (Mac) to 8.3 (WIndows full edition)

2002-08-21 Thread Agus Silas
just fine... Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: CW 8 MacOS 10.2 PalmRez Error

2002-08-19 Thread Agus Silas
all Rebuild your project.., normaly it will work... Sincerely, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com -Message d'origine- De

RE: CW 8 MacOS 10.2 PalmRez Error

2002-08-19 Thread Agus Silas
installed it, try to open the resource project from the constructor without running the IDE. If everythings OK, quit the constructor and you can try to open your project from the IDE... Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst

RE: Convert ascii value to character

2002-07-04 Thread Agus Silas
'; you will get value = 0 (integer) ch = '1'; value = ch - '0'; will give you value = 1 (integer), as if you do 49 (ASCII code for '1') - 48 (ASCII code for '0' ) In C, you don't need to convert them using chr or ord Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F

RE: prc binaries for Mac OS X?

2002-06-27 Thread Agus Silas
Thanks Florent, I, also, have been looking for it since X 10.1... Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com -Message

RE: Object not in form

2002-06-27 Thread Agus Silas
try to catch an item in the current displayed Form, you may get this error. Concerning POSE, I've never used it... Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com

RE: Fatal Error on PalmOS 3.5.2H3.0

2002-06-19 Thread Agus Silas
. Thanks Erik for this clue, I'm going to track this possibility... Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com -Message d'origine

RE: Fatal Error on PalmOS 3.5.2H3.0

2002-06-13 Thread Agus Silas
Thanks Erik for your answer But the target is configured for PalmOS3.1 and later... Cordialement, Agus Silas BST Technologies T. (+33) 5 57 80 16 03 F. (+33) 5 57 77 29 97 http://www.bst-technologies.com