Re: Record Count in Address DB problem

2003-09-02 Thread Geoffrey
I am sorry that I was search this group by "DmNum*s*" and there were no result. I had search it out already, sorry for bother -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Record Count in Address DB problem

2003-09-02 Thread Geoffrey
Hi All, I want to get the record count in the Address DB, but no matter I use DmDatabaseSize(0, DmFindDatabase(0, "AddressDB"), &recordCount, NULL, NULL); or recordCount = DmNumRecords(AddrDB); I can't get an accurate record count from the AddressDB. It always return a number that include the re

Looking for Emulator and ROM Image File

2003-09-02 Thread Alucard
Hi, Just like to ask who among you guys have Sony PEG-NR70 Series Emulator and it's ROM Image file? i can't download this things in https://www.cliedeveloper.com/program/develop_tool/palm_os.html. Tanx, alucard -- For information on using the Palm Developer Forums, or to unsubscribe, please

Responding to posts?

2003-09-02 Thread Eric
Uh oh. I chose to use newsgroup post listing (no email) and I can post (obviously) through the very precarious email mechanism, but I can't seem to find any way to respond to existing postings since I receive no email of them to respond to (I'm assuming that this is how one would respond). Am I

RE: Focusing a gadget?

2003-09-02 Thread max
Only two types of controls may have a focus in Palm OS: field and table. You can only emulate this functionality probably using insertion point functions if you need cursor on the screen. __ Best regards, Maks Pyatkovskiy > -Original Message- >

Focusing a gadget?

2003-09-02 Thread Eric
I'm extending a gadget and I'd like to be able to give it focus (it's a speial kind of text-box). Performing this as expected with FrmSetFocus (or actually, since I'm using POL - Palm Object Library, CForm::SetFocus -- which calls FrmSetFocus). I have a gadget and a memo field in my form. When I

Re: file i/o problems

2003-09-02 Thread Steven Fisher
Monika Kauntz wrote: I am confused on what to do with file i/o calls in my code. I am trying to port existing c code to Palm OS 5 and I am having problems figuring out what to do for fopen. Well, yes. This is because fopen is for files, and the concept of files is largely an invalid one on the Pal

Query DmQuickSort Progress

2003-09-02 Thread Régis Daniel de Oliveira
Hy all! I've a Database that have about 3000 recs, and i want to sort then. Is there any way to query an event to know where is my progress (which is the % completed, etc)? I'd like to fill a progressbar while the DmQuickSort function is working, but i've no idea of how doing this. Thanks! Ré

RE: Help with DmSetDatabaseInfo

2003-09-02 Thread LionScribe
I do not know how you initialized 'label', I imagine it's just a pointer, when it's supposed to be a character array, where the value is copied to. Therefore you don't need all that code. Just do the following char label[dmDBNameLength]; DmSetDatabaseInfo(0,dbID2,label,NULL,NULL,NULL,NULL,NULL,NULL

Re: determining if you've read past the end of a va_list

2003-09-02 Thread Ben Combee
At 06:33 PM 9/2/2003, Eric Potter wrote: Is it possible to determine if you've read past the end of a va_list? As far as I can tell, when you go past the end of the list, va_arg returns a pointer that is not NULL, but it is bogus. When this pointer is passed to one of the string api's, the emulator

determining if you've read past the end of a va_list

2003-09-02 Thread Eric Potter
Is it possible to determine if you've read past the end of a va_list? As far as I can tell, when you go past the end of the list, va_arg returns a pointer that is not NULL, but it is bogus. When this pointer is passed to one of the string api's, the emulator throws a bus error. The value of the poi

Re: App will not launch under OS5 and Preferences Panel

2003-09-02 Thread Ben Combee
At 04:08 PM 9/2/2003, Carl wrote: -Bump- "Carl" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > I have an application that I had set up as 'panl'. It launches find for all > OS version <5.0. > I see it in the Pereferences 'Other' area, on my Tungsten 'C' but when I tap > on it, the

Re: App will not launch under OS5 and Preferences Panel

2003-09-02 Thread Carl
-Bump- "Carl" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > I have an application that I had set up as 'panl'. It launches find for all > OS version <5.0. > I see it in the Pereferences 'Other' area, on my Tungsten 'C' but when I tap > on it, the screen just flashes and it will

Re: alarms

2003-09-02 Thread Meg Walraed-Sullivan
"If your program is already the "foreground" task when you get the alarm, then you have globals." yep it always will be. so in this case I can just put a case in the switch statement of pilotMain and code as usual, switching forms, etc without worrying? "Once you understand launch codes, which

file i/o problems

2003-09-02 Thread Monika Kauntz
Help! I am confused on what to do with file i/o calls in my code. I am trying to port existing c code to Palm OS 5 and I am having problems figuring out what to do for fopen. I have existing files that need to be open and read and I am not sure what to use in Palm OS 5 to get the equivalent of an f

