Re: StrNCat bug--truncate at 2048?

2003-09-08 Thread Greg Lutz
At 12:38 PM 9/7/2003, Hal Mueller wrote: I ran into a situation where StrNCat was refusing to add anything to a destination string if the destination length exceeded 2048 characters. The destination buffer has plenty of space. After looking at the 3.5 source for StrNCat, I believed at first

Re: New:Derived class problems in the shared library????

2003-09-08 Thread SaradhiDV
Hi Ben Chris, I cud identify the simple mistake i hav done. Anwys thanx a lot for replying even for such a small simple mistake. As of the limitations for implementing the classes in shared librarires like non virtual support n all i will stick to static libraries even for the windows dlls

Re: Palm OS vs. Windows CE

2003-09-08 Thread Markus Dresch
You can't change the color of a single control on a form without changing the colors of all the controls of the same type on that form? Field controls in the Palm OS don't support centered text? Can someone confirm these are true and also does anyone know if Windows CE has these features?

serial manager for Palm

2003-09-08 Thread Dhanashri K
Hello , Is there any difference between the serial manager behavior on Palm OS 4.1 and Palm OS 5.0 ? I am not able to send / receive chars on a Sony CLIE machine running Palm OS 5.0 . It gives me serial line errors instead . but the application works fine on a Palm OS 4.1 device . Also , has

Re: How to close a conection?

2003-09-08 Thread Aaron Yang
Put NetLibClose in do...while loop to close your NetLib. Exist loop after closing succeed. Alexandre Barreto [EMAIL PROTECTED] ??? news:[EMAIL PROTECTED] ???... i need tahta my program close the conection after doing everthigng it is suposed to do but after doing everthing.. and close the

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é :

Dial phone

2003-09-08 Thread Duc Dang
Hi all, I want to build a dial phone app but I do not know how begin. Please, tell me any idea or doc, examples...ect Thanks, Duc -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

serial port simulation

2003-09-08 Thread Dhanashri K
Hello , I want to test my serial application on a new Sony CLIE device running Palm OS 5.0 but I don't have the serial cable with me . Is there anyway by which I can simulate the serial port within the device so that I don't actually need to connect the external device for testing my

Unable to get certificate version using SSL API

