launch Hotsync from one application.

2000-12-20 Thread jose luis garcia
How can I launch th hotsycn from my application and When the hotsync is complete. it returns to the hotsync application screen where you would click to 'do' the hotsync. thanks.. _ Get Your Private, Free E-mail from MSN Hot

file "txt" in palm

2001-01-02 Thread jose luis garcia
Hello. How can I use files "txt" with codewarrior ? write,read... thanks. _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. -- For information on using the Palm Developer Forums, or to unsubscri

Re: Memory Manager Null Handle

2001-01-16 Thread jose luis garcia
Hola Emilio. Tu problema lo mas seguro es que sea un handle que has creado con un espacio que no es suficiente para almacenar datos. Una pregunta : Programas con el codewarrior R6 for palm ? si es asi donde puedo conseguirlo.? es que mi programa excede de 64 K y estoy usando el lite codewarr

launch application after hotsync

2001-01-30 Thread jose luis garcia
Hello. I made a program with lite codewarrior, and I want to launch my application when the hotsync is complete after to push the cradle´s button. How can i do ? thanks... _ Get Your Private, Free E-mail from MSN Hotmail a

double to string routine , string to double routine

2001-02-24 Thread jose luis garcia
Hello. I´m looking for " double to string routine " and "string to double routine". How can i do it ?. thanks... _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. -- For information on usin

string to double , double to string routines

2001-02-24 Thread jose luis garcia
Hello. How can i convert an double to string and a string to double ? thanks _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. -- For information on using the Palm Developer Forums, or to un

problem with SysBatteryInfo in codewarrior 7.0

