Window Manager needs to chill...

2001-05-17 Thread Ted Lowery
Hi all- I'm working on an application where I have bypassed all the standard window manager functions. I am not using constructor or any of the Palm based windowing routines, I am however using some of the screen drawing routines like WinDrawLine. Anyhow, my app runs fine as long as I stay with

RE: Serial Receive wait function error

2001-05-17 Thread Kapil Konde
Thanks for Reply. I was opening the port successsfully and waiting for a single byte to arrive for (-1)forever time. However my problem has got solved after I replaced the old serial functions by NEW SERIAL MANAGER functions. Thanks, Kapil. -Original Message- From: [EMAIL PROTEC

Re: How to use calloc fuction?

2001-05-17 Thread manikumark
Hi, The functions calloc, malloc, free are part of the ANSI C library and are not used in Palm SDK. You can use MemPtrNew() and MemPtrFree () to replace malloc() and free(), respectively. In case of calloc you can write an inline version that should work similar to the ANSI C function callo

strange codewarrior lite behaviour

2001-05-17 Thread Vikas Amit Singh
hi friends!! code warrior is showing some strange behaviour while debugging an application which uses inetlib calls. like>>> it starts debugging with some other functions having break points, instead of first calling pilotmain.. thanx for any help in advance... vikas -- For information on

How to use calloc fuction?

2001-05-17 Thread eugene_su
I used it with follow code: bmessage=(MQEBYTE *)calloc (n,MQE_SIZEOF(datatype)); but get error follow message: Link Error : MQeDemo.c: 'calloc' referenced from 'MainFormDoMQe' is undefined. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmo

Re: Serial Receive wait function error

2001-05-17 Thread manikumark
Hi Kapil, Your error "Application has written into Low Memory" , occurs in case of mismanaged pointers(trying to write more than allocated space or unallocated space). One probable reason might be desired number of bytes(resbytes) must be less than the current receive queue size(defaul

Serial Receive wait function error

2001-05-17 Thread Kapil Konde
Hi All, I am creating an application for PalmOs3.5 in C++. I am opening the serial port and then calling the SerReceiveWait function to wait for bytes arrive on serial port. When I debug the application the port is successfully opened but for SerReceiveWait function it gives me error Appli

Re: Converting text field to UInt and perform calculations and converting it back.

2001-05-17 Thread Ben Combee
> I have a problem with performing calculations in my application. I want to retrieve a field (String) and convert into UInt type. And then on that converted value perform some simple calculation. and finally convert that UInt type to String and display in my report. How do I go about doing this?

Preventing IR transfer

2001-05-17 Thread Dan
Hello All, I'm pretty new at this, and I have a problem... I am creating a palm application, and I want to prevent this application from being transferred between palms by Infrared... How do I do this??? Thanks in advance Dan -- For information on using the Palm Developer Forums, or to unsub

graphic button

2001-05-17 Thread I am johnny~
Hello~ I use a graphic button, what is "Selected Bitmap" ? Is press bitmap graphic ? but I try it, it's can't show other graphic. If I want made like button up and botton down, how do that? thanks~ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://

Re: Converting text field to UInt and perform calculations and converting it ba

2001-05-17 Thread manikumark
Hi Dev, You can convert the String to UInt and back to String using the functions StrAToI - string to integer StrIToA - Integer to String Example code: char * intext ="123"; char * restext; UInt16 val; val=StrAToI(intext);/* String to UInt16*/ val=val+2;

Re: PalmOS 4.0 and min()

2001-05-17 Thread John Marshall
> SDK 4.0 has the min() and max() macros defined under the header > file PalmUtils.h > you have to include the file in your program > #include Before you do that, you might want to read the comments in PalmTypes.h and escecially those in PalmUtils.h. For example, the part which says thi

Re:Converting text field to UInt and perform calculations and converting it back

2001-05-17 Thread Anuradha J
I could do it this way and it works. Int32 size = 0; // strinf length Int32 i = 0; // character position UInt32 value = 0; // UInt32 value UInt32 pos = 0; // base position size = StrLen(str); for(i = (size - 1);i >= 0;i--){

Converting text field to UInt and perform calculations and converting it back.

2001-05-17 Thread Dev
Hi Friends, I have a problem with performing calculations in my application. I want to retrieve a field (String) and convert into UInt type. And then on that converted value perform some simple calculation. and finally convert that UInt type to String and display in my report. How do I go

RE: Sorting algos

2001-05-17 Thread James Nicholls
Insertion sort give you quick sorts when the list is mostly already sorted. It still has a worse case of O(n^2) like bubble sort, put if you can place the unsorted elements at the end of the list, then the list will sort in speeds approaching O(n). Here's a template for an insertion sort (substit

Re: Sorting algos

2001-05-17 Thread Andrew Francis
On Fri, 18 May 2001, Ng Wei Gee wrote: > Hi all! > > This is not exactly Palm related, but hope someone can help me out. > > I've a partially sorted list and I want to sort it out completely. Which of > these would be the most efficient in this case? > > - quicksort (works well for random list,

Serial Break

2001-05-17 Thread Herbert Valliant
2001/05/17 Dear Listers The device I am interfacing with the Palm, via the serial port, requires an initial exchange of breaks to verify communication. The PDA sends a break and the device responds with a break. This looks doable using SrmControl and SrmGetStatus. Before I start reinventing

Sorting algos

2001-05-17 Thread Ng Wei Gee
Hi all! This is not exactly Palm related, but hope someone can help me out. I've a partially sorted list and I want to sort it out completely. Which of these would be the most efficient in this case? - quicksort (works well for random list, but partially sorted??) - insertion sort (I know very

Re: StrNCat

2001-05-17 Thread Ben Combee
"Phillip Streck" <[EMAIL PROTECTED]> wrote in message news:49695@palm-dev-forum... > Does anyone know why StrNCat is defined with the last variable being the total > length of string, instead of being the number of characters to append.. Because you use StrNCat when you're appending into a strin

Re: Invalid char passed to TxtCharAttr?

2001-05-17 Thread Craig Torell
> I understand that the TxtCharAttr function is being called with a character > that is larger than 0xFF (255). But we don't control any of this code. This > happens during text input into a field. > > Can someone tell me how to stop this from happening? We're running an > English only program,

Re: Not Scrollable error

2001-05-17 Thread Danny Epstein
> Please check the Field MULTIPLELINES Property set in your resource file Exactly. In Constructor, Single Line and Dynamic Size are separate checkboxes. Just to clarify, Single Line indicates that the text shouldn't be wrapped and shouldn't scroll vertically. (It doesn't scroll horizontally, bu

RE: Not Scrollable error

2001-05-17 Thread Manikumar Kandhasamy
HI, Please check the Field MULTIPLELINES Property set in your resource file Thanks Manikumar K Developers' Nation You've got the questions; we've got the answers. Visit Us At :http://www.devnation.net for Palm Developer Supp

Re: Not Scrollable error

2001-05-17 Thread D B
--- [EMAIL PROTECTED] wrote: > HI, > You have set the field Property Single Line in the > Constructor. > Open your Constructor - select the Field Item > 1: Uncheck the Single Line > 2: Check the Dynamic Size actually i'm using the PilRC tools... and i have the field set for dynamicsize not si

Invalid char passed to TxtCharAttr?

2001-05-17 Thread John Crouch
When a user is entering text into a text field in our app (gremlins) we get this error. This happens when running on the OS 3.5 debug rom. I think on the physical unit (Symbol 1740 OS 3.5.2) we get a fatal error with less description. I understand that the TxtCharAttr function is being called w

RE: Basic design issue - Zen Masters, please read...

2001-05-17 Thread Brian Smith
No offense at all! In fact, I had to grin when I read your reply, because you pointed out exactly what I had done - answered my own question! (The Zen thing was to attract attention to my post - and it worked!) Thanks again, Brian > -Original Message- > From: Richard Burmeister [mailto:

RE: StrNCat

2001-05-17 Thread Richard Burmeister
> From: Phillip Streck > > Does anyone know why StrNCat is defined with the last variable > being the total length of string, instead of being the number of > characters to append.. > The reference lists three ways that StrNCat differs from strncat. I think it's just another one of those little

Re: Not Scrollable error

2001-05-17 Thread manikumark
HI, You have set the field Property Single Line in the Constructor. Open your Constructor - select the Field Item 1: Uncheck the Single Line 2: Check the Dynamic Size Save the changes and compile. This will work fine. Thanks Manikumar K -

Custom Font & CW7

2001-05-17 Thread Jamie Macleod
I am trying to use a custom font in my CodeWarrior 7 project. I am following the intructions at www.symbioforge.com/developer.html and www.sergem.net/fontedit/devinfo, but I can't seem to get my Rez file to be added to my project's AppResources. I get the message "". At least one file could not

Re: Not Scrollable error

2001-05-17 Thread David Fedor
>I seem to be having a problem with a scrollbar, when i >enter into the form i'm using i get a >"Field.c Line 6425, not scrollable" fatal warning and >i traced the problem back to the call. > >FldGetScrollValues (fld, &scrollPos, &textHeight, >&fieldHeight); That'll trigger if the field you passe

RE: Basic design issue - Zen Masters, please read...

2001-05-17 Thread Richard Burmeister
> > From: Brian Smith > > > > I guess I have to use a database anyway, to get > > the data back and forth between the Palm and > > the desktop, so maybe I'm just as well off > > using the database all the time... > > > > From: Richard Burmeister > > > What is the sound of one hand clapping? > > Wh

Not Scrollable error

2001-05-17 Thread D B
I seem to be having a problem with a scrollbar, when i enter into the form i'm using i get a "Field.c Line 6425, not scrollable" fatal warning and i traced the problem back to the call. FldGetScrollValues (fld, &scrollPos, &textHeight, &fieldHeight); can anyone explain why this may be happing,

Re: Is DmFindSortPositionV10 broken is PalmOS 4.0?

2001-05-17 Thread Danny Epstein
"Stuart Nicholson" <[EMAIL PROTECTED]> wrote in message news:49677@palm-dev-forum... > However my point is really that I wish Palm would document changes to the > functions as they occur (for example I would have expected a function called > DmFindSortPositionV10 not to have changed in implementat

Re: Shutting Off IR Beaming

2001-05-17 Thread Danny Epstein
> How do you programatically shut off IR beaming? > ...so that while your program is running, it can't be interupted. > (not using pref's panel) Arvind described how to automatically decline incoming beams to your app, but it sounds like you want to disable beam receive entirely while your ap

Re: StrNCat

2001-05-17 Thread Dave Carrigan
"Phillip Streck" <[EMAIL PROTECTED]> writes: > Does anyone know why StrNCat is defined with the last variable being > the total length of string, instead of being the number of characters > to append.. Maybe for the same reason that MemSet reverses args 2 and 3 compared to the standard C library

Re: Strings

2001-05-17 Thread Mark Smith
"Phillip Streck" <[EMAIL PROTECTED]> wrote: >Why is this.. > >char * src = " 12345678" >char dest[4]; > >StrNCopy ( dest, src, 2 ); > >will properly fill dest with with 12 and a null terminator on a debug rom. >but on a release rom it adds in garbage after 12 > >so i called > >StrNCopy ( dest, ""

Regarding API

2001-05-17 Thread Srinivas
hi all, The API which helps to read the .prc file into a variable.is there any way which i am able to read teh .prc file into variable. help will appreciated. thanks srini __ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great pric

RE: Shutting Off IR Beaming

2001-05-17 Thread Rick Gadbois
Arvind, Thank you for responding. What I am interested in supressing is the window that automatically pops up when the IR port is activated by an outside source like another palm. Basically I want to shut off the acceptance completely, like putting tape over the IR port. It sounds like your adv

Strings

2001-05-17 Thread Phillip Streck
Why is this.. char * src = " 12345678" char dest[4]; StrNCopy ( dest, src, 2 ); will properly fill dest with with 12 and a null terminator on a debug rom. but on a release rom it adds in garbage after 12 so i called StrNCopy ( dest, "" ); StrNCat ( dest, src, 3 ); and it works fine.. Phili

StrNCat

2001-05-17 Thread Phillip Streck
Does anyone know why StrNCat is defined with the last variable being the total length of string, instead of being the number of characters to append.. Philip Streck Akron General Medical Center Information Systems -- For information on using the Palm Developer Forums, or to unsubscribe, pleas

Re: Sort does not work consistently (Solved! Thanks!)

2001-05-17 Thread Ed Lineberry
Thanks, Mark! That solved my problem. If I had bothered to read the DmCompareF documentation I could have solved it myself. But I assumed that since it worked on reset that my DmCompareF function was working correctly. I don't even want to know why it did what it did. - Ed "Ed Lineberry" <[

Re: PalmOS 4.0 and min()

2001-05-17 Thread Jamie Macleod
Ahhh. Thanks. Jamie <[EMAIL PROTECTED]> wrote in message news:49679@palm-dev-forum... > > Hi Jamie, >SDK 4.0 has removed the min() and max() macros because they > conflicted with facilities in C++. If you want to use the min and max > you are provided with 2 options. > 1: you have to define

Re: EvtGetEvent is taking too much time !

2001-05-17 Thread Dave Lippincott
I 've never used evtNoWait (I primarily still work with the 3.1SDK) but did use 0 in EvtGetEvent to stop generating nilEvents. In either case, evtWaitForever or evtNoWait should not generate an endless stream of nilEvents. In the 3.5 docs, EvtGetEvent says to pass any number greater than 0. So I

RE: Sort does not work consistently

2001-05-17 Thread Robert McKenzie
I would check that the DmOpenDatabase calls are succeeding. In particular, note that a database already opened for write access can not be opened again (even by the same app) for write access. -bob mckenzie -Original Message- From: Ed Lineberry [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: Compiling PalmRC source

2001-05-17 Thread Makamine
Hi Shane, I've sent a message to our Tools team to see about correcting this. In the interim, I'll see what I can do for you. I'll do this offline. Thanks for the catch on this... Mike Akamine Handspring DTS -Original Message- From: Shane Chhuor [mailto:[EMAIL PROTECTED]] Sent: Wednesd

Re: strange socket connect behavior

2001-05-17 Thread Alfred Wallner
"Ben Combee" <[EMAIL PROTECTED]> wrote: > "Alfred Wallner" <[EMAIL PROTECTED]> wrote in message > news:49612@palm-dev-forum... > > > > I am hoping someone else has seen this: > > I am opening a socket to a webserver and send a GET request eg. > > > > char* request = "GET /cgi-bin/palm.pl?s

Re: Sort does not work consistently

2001-05-17 Thread Mark Smith
"Ed Lineberry" <[EMAIL PROTECTED]> wrote: >static int CompareTimesheet( PackedTimesheet *ts1, PackedTimesheet *ts2, >Int unusedInt, SortRecordInfoPtr unused1, SortRecordInfoPtr unused2, >VoidHand appInfoH ) >{ > int result; > > result = (ts1->date < ts2->date); > > return result; >} I

Re: PalmOS 4.0 and min()

2001-05-17 Thread manikumark
Hi Jamie, SDK 4.0 has removed the min() and max() macros because they conflicted with facilities in C++. If you want to use the min and max you are provided with 2 options. 1: you have to define the functions yourself #define min(a, b) (((a) < (b)) ? (a) : (b)) #define max(a, b) (((a) >

RE: Is DmFindSortPositionV10 broken is PalmOS 4.0?

2001-05-17 Thread Stuart Nicholson
Thanks for the heads up. However I don't have access to the Palm source code. Are these sorts of changes listed in the documentation? They don't appear to be under the DmFindSortPositionV10 description in the PalmOS 4.0 documentation. It is possible that my comparison function is assuming somethi

Re: Is DmFindSortPositionV10 broken is PalmOS 4.0?

2001-05-17 Thread David Fedor
>I am inserting a group of records into a database using >DmFindSortPositionV10. This works as expected under PalmOS 3.0 to 3.5 (yes I >tested them all) but gives me a different sort order under PalmOS 4.0. > >On debugging the code the culprit appears to be DmFindSortPositionV10. For >the same ini

Re: EvtGetEvent is taking too much time !

2001-05-17 Thread Daniel Morais
Jeudi 17 Mai 2001 15:19, Dave Lippincott a écrit: > If you set 0 as the time out parameter (which happens to be wait forever), > EvtGetEvent will not return a nilEven unless the UI has generated it. That's not correct : if you look at SysEvent.h, you will see that evtWaitForever is set to -1, 0

RE: Basic design issue - Zen Masters, please read...

2001-05-17 Thread Brian Smith
Bob, Sounds like a good approach. My total data structure for a patient would be less than than 150 bytes, to the cost in doubling the memory is insignificant. The app works with only one patient at a time, at least initially. (I could eventually have it read each patient's data from a db with al

Sort does not work consistently

2001-05-17 Thread Ed Lineberry
I know I am missing something simple, but the more I look at this, the more I can't understand why it doesn't work. I have a DmCompareF function (see code at the bottom), and I call DmQuickSort at three points in my application: when a record is saved, when the app is reset, and when the app rec

RE: Basic design issue - Zen Masters, please read...

2001-05-17 Thread Brian Smith
From: Richard Burmeister > What is the sound of one hand clapping? > What is the sound of one man answering himself? :) Sometimes it just helps to talk out a problem, you know? Or in this case, just typing it out. (I interpret your reply to mean that using a database is the right way to go...)

PalmOS 4.0 and min()

2001-05-17 Thread Jamie Macleod
I upgraded CodeWarrior 7.0 to the 4.0 SDK and now I am getting one compile error were I use the min() function. The rest of my project compiles fine. The error is "Error: function has no prototype". Any suggestions? Jamie -- For information on using the Palm Developer Forums, or to unsubsc

Is DmFindSortPositionV10 broken is PalmOS 4.0?

2001-05-17 Thread Stuart Nicholson
I am inserting a group of records into a database using DmFindSortPositionV10. This works as expected under PalmOS 3.0 to 3.5 (yes I tested them all) but gives me a different sort order under PalmOS 4.0. On debugging the code the culprit appears to be DmFindSortPositionV10. For the same initial r

Re: Country Setting

2001-05-17 Thread Ken Krugler
>I was just wondering about the default for the country settings in the >'Welcome' application on a palm. When one starts up a new palm, weather it >be via the emulator or via a real palm device, and if one starts the >'Welcome' application when you get to page 3 or the 'Setup' the country is >alw

Re: lookup tAIN resources using SysCreateDataBaseList

2001-05-17 Thread Ken Krugler
>Hi! I am using SysCreateDataBaseList to get a listing of all 'appl' type >databases on the device and I am setting the lookup name flag to true. For >some reason all the names in the database list are still using the database >name instead on the tAIN resource. Is there something else I must d

how to read............

2001-05-17 Thread Srinivas
hi, How to load .prc file into a variable. I need this to divide the file into packets and send through tiny TP. thanks Srini --- Srinivas <[EMAIL PROTECTED]> wrote: > hi, >Any body can tell me how the hot sycn will load > the > .prc file from PC t handled. I mean how it writes on > to

RE: Shutting Off IR Beaming

2001-05-17 Thread Arvind Aprameya.
Hi Rick, In Palm OS 3.5 and higher the pop-up list is only displayed if you handle the launch code and call ExgDoDialog directly. The application can respond to this launch code by setting the result field in the parameter block to the appropriate value. If it wants to allow the exchange manager

Re: Found Bugs in UIPickColor

2001-05-17 Thread Mike McCollister
Ben, Yes it is on the m505 ROM. Mike McCollister --- Ben Combee <[EMAIL PROTECTED]> wrote: > > 2) If I am in a 16-bit screen depth mode and call > > UIPickColor and then exit, the form below it is > not > > redrawn. I do respond to the frmUpdateEvent, just > if > > you are curious. > > Is thi

about hotsync

2001-05-17 Thread Srinivas
hi, Any body can tell me how the hot sycn will load the .prc file from PC t handled. I mean how it writes on to the memory.can anybody help me out. help will appeciated thanks srini --- Marcelo Gorini <[EMAIL PROTECTED]> wrote: > Check the example Beamer that comes with the SDK, > there i

Re: Warning on SDK 3.5 for incompatible pointer type

2001-05-17 Thread Seeley, Steve E
Thanks Scott, Manikumar & Richard, I see my problem. I was blindly changing all Words to UInt16s and still referencing old 3.0 documentation to boot. Thanks again, Steve -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/te

Shutting Off IR Beaming

2001-05-17 Thread Rick Gadbois
How do you programatically shut off IR beaming? ...so that while your program is running, it can't be interupted. (not using pref's panel) -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Is there a way to block the access to HotSync on the PALM

2001-05-17 Thread Fabrice Meichtry
Hello, I was just wondering if it was possible to block the acces to HotSync for the user. In fact, I just wish that the HotSync evenement is launched by my application and don't wish that the user can do this from the main menu.. Any idea ?? Fabrice -- For information on using the Palm

Re: strange socket connect behavior

2001-05-17 Thread Ben Combee
"Alfred Wallner" <[EMAIL PROTECTED]> wrote in message news:49612@palm-dev-forum... > > I am hoping someone else has seen this: > I am opening a socket to a webserver and send a GET request eg. > > char* request = "GET /cgi-bin/palm.pl?s0=xyz&s1=xyz HTTP/1.0 \r\n\r\n"; > int len = strlen(request);

Re: Found Bugs in UIPickColor

2001-05-17 Thread Ben Combee
> 2) If I am in a 16-bit screen depth mode and call > UIPickColor and then exit, the form below it is not > redrawn. I do respond to the frmUpdateEvent, just if > you are curious. Is this on a 4.0 m505 ROM? There was a bug like this on the Palm OS 3.5.2 Handspring Visor Prism which is fixed by

Re: Debug Manager

2001-05-17 Thread Ben Combee
"Ng Wei Gee" <[EMAIL PROTECTED]> wrote in message news:49625@palm-dev-forum... > > Hi, > > > I've never heard of a "Debug Manager". Are you talking about the Error > > Manager? > > No, it's the Debug Manager. Type DbgMessage in one of your CW projects, then > right click the fn and go to definitio

Re: _ldiv_,.. link problems

2001-05-17 Thread Ben Combee
"nabil mellal" <[EMAIL PROTECTED]> wrote in message news:49622@palm-dev-forum... > > hi, > I'm writing a shared library where I have : > > typedef long int tui32; > > I keep getting _ldiv_ , _lmul_ ,... link problems. > > In my settings the floating point is managed by palmos. These are the i

Connection with ScoutSync to iConnect Consolidator

2001-05-17 Thread Tomek Stephan
Hello I try to establish an Replication from a 4 slot Ethernet cradle over ScoutSync to iConnnectConsolidator to OracleDB. Is anybody experienced with this situation? I speend a lot of time hanging from one problem to the other. Thanks -- For information on using the Palm Developer Forums,

RE: Development Rates

2001-05-17 Thread jay bee
Does anybody know of a recruitment agency / online cv database in the uk or europe specializing in palm developers? -Original Message- From: Nick Furno [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 10:53 PM To: Palm Developer Forum Subject: RE: Development rates >>At 3:06 PM -0

RE: how to stop an event

2001-05-17 Thread Marcelo Gorini
Check the example Beamer that comes with the SDK, there in the PilotMain you can see how to do that. Regards, Marcelo -Original Message- From: Srinivas [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 17, 2001 9:19 AM To: Palm Developer Forum Subject: how to stop an event hi all, I wa

Re: EvtGetEvent is taking too much time !

2001-05-17 Thread Dave Lippincott
If you set 0 as the time out parameter (which happens to be wait forever), EvtGetEvent will not return a nilEven unless the UI has generated it. NilEvents are not generated while the pen is on the screen. What you may want to do (since you need to trigger on events often) is to look at all event

how to stop an event

2001-05-17 Thread Srinivas
hi all, I want to stop the dialog saying "Accept" or "Cancel" when i beam a database. How to handle that event not to come and how to launch an app automatically as soon as i beam the database on the other device. Help will be appreciated thanks srini --- Vadim Tishkevitch <[EMAIL PROTECTED]

Found Bugs in UIPickColor

2001-05-17 Thread Mike McCollister
Hi, I just found a couple of bugs when I use the UIPickColor routine. 1) When I call it like this UIPickColor(NULL, &lastRGBColors, UIPickColorStartRGB, "Palm Color Picker", NULL), it brings up the sliders with out the Palette or RGB selection. However, if I press the page up or page down butt

Question about syncing comma separated file

2001-05-17 Thread Stringer
>Subject: Question about syncing comma separated file >From: "Dean Rochester" <[EMAIL PROTECTED]> >Date: Wed, 16 May 2001 17:28:50 -0400 >I have a database application I am writing and the data comes > to the Palm device as a comma separated file. >The problem I have is that the columns of data

variables overwriting each other

2001-05-17 Thread Stringer
>Subject: variables overwriting each other. >From: Jaydee <[EMAIL PROTECTED]> >Date: Wed, 16 May 2001 10:21:06 -0700 (PDT) >I'm having some really weird stuff going on with >character pointers and UInt arrays: > Char * working; > UInt16 done2[25]; >//snip > StrToLower(working,word); > len = S

Re: how can i assign application to hard button

2001-05-17 Thread Vadim Tishkevitch
found it in Preferences.h Vadim Tishkevitch wrote: > how can i assign application to hard button from > my programm (like button preferences panel) > or where this info is saved? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/te

Re: NetLib Question

2001-05-17 Thread Jay Sujee
--- Avinash R S <[EMAIL PROTECTED]> wrote: > Hi All , > > I had been trying from a long time to use NetLib > connection but without > success. I will tell my resources and requirement. > I want a program on my emulator to open a port and > send some string to some > desktop application which wi

how can i assign application to hard button

2001-05-17 Thread Vadim Tishkevitch
how can i assign application to hard button from my programm (like button preferences panel) or where this info is saved? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: Debug Manager

2001-05-17 Thread Ng Wei Gee
Hi, > I've never heard of a "Debug Manager". Are you talking about the Error > Manager? No, it's the Debug Manager. Type DbgMessage in one of your CW projects, then right click the fn and go to definition. Hey presto! You are brought to the debug manager's include file. Regards, Gee. -- For

_ldiv_,.. link problems

2001-05-17 Thread nabil mellal
hi, I'm writing a shared library where I have : typedef long int tui32; I keep getting _ldiv_ , _lmul_ ,... link problems. In my settings the floating point is managed by palmos. Does anyone ever faced this problem. thank you. -- For information on using the Palm Developer Forums, or t

Re: Debug Manager

2001-05-17 Thread Pietro F. Maggi
I've never heard of a "Debug Manager". Are you talking about the Error Manager? Best regards Pietro -- The pawn is the most important piece on the chessboard... up to the pawn. "Ng Wei Gee" <[EMAIL PROTECTED]> ha scritto nel messaggio news:49594@palm-dev-forum... > > Where can I find the docs (

Re: Load data into a list

2001-05-17 Thread Juan de Dios Santander Vela
Store a pointer to each instance of the struct as the list text, and use a custom LstDrawProcedure to draw the member data you need... - Original Message - From: "dhanushka jayakody" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Wednesday, May 16, 2001 8:53 PM Su

Re: Question about syncing comma separated file

2001-05-17 Thread Juan de Dios Santander Vela
Use the database appInfo block to send a number of fields, and posibly data types... - Original Message - From: "Dean Rochester" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Thursday, May 17, 2001 4:29 AM Subject: RE: Question about syncing comma separated file

strange socket connect behavior

2001-05-17 Thread Alfred Wallner
I am hoping someone else has seen this: I am opening a socket to a webserver and send a GET request eg. char* request = "GET /cgi-bin/palm.pl?s0=xyz&s1=xyz HTTP/1.0 \r\n\r\n"; int len = strlen(request); if(send(socketfd,request,len,0) == -1) ... read response When my request string is 91 bytes o

Re: how to implement sync.

2001-05-17 Thread Jim Cooper
> You can use VC++ or VB or write in plain ol C Or Delphi, or Borland C++ Builder or anything else that can use ActiveX controls and create a dll. Cheers, Jim Cooper _ Jim Cooper [EMAIL PROTECTED] Tabdee Ltd http://www.tabdee.ltd.uk Turb