Re: Which is the best IDE?

2003-09-02 Thread Steven Fisher
In article <[EMAIL PROTECTED]>, Dinho <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to know which IDE do you prefer: CW9 or falch.net ? > > thanks for your comments. IMHO, for the current state of Palm developer tools this is a lot like asking if one would prefer to lose their left eye or thei

Help with DmSetDatabaseInfo

2003-09-02 Thread rguevara
Hi, i have one problem. When i change the name of DB for other, whith DmDatabaseInfo/DmSetDatabaseInfo. i loss the pointers associated to Database? (i write the database appinfo block and set it). I think what do. Because the converter to csv read the offset of appinfo with ridicules values. I g

How to handle database with record number more than 64K

2003-09-02 Thread Guanghe Pan
Anyone here has experience in handling database with more thank 64K records. Description of the process or a piece of code will be helpful. Appreciate your help. Regards, Guanghe __ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software h

strange error!

2003-09-02 Thread Mohammad Afshari
Hello I'm trying to compile some of the sample codes provided in the codewarrior but i get this funny error which says: Link Error : Error while creating/copying resource fork. Link Error : Error while saving resources. i have tried these solutions: Solution1: Delete the Constructor resourc

RE: problems with shared libraries and the bundle bit

2003-09-02 Thread LionScribe
Anyways, the shared library should not be having the same creator ID as the application, so that it is available for other applications even if the application is uninstalled. When you give a library a different ID, it shows up on the beam list, and it can be beamed separately. LionScribe -Ori

Re: problems with shared libraries and the bundle bit

2003-09-02 Thread James
Eric Potter wrote: > > I have a shared library that I want to get beamed with my application. > The app and the library have the same creator ID and I set the bundle > bit on the library. But when I beam my app from the launcher the > library is not sent. Has anyone had problems with this in the p

Re: rsrc2rcp, pilRC and BMPs oh my!

2003-09-02 Thread Brad Waite
Aaron Ardiri wrote: why not take the bitmap from constructor, c+p into paint, and, save? I could, but then I'd have to edit the rcp file to point to the correct BMPs. The way I'm doing it now, I can type 'make' and it works. Slow and inefficient, but it's a single-step build. As it turns out,

ROMs for i705

2003-09-02 Thread Robert K. Davis
Hi All, I looked in the archive for information regarding a ROM file for the i705. I saw that one year ago last July (ie. 14 months ago) that the ROM file for the i705 would be release soon. Then I saw no further discussion, or atleast a search on i705 produced no further hits. Was the i705 ROM

Re: rsrc2rcp, pilRC and BMPs oh my!

2003-09-02 Thread Aaron Ardiri
> I've been designing my forms in Constructor, converting them to .RCPs with > Renaud Malaval's handy rsrc2rcp. It handles most bitmaps just fine, but I'm > having problems with it crashing hard when trying to convert one of my icons > and a 2x-density bitmap to .BMP. why not take the bitmap fro

rsrc2rcp, pilRC and BMPs oh my!

2003-09-02 Thread Brad Waite
Environment: Win2k, Constructor, rsrc2rcp, pilRC, PRC-tools I've been designing my forms in Constructor, converting them to .RCPs with Renaud Malaval's handy rsrc2rcp. It handles most bitmaps just fine, but I'm having problems with it crashing hard when trying to convert one of my icons and a 2x-

Bitmap

2003-09-02 Thread Jeff Biege
Howdy All, Could I get any suggestions on how to save a Bitmap in a record along with other string data. I DmWrite the bitmap at the end of the record. In the program when I save the record and the global bitmap pointer has not yet been initialized it works, but after the bitmap pointer is pointin

Lib Porting errors & Dispatach table entries...

2003-09-02 Thread AnilkumarB
Hi , I had gone through all the previous mails regarding this shared libraries concept.I came to know that,it is impossible to expose c++ classes member-functions through shared libraries in codewarrior. I got 2 queries.. 1). I suppose i can include the c++ files in the shared libraries projec

problems with shared libraries and the bundle bit

2003-09-02 Thread Eric Potter
I have a shared library that I want to get beamed with my application. The app and the library have the same creator ID and I set the bundle bit on the library. But when I beam my app from the launcher the library is not sent. Has anyone had problems with this in the past? Any advice? thanks Eri

Re: Tungsten C Screen Disable

2003-09-02 Thread asiayeah
Hi all, I've just tried the HardwareUtils68K.h. I may have overlooked something, but I am only able to make use of the API HWUEnableDisplay(UInt16 refnum, Boolean on) to turn off the screen. No matter if I pass true or false to the on parameter of the HKWEnableDisplay(), it always turn off the sc

Regd Zire Camera APIs

2003-09-02 Thread Deepak TVS
Hi all, I am trying to writing a video recorder usind Zire Camera APIs. So for that I am using the function CamLibControl to capture an image from the Camera. But this function blinks the screen once. So when I am continuously calling this function to record a video, the display screens goes on