2001-03-28 Thread jose luis garcia
Hello. I'm programming with codewarrior 7.0 ,and I have one problem with the a function "SysBatteryInfo". The program's source is: SysBatteryKind kind; UInt16 voltage, warn, critical, timeout; UInt8 percent; Boolean plugged; voltage = SysBatteryInfo(false, &warn, &

disable buttons

2001-04-10 Thread jose luis garcia
Hello. I am making one program with codewarrior 7.0 . and I want disable all buttons of the palm (calculator,launcher..) How can i do it? thanks.. _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

conector macho - RS232 palm

2001-04-20 Thread jose luis garcia
Hello. I need one cable to connect the palm Vx with a machine by RS232 . I have one "Palm V HotSync cable" but the conector is female . How can i make one cable with conector macho ? thanks.. _ Get Your Private,

remainder

2001-04-25 Thread jose luis garcia
Hello I need to know the remainder of (number1 / number2) where number1 and number2 there are doubles. Is there same function for that in the codewarrior 7.0 ? thanks _ Get Your Private, Free E-mail from MSN Hotmai

remainder

2001-05-18 Thread jose luis garcia
Hello. How can i know the remainder (double x/double y)? .I copied the function "fmod" of mathlib but I get one error in the program "fatal error". thanks. _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotma

RE: remainder

2001-05-18 Thread jose luis garcia
> >Subject: RE: remainder >Date: Fri, 18 May 2001 12:30:27 -0400 > >Wont x % y do it? > >-Original Message- >From: jose luis garcia [mailto:[EMAIL PROTECTED]] >Sent: Friday, May 18, 2001 12:31 PM >To: Palm Developer Forum >Subject: remainder > > >Hello

wireless

2001-05-21 Thread jose luis garcia
Hello. I would like to know more about "SpringPort Wireless Ethernet module" we want to make one program that can exchange information between one palm and one central database. Some idea ? thanks. _ Get Your Private, Fre

RE: remainder

2001-05-22 Thread jose luis garcia
ubject: RE: remainder >Date: Fri, 18 May 2001 12:30:27 -0400 > >Wont x % y do it? > >-Original Message- >From: jose luis garcia [mailto:[EMAIL PROTECTED]] >Sent: Friday, May 18, 2001 12:31 PM >To: Palm Developer Forum >Subject: remainder > > >Hello. >

Re: How to print from palm Irda ?

2001-07-11 Thread jose luis garcia
Hello. You can use "palmprint" from your source code to print for irda. go to "www.stevenscreek.com" and"www.stevenscreek.com/pilot/palmprintdev.html" Abur.. >From: "I am johnny~" <[EMAIL PROTECTED]> >Reply-To: "Palm Developer Forum" <[EMAIL PROTECTED]> >To: "Palm Developer Forum" <[EMAIL

palm and cradle...

2001-12-26 Thread jose luis garcia
hello. How can i Know that the Palm is in the cradle for software? , Is there same source for that? thanks.. _ Chat with friends online, try MSN Messenger: http://messenger.msn.com -- For information on using the Palm Develope

Re: Need help calcing float(double)

2002-01-22 Thread jose luis garcia
Hello. you can´t use StrAtoI because "1.05" is a real no integer, you can use "strToDouble" Espero que te sirva de ayuda ... Adios!!! ej. /**/ double numero; char cadena[15]; StrPrintF (cadena,"%s","1.05"); numero = strToDouble(cadena); /*

Re: FloatManager

2002-05-09 Thread jose luis garcia
you can use the numbers with "strings" ... so you can works with floats,double,integers because in really are strings. Ej. the number 3.5500 is a double. you can pass a the number a string "3.55" rouding two decimals . After passing string to double to operations..+,*,.. I

Re: UInt16? UInt32? What is this?

2002-07-10 Thread jose luis garcia
heyo . UInt16 is a unsigned integer with size two bytes and the range is: 0...65535 UInt32 is a unsigned integer with size four bytes and the range is: 0...4294967295 saludos... >From: "Régis Daniel de Oliveira" <[EMAIL PROTECTED]> >Reply-To: "Palm Developer Forum" <[EMAIL PROTECTED]> >To: "P

Re: convert a Int in Hexa

2002-07-25 Thread jose luis garcia
Hola . there is a function: "StrIToH" Purpose Convert an integer to hexadecimal ASCII. + Prototype Char* StrIToH (Char* s, UInt32 i) + Parameters s String pointer to store results. i Integer to convert. Resu

Re: Problemas con el constructor, de nuevo (2)

2002-08-31 Thread jose luis garcia
na (que el castellano es mas fácil.) > >PD: Eres José Luis de Madrid ex-apple? > > > > - Original Message - > > > From: "jose luis garcia" <[EMAIL PROTECTED]> > > > To: "Palm Developer Forum" <[EMAIL PROTECTED]> > > > Sent: Fri

Re: Bug in FloatToString

2002-09-04 Thread jose luis garcia
Hola you can use this function: void doubleToStr (char *str,double flpNumber,Int numFractDigits) EJ: double var1; string numero[10]; doubleToStr(numero,var1,2); void doubleToStr (char *str,double flpNumber,Int numFractDigits) {

Ircomm ,I can send but no receive

2003-10-12 Thread jose luis garcia
hello. I had code that worked with serial cable direct cable connection between Palm and remote device But what I really need was an IR connection between Palm and device. IrComm should give a virtual serial cable over an IrDA but after connection was established I could only send to remote dev

Ircomm

2003-10-12 Thread jose luis garcia
search listname Ircomm _ Charla con tus amigos en línea mediante MSN Messenger: http://messenger.microsoft.com/es -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/suppo

Ircomm ......

2003-10-12 Thread jose luis garcia
hey I had code that worked with serial cable direct cable connection between Palm and remote device But what I really need was an IR connection between Palm and device. IrComm should give a virtual serial cable over an IrDA but after connection was established I could only send to remote device-

ircomm send but not receive

2003-10-13 Thread jose luis garcia
Hola I had code that worked with serial cable direct cable connection between Palm and remote device But what I really need was an IR connection between Palm and device. IrComm should give a virtual serial cable over an IrDA but after connection was established I could only send to remote device-

Re: (newbie) question about Palm's databases

2003-10-13 Thread jose luis garcia
Hola. Lo que actualiza las bd del palm son unos programas llamados "conduits" ,que se encargan de pasar los datos del pc -palm y del palm-pc al sincronizar. Tendrías que crear un conduit para tu propia bd. Tienes documentacion : http://www.palmos.com/dev/support/docs/conduits/win/ From: "Rica

launch hotsync from PC

2003-11-19 Thread jose luis garcia
Hello. I just want to launch my hotsync from a button on my PC screen (hotsync between Palm device and PC). how can i do ? thanks _ Dale rienda suelta a tu tiempo libre. Encuentra mil ideas para exprimir tu ocio con MSN Entretenimie

RE: GetStringFromDouble

2004-01-21 Thread jose luis garcia
Hello . Use this function. void doubleToStr (char *str,double flpNumber,Int numFractDigits) { long longNumber; double flpIP,zeros,round; int i,strLen,remainder; char sign=' '; if (flpNumber<0.0) { flpNumber=-flpNumber; sign='-'; } zeros =1.0; for (i=0;i round=0.5/zeros; flpNumb

Re: please help! Split String in c

2004-02-15 Thread jose luis garcia
hello. char *str; the string Is a array the chars n1=str[0]; n2=str[1]; n3=str[2]; n4=str[3]; From: "David A. Desrosiers" <[EMAIL PROTECTED]> Reply-To: "Palm Developer Forum" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Subject: Re: please help! Split S