2003-09-08 Thread rajan
I am unable to extract the certificate version information using the following code. I always get 0 for the certificate version while the expected value is 2 (in most cases). int i=0; Int8 *ptr; err = SslContextGet_PeerCert(sslLibRef,context,cert ); if(cert != NULL) {

Re: Dial phone

2003-09-08 Thread Markus Reichart
Duc Dang schrieb: I want to build a dial phone app but I do not know how begin. Please, tell me any idea or doc, examples...ect Search http://kb.palmsource.com/ for HelloPhone Best greetings from germany Markus -- For information on using the Palm Developer Forums, or to unsubscribe, please

Re: list of network services

2003-09-08 Thread Gearoid Murphy
Take a look at http://www.whizoo.com/index.php or www.petereaston.com if you're willing to spend a few bob. I've asked a similar question quite a few times (i.e. how to programmatically change the current network service) and never really got an answer. Ger From: Jim [EMAIL PROTECTED]

Palm Simulator

2003-09-08 Thread Deepak TVS
Hi all, I am using the simulator for debugging. Where does the VFSFileOpen search for files when using the simulator. It has been given that Palm OS 5 Simulator supports expansion cards, but I am unable to figure out in which directory the files should be stored so as to access them using

Re: serial manager for Palm

2003-09-08 Thread Dave Lippincott
If you use the new serial manager APIs there should be no difference. Just remember the Clie line does not have a RS232 port. They have a TTL logic level port controlled by a serial UART. If the device you plant to 'talk' with requires RS232, you will need to add a line level driver to the

Re: Waking up device

2003-09-08 Thread Dave Lippincott
This doesn't wake the device, it just keeps it from entering sleep mode (power off). Alarms are the only way I know of to wake a sleeping unit. Why can't you use them anymore? - Original Message - From: Matt Revenaugh [EMAIL PROTECTED] Newsgroups: palm-dev-forum To: Palm Developer Forum

Internal NAN representation for double

2003-09-08 Thread Luc Le Blanc
I want to set a double to an undefined value for later detection. Mathlib comes with a isnan API, but how do I set a double as a NAN? All 1's? This does not seem to work. -- Luc Le Blanc -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Developing a launcher

2003-09-08 Thread Lance Gregory
Hi. I have seen a lot of PalmOS launchers out there. Is there a place I could go to learn how to do this myself? Thanks, Lance -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

serial cable for CLIE

2003-09-08 Thread Dhanashri K
Hello , I want to run my serial application on Sony CLIE PEG-TG50/U device running on Palm OS 5.0 , but I am not finding a suitable serial cable for the same . Where can I find a serial cable for this device ? and what will be its compatibility with respect to other series of CLIE devices ?

How to pop up the symbol dialog in application on Tungsten C?

2003-09-08 Thread Xing Jin
Hi all, As Tungsten C use keyboard and only pop up symbol dialog when special symboles are needed. It seems it only works on Palm buildin controls such as Field, is there any function or event for poping up the dialog anytime when application needs it? Thanks, Xing Jin -- For information on

link error in a c++ shared library

2003-09-08 Thread Eric Potter
I have some code that compiled fine in a standard c++ application, but when I moved it to a shared library, I got a link error that says: Cursor.cpp: 'operator delete(void*)' reference from 'Entry::~Entry()' is undefined. Why is this happening? thanks -- For information on using the Palm

Re: Internal NAN representation for double

2003-09-08 Thread Greg Lutz
At 06:50 AM 9/8/2003, you wrote: I want to set a double to an undefined value for later detection. Mathlib comes with a isnan API, but how do I set a double as a NAN? All 1's? This does not seem to work. The Java value Double.NaN displays as 0x7FF8. -- For information on using the

Re: Internal NAN representation for double

2003-09-08 Thread Luc Le Blanc
Greg Lutz a écrit : At 06:50 AM 9/8/2003, you wrote: I want to set a double to an undefined value for later detection. Mathlib comes with a isnan API, but how do I set a double as a NAN? All 1's? This does not seem to work. The Java value Double.NaN displays as 0x7FF8. Can you

CW 9.2

2003-09-08 Thread Chris Apers
Hi, Any news about the release date ? Thanks Chris -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

notification manager

2003-09-08 Thread Lance Gregory
Where is the best place to put your notification register functions? I have read the documentation and it doesn't say. Lance -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Bluetooth Debugging

2003-09-08 Thread Nicholas Pleis
I've seen a vague mention of someone sucesfully debugging across Bluetooth to a TG50. I've spent a little bit of time playing with trying to get this going, with no luck. The problem is not on the desktop side, but on the Palm side. Is there a way to 'trick' the unit into thinking that the

Re: Internal NAN representation for double

2003-09-08 Thread Greg Lutz
At 08:57 AM 9/8/2003, Luc Le Blanc wrote: Greg Lutz a écrit : At 06:50 AM 9/8/2003, you wrote: I want to set a double to an undefined value for later detection. Mathlib comes with a isnan API, but how do I set a double as a NAN? All 1's? This does not seem to work. The Java value Double.NaN

bluetooth error

2003-09-08 Thread paco flaco
Hello everyone. I'm programming an api in wich I have to communicate by bluetooth (serial manager) with several devices, one of them is a Sony-Ericsson T68i. With other devices I have no problem, but with the mobile I can't open the port, I get the error 780: New error codes for USB support

HostFEOF() doc error?

2003-09-08 Thread dennis
It appears that the documentation for HostFEOF() (in the 'Host Control API Reference' section in the Using Palm OS Emulator manual)is incorrect. It states: Returns 0 if the specified file is at its end, and a non-zero value otherwise. But I observe the opposite behaviour. I.e.,

RE: notification manager

2003-09-08 Thread LionScribe
It depends which notifications and what you need it for.. Usually just put it in your AppStart function. LionScribe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Lance Gregory Sent: Monday, September 08, 2003 12:12 PM To: Palm Developer Forum Subject:

Re: Is there something wrong with this forum?

2003-09-08 Thread ThuNguyet Nguyen
Hi, I check the messages from escribe. At the bottom of the page, it said Downloading entire archives is a violation of eScribe's site usage policies. Any such attempts will result in your permanent restriction from accessing this site. In red. So, if you use escribe, may be you can't download

Re: Developing a launcher

2003-09-08 Thread colmerauer2003
Hi Gregory, I manage to do my own Launcher by using a simple sample provided with HB++; See the MiniLauncher sample. Bye Colmerauer Lance Gregory [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi. I have seen a lot of PalmOS launchers out there. Is there a place I could go to learn

Using pdbs on Expansion Cards

2003-09-08 Thread Steve Jerrett
I am working on a project for our Joint Communications (911) manager who needs certain information and an application to access it on his Palm device. The data is very simple, consisting of one numeric (UInt32 will suffice) and three variable length text fields. Unfortunately, the number of

Re: HostFEOF() doc error?

2003-09-08 Thread John Marshall
On Mon, Sep 08, 2003 at 12:22:06PM -0500, [EMAIL PROTECTED] wrote: [HostFEOF()] Returns 0 if the specified file is at its end, and a non-zero value otherwise. But I observe the opposite behaviour. I.e., HostFEOF() returns 0 is *not* at end and non-zero if at end. Can somebody

Re: serial port simulation

2003-09-08 Thread Brad Figler
You can tell the simulator and emulator to simulate a serial connection over TCP/IP. I do this to test my software, but I have found it very flaky on the emulator. I don't see any problems on the simulator. ~Brad Dhanashri K wrote: Hello , I want to test my serial application on a new Sony

RE: Using pdbs on Expansion Cards

2003-09-08 Thread LionScribe
Palm OS Programming Bible 2nd Edition has a whole chapter on secondary storage (Chapter 15) LionScribe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steve Jerrett Sent: Monday, September 08, 2003 1:58 PM To: Palm Developer Forum Subject: Using pdbs on

CW/PiLRC automatic build number?

2003-09-08 Thread Brad Figler
All, Is there a way to setup an auto incremented build number in pilrc or CW? Any suggestions on managing builds using the CW development IDE? Basically, what I want to do is automatically increment a label/number somewhere in the project that will brand the version of code that gets

Re: Differences between Palm Emulator and real hardware

2003-09-08 Thread Keith Rollin
At 11:29 AM +0100 9/7/03, Ben Summers wrote: I've made a few changes to the way my application works, and added save behind to all my forms, and now it seems to be working fine. Make sure to uncheck that option and retest. Your application should still work without drawing problems. If it

Re: link error in a c++ shared library

2003-09-08 Thread Ben Combee
At 10:07 AM 9/8/2003, Eric Potter wrote: I have some code that compiled fine in a standard c++ application, but when I moved it to a shared library, I got a link error that says: Cursor.cpp: 'operator delete(void*)' reference from 'Entry::~Entry()' is undefined. Why is this happening? Shared

Re: CW 9.2

2003-09-08 Thread Ben Combee
At 10:59 AM 9/8/2003, Chris Apers wrote: Hi, Any news about the release date ? We have released the second beta, and so far, have gotten two bug reports that require a fix. We don't plan on doing another beta run, but we're going to wait another week or so for any other reports to come in.

Re: CW/PiLRC automatic build number?

2003-09-08 Thread Ben Combee
At 01:25 PM 9/8/2003, Brad Figler wrote: All, Is there a way to setup an auto incremented build number in pilrc or CW?Any suggestions on managing builds using the CW development IDE? Basically, what I want to do is automatically increment a label/number somewhere in the project that will

Wireless PRC Update

2003-09-08 Thread Matt Graham
Our product has to be able to be updated wirelessly. Has anyone done this before and how have you done it? Right now we're thinking about having a separate PRC that does the updating but then we're having the problem of also having to be able to update the update PRC. This is all doable but I'm

Limite of Constructor 1.9 ?

2003-09-08 Thread Regis St-Gelais
I have a fairly big resource file: .rsrc file size: 582K in the resource.frk folder 71 Forms 1 Alerts 2 Menu Bars 8 Menus 1 String Lists 2 App Icon Families 305 Bitmap Families 471 Bitmaps 1 icons As soon as I add 1 item un any of my forms, constructor is not able to save the file. I get Unable

Re: CW 9.2

2003-09-08 Thread Luc Le Blanc
Ben Combee a écrit : At 10:59 AM 9/8/2003, Chris Apers wrote: Hi, Any news about the release date ? We have released the second beta, and so far, have gotten two bug reports that require a fix. We don't plan on doing another beta run, but we're going to wait another week or so for any

RE: Wireless PRC Update

2003-09-08 Thread Mark Cameron
Matt, We use a 3rd party tool called Asta Skywire (www.astawireless.com). It handles a lot of the heavy lifting, especially if you need to have multiple users accessing a central database simultaneously. I can't say enough good things about them, both in terms of their product and their tech

RE: Limite of Constructor 1.9 ?

2003-09-08 Thread Eric Cloninger
I seem to recall that the MacOS resource manager (upon which Constructor is built) has a soft limit of around 2200 resources per file. A constructor file may use more than one MacOs resource per Palm resource, you maybe running into such a limit. I may be remembering incorrectly and I no longer

RE: Limite of Constructor 1.9 ?

2003-09-08 Thread Keith Rollin
The Mac OS Resource Manager limit is 2727 resources, IIRC. I would characterize it more as a hard limit than a soft limit. The OP only has, what, 862 resources? I don't think he's getting close to the Mac OS limit, even with any hidden Constructor meta resources. As well, he's talking about

Re: Limite of Constructor 1.9 ?

2003-09-08 Thread Regis St-Gelais
I Keith and Eric, There is a limit of 99 item on a form but it is not the problem I have righ now. I did some tests: The state of my file is as follow. I have room to add about 4 or 5 items. for example, I can add a new form - save is ok add 2 items on this new form - save is ok add 1 more

DataTypes and Databases

2003-09-08 Thread Régis Daniel de Oliveira
Hy all! On this weekend, i've got on a mistake about the types of data that i can write to a database (PDB). I was using to write only Chars into my Records, and, now, i know that i can write any type of data (UInt16, UInt32, Boolean, float, etc). Doing this, i don't need to convert the values

MaxChars not working!?!?

2003-09-08 Thread nmailey
I've set (in PilRC) the MaxChars on an Editable, Numeric field to 7, but when running in the Emulator it allows more than 7. I'm going to test it on the actual device, but this worries me? Any thoughts?!?! Nole Mailey Data Conversion Specialist ProfitMaster Canada 1.800.340.4492

RE: DataTypes and Databases

2003-09-08 Thread dennis
I recommend using the correct data type, as you put it. You can always use a dev. tool to inspect your DB during development, so a clear text form of the data is only marginally helpful. On the other hand, a smaller amount of data will speed-up the hot-syncing process, coserving both time,

RE: HostFEOF() doc error?

2003-09-08 Thread dennis
Thank you, John. I haven't downloaded the sources yet. Dennis Leas --- [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of John Marshall Sent: Monday, September 08, 2003 1:16 PM To: Palm Developer Forum Subject: Re: HostFEOF() doc

How to detect 5 way rocker switch?

2003-09-08 Thread Claire
Hi, I need to be able to find out if the handheld my program is running on has the 5 way rocker switch or not. Looking at palm's website it seems that some OS4 devices have the rocker switch while some OS5 devices do not, so the OS version isn't a valid way to find out. Is there a way to query

Re: DataTypes and Databases (PalmDB.dll)

2003-09-08 Thread Régis Daniel de Oliveira
Thanks Dennis. Your explanation cleared my mind about PDBs that is generated on a Palm device. But... My application uses a PDB that is generated on my desktop using the PalmDb.dll. Is PalmDb.dll able to generate other DataType as String, like float, double, boolean, etc? If yes, how can i do

Print whit Sip-Ix

2003-09-08 Thread Juan José Cuzziol
Hello: I need to print via infrarojo with a sipix utilizing the driver a6 Printer. It is able someone to send me codigo of example ?. Thanks Juan José. -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: How to detect 5 way rocker switch?

2003-09-08 Thread Steve Colmerauer
Hi Claire, does 5 way rocker switch mean the Five way nav button like on the Tungsten series? Colmerauer Claire [EMAIL PROTECTED] a écrit dans le message news: [EMAIL PROTECTED] Hi, I need to be able to find out if the handheld my program is running on has the 5 way rocker switch or not.

RE: DataTypes and Databases (PalmDB.dll)

2003-09-08 Thread dennis
Hi Régis, I haven't used PalmDb.dll so I can't help you there. Perhaps somebody else on the list? Dennis Leas --- [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Régis Daniel de Oliveira Sent: Monday, September 08, 2003 3:44 PM

Re: Limite of Constructor 1.9 ?

2003-09-08 Thread Alan Ingleby
Regis St-Gelais [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is it possible to use 2 resource file in the save projet? I use CW8.3 under windows 2k. As the problem seems to be Constructor-Related, have you considered switching to PilRC? I'm using CW9, and it works really well.

Re: CW/PiLRC automatic build number?

2003-09-08 Thread Alan Ingleby
Brad Figler [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is there a way to setup an auto incremented build number in pilrc or CW? Any suggestions on managing builds using the CW development IDE? Basically, what I want to do is automatically increment a label/number somewhere

Re: Print whit Sip-Ix

2003-09-08 Thread Alan Ingleby
Juan José Cuzziol [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello: I need to print via infrarojo with a sipix utilizing the driver a6 Printer. It is able someone to send me codigo of example ?. You need to use something like TealPrint to drive this printer.

Re: CW 9.2

2003-09-08 Thread Alan Ingleby
Luc Le Blanc [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] We have released the second beta, and so far, have gotten two bug reports that require a fix. We don't plan on doing another beta run, but we're going to wait another week or so for any other reports to come in. It's

Re: Any free jpeg decoder library for palm?

2003-09-08 Thread David Thacker
L.M. Fridael [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Francis [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] is there any free jpeg decoder library for palm? or if any jpeg to bmp converter for palm? thx a lot http://www.nyctergatis.com/jpeglib/ Regards

Re: How to detect 5 way rocker switch?

2003-09-08 Thread Colmerauer
Hi Claire, Try the FtrGet function with 'fway' creator and feature number 0 Regards Colmerauer Claire [EMAIL PROTECTED] a écrit dans le message news: [EMAIL PROTECTED] Hi, I need to be able to find out if the handheld my program is running on has the 5 way rocker switch or not. Looking at

Re: Any free jpeg decoder library for palm?

2003-09-08 Thread Douglas Handy
David, Has anyone figured out a way to make it scale the decoded images to fit a desired width/height, as opposed to the fixed 1,2,4,8 scaling modes? The shared library is a port / front-end to the IJG routines. Currently the only scaling I could find in that source was the 1/2/4/8. I just

RE: Limite of Constructor 1.9 ?

2003-09-08 Thread Eric Cloninger
Once I get the error message, I am no longer able to save, even if I delete a few item. When this error occurs, the file is no longer readable. I need to get a backup copy. :( Most likely the problem is damaging or destroying the resource map. This is one of those artifacts of using the

please please please help with sound?

2003-09-08 Thread Meg Walraed-Sullivan
Hi, I'm still trying to find a way to temporarily turn off sounds (like those that happen when you press a button) during a small part of my app and have posted 4 times with no luck...I know someone out there must have some good ideas? thanks all. -- For information on using the Palm Developer

I can read the number of sms,but I can't read sms content in telephony sms ?

2003-09-08 Thread Andy yuan
//define receive sms struct member variable. Err err; UInt16 gTelRefNum; TelAppID gTelAppID; TelSmsMultiPartExtensionType extensionType; TelSmsExtensionType ext; TelSmsDateTimeType gTeldatetime; TelSmsGetAvailableStorageType m_Stores; UInt16 m_Index; UInt16 m_Storage=0; UInt16 m_Retrieved=0;

Re: RE: Re: Re: Re: RE: Font Family, High Density xFont

2003-09-08 Thread Jamie Macleod
LionScribe, Thanks for all your help. I did as you said and the font works for a new empty project. Regarding the older OS versions (pre 5.0 I presume) I will need to use just a font and not a font family. To clarify. I will need to check if the OS is 5.0 or up and use a font family if

Re: Bluetooth on PDAs

2003-09-08 Thread benbird
Telmo Santos, The two way waork same.I sugest you to buy a bluetooth on his internal hardware for example TT. I have a tt,it work good! === 2003-09-06 11:36:00 === Hi I'm developing an application that requires bluetooth technology, so, i'm planning to buy a Palm. I know that i can

RE: RE: Re: Re: Re: RE: Font Family, High Density xFont

2003-09-08 Thread LionScribe
Correct. Also you should check for the screen's density using WinGetSupportedDensity(); And don't feel so bad about converting, because the new project will be much easier to handle. LionScribe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jamie Macleod

Re: Limite of Constructor 1.9 ?

2003-09-08 Thread Ben Combee
At 05:39 PM 9/8/2003, Alan Ingleby wrote: Regis St-Gelais [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is it possible to use 2 resource file in the save projet? I use CW8.3 under windows 2k. As the problem seems to be Constructor-Related, have you considered switching to PilRC? I'm

Re: CW 9.2

2003-09-08 Thread Ben Combee
Are you implying CW 9 shall then be perfect, or are you already working on version 10? So I guess I'm not going to see the code highlighting bug fixed in this series then..? When is V10 coming out, and what key features can we expect to see? I'm not implying anything other than we don't plan

Re: Wireless PRC Update

2003-09-08 Thread Greg Lutz
At 12:19 PM 9/8/2003, Matt Graham wrote: Our product has to be able to be updated wirelessly. Has anyone done this before and how have you done it? Right now we're thinking about having a separate PRC that does the updating but then we're having the problem of also having to be able to update the

Re: please please please help with sound?

2003-09-08 Thread Damir
Hi, Meg. For DragonBall's Palm, you can use *(UInt16*)0xF500 =~0b0001; //sound OFF *(UInt16*)0xF500 |= 0b0001; //sound ON I don't know API for what. This will not work on ARM machines. MWS Hi, MWS I'm still trying to find a way