Re: Which is the best IDE?

2003-09-02 Thread Jacob Thurman
> > > >And when will the v9 demo be available? > > There will not be a V9 demo. V9 contains licensed technology that we can't > distribute in demonstration form, and without those features, we don't > think it would be a fair evaluation. > So, for the sake of argument, how would you convince me t

Re: Which is the best IDE?

2003-09-02 Thread Ben Combee
At 11:17 PM 9/1/2003, Jacob Thurman wrote: > How did you download CodeWarrior for Palm OS V9? We don't provide a > download version of the toolset, so any copies of V9 you get off the net > are illegal copies. We do have a demo of V8 that's still posted; that is > OK to download and try. > And wh

Re: Which is the best IDE?

2003-09-02 Thread Aaron Ardiri
> The speculation is that they have gone under and won't admit it. Its a > shame, because the IDE really is (was) quite nice. Part of me hopes they'll > take the high road and either open source it, or sell it to a company that > will maintain and support it. well, falch.net is only a front end

Re: alarms

2003-09-02 Thread Meg Walraed-Sullivan
> Just handle the launch code in your application. No big deal. If a > startup alarm notification occurs while you are already running, recognize > it and ignore it! But the thing is, I don't want to ignore it, I want to switch forms and do all kinds of processing in response to it. I want to

Porting windows c++ dll to palm OS as a shared lib

2003-09-02 Thread AnilkumarB
Hi, I am trying to port an existing windows c++ dll to the palm platform. I want the dll to be used as a shared library on the palm OS. Can Anybdy provide some guide lines in porting the c++ dll as a shared library on the palm OS. Thanx in Advance Best Regards Anil -- For information on usin

Re: alarms

2003-09-02 Thread Roger Stringer
Subject: Re: alarms From: "Meg Walraed-Sullivan" <[EMAIL PROTECTED]> Date: Tue, 2 Sep 2003 01:37:28 -0400 > Just handle the launch code in your application. No big deal. If a > startup alarm notification occurs while you are already running, recognize > it and ignore it! But the thing is, I don'

Re: Which is the best IDE?

2003-09-02 Thread Dinho
I borow a copy from a friend of mine to evaluate. I just beginnig my learning in development for Palm and need to decide which tools to use. thanks Aryldo Ben Combee wrote: At 12:50 PM 9/1/2003, Dinho wrote: Hi, I have already downloaded CW9. looks good. but I couldn't get the one from falc

Re: how to change jpeg image size

2003-09-02 Thread Konstantin Klyatskin
Think reversible. Insert 1:1 images and show them in 1/2/4/8 scale by http://www.absoluteword.com/jpglib/ lib. -- Konstantin "Saradhi" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > in my application,i i inserted jpeg images with the > size 1/4 th of form size. but now i want to

Re: How to set static text with a repeating button beside - Table

2003-09-02 Thread Jefferson
hi, built-in applications provide examples to implement tables that operate on entire column of customTableItem. I came to know textTableItem datatypes do not play well with other datatype, b'coz of the save & load callback function specify only an entire column. I wnt to implement a column with l

Re: Which is the best IDE?

2003-09-02 Thread Jacob Thurman
> How did you download CodeWarrior for Palm OS V9? We don't provide a > download version of the toolset, so any copies of V9 you get off the net > are illegal copies. We do have a demo of V8 that's still posted; that is > OK to download and try. > And when will the v9 demo be available? -- Jaco

Sending SMS

2003-09-02 Thread richard work
Hi All, I am getting well annoyed with this, and the docs from Palm suck. I want to send an SMS to a predefined number. My code is below. The problem is that the '@' symbol gets converted to a 'j', the string "//EXG1" gets appended to the message and the SMS exchange library ignores the number I

how to change jpeg image size

2003-09-02 Thread Saradhi
in my application,i i inserted jpeg images with the size 1/4 th of form size. but now i want to increase image size to display full form size(160,160). __ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com -

RE: power off during modal forms

2003-09-02 Thread LionScribe
Also, it's not so hard to replace the alerts with forms. You create one function that does it, and use it in place of all alerts. LionScribe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of LionScribe Sent: Monday, September 01, 2003 8:09 PM To: Palm Developer

Problems in Simulator for Zire model.

2003-09-02 Thread purushotham
Hi, We have a Zire Model Palm device (OS version 4.1) using for application development. We are using Code Warrier IDE 4.0 as development tool. We downloaded Palm OS Emulator version 3.5 (emulator-win.zip) from Web site www.palmos.com/dev/tools/emulator/ But ROM file in the device (Zire) was not

RE: power off during modal forms

2003-09-02 Thread LionScribe
Notification is a complex matter, with the application getting a launch code which you handle in PilotMain(), similar to an alarm setting. Also you have to register with the system in order to get the notification. See the Palm OS API Reference. LionScribe -Original Message- From: [EMAIL P