Database disappears after Soft Reset (NVFS)

2005-09-12 Thread abazil
The users reports about one strange thing: Preference database of my program disappears after soft reset. The program opens his pref. database on start (read/write). Before exit, I close pref. database then reopen it (readonly|leaveopen). Then program quit and leave this database open. After

Re: Database disappears after Soft Reset (NVFS)

2005-09-12 Thread Ben Combee
At 02:16 AM 9/12/2005, you wrote: The users reports about one strange thing: Preference database of my program disappears after soft reset. The program opens his pref. database on start (read/write). Before exit, I close pref. database then reopen it (readonly|leaveopen). Then program quit

New to developing for Palm OS - Few general questions

2005-09-12 Thread John Cogan
Hi Hopefully someone here could provide a few answers which will help me onto the path of starting out development for the Palm OS system(s) I have downloaded a huge pile of documentation and emulators, roms, develoment suite etc (for windows xp OS) to prepare to get started on this but still

Re: Compiling my Whole Dang OS5 App Into ARM using prc-tools

2005-09-12 Thread David Ghandehari
Benoit Cerrina wrote: Hi David, I am more or less in the same situation as you, if you do manage to compile your app for arm, can you send the list (or just me) a description of the hoops you had to jump through, I always postponed doing it but some parts of my apps could really benefit.

Re: Database disappears after Soft Reset (NVFS)

2005-09-12 Thread abazil
The name of database includes name of its program and is completely unique. There are no databases with similar names. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

screen resolution

2005-09-12 Thread kiranp
Hi All, How to get the client rectangle? so that I can get the rectangle without menubar. thanks in advance. .. KiraN Puranik -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: New to developing for Palm OS - Few general questions

2005-09-12 Thread Michal Seliga
John Cogan wrote: Hi Hopefully someone here could provide a few answers which will help me onto the path of starting out development for the Palm OS system(s) I have downloaded a huge pile of documentation and emulators, roms, develoment suite etc (for windows xp OS) to prepare to get

Re: screen resolution

2005-09-12 Thread Fr�d�ric DESSALLIEN
Hi , Something like / RectangleType frmBounds; FrmGetFormBounds(frmP, frmBounds); / where frmP is a pointer to the form Hope it would help you Regards [EMAIL PROTECTED] a écrit dans le message de news:[EMAIL PROTECTED] Hi All, How to get the client rectangle? so that I can get the

UIPickColor on LifeDrive gives Fatal Alert

2005-09-12 Thread M Qaisieh
Hi , I have a problem when call UIPickColor(), it rest the device and the messages says Window.c Line:2104 , can't change depth when draw state pushed ... is lifeDrive support UIPickColor ?? Regards -- For information on using the PalmSource Developer Forums, or to unsubscribe, please

Problems with FrmAlert(alert ID) garnet

2005-09-12 Thread Fr�d�ric DESSALLIEN
Hi all, I ve got a very strange problem i can't explain. In a tableEnterEvent i update database for next category when i check if new category is empty i send a frmalert(myformid) to alert user category is empty ands rollback query after. This work fine on palm os 5 but on garnet T5, Treo, Life

RE: UIPickColor on LifeDrive gives Fatal Alert

2005-09-12 Thread Miro Pomsar
Hello, check that you pair all your WinPushDrawState() calls with WinPopDrawState(), before calling UIPickColor(). Regards, Miro Pomsar -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of M Qaisieh Sent: Monday, September 12, 2005 16:32

Re: pnoJpegLib on Sony Clie

2005-09-12 Thread John Voltz
There is one small problem with being able to debug this, it only fails when I run it on the actual device, the TJ-27. The second problem is that the Sony devices don't have a supporting debug nub. I could just display the return values on-screen I suppose. I'll try to do it when I get a

Re: Knowing the physical width of a screen pixel

2005-09-12 Thread Regis St-Gelais
Luc Le Blanc [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] My app needs to draw to scale. Other than asking the user to measure a line on his screen, how can I know the device-specific physical width of a pixel, given that it varies across models? The program

Re: pnoJpegLib on Sony Clie

2005-09-12 Thread Erico Franco
John Voltz wrote: There is one small problem with being able to debug this, it only fails when I run it on the actual device, the TJ-27. I think that TJ-27 supports V3 Bitmaps. Probably is a memory problem, try with a lower dimension resource. What is the size of your resource? make a test

Re: image filters

2005-09-12 Thread Erico Franco
Henk Jonas wrote: Erico Franco wrote: Specially filters like emboss and blur are just an operation with a wandering matrix. It should be very easy to adopt any good structured example source into CW 9.3. There shouldn't be any problems. Regards Henk Hi Henk, thanks for the reply, I'll

Re: pnojpeglib: using not as a lib

2005-09-12 Thread Erico Franco
Miguel Angel Sotomayor Hernandez wrote: You can distribute both, your application and the library in a single .prc file. Check this thread: http://news.palmos.com/read/messages?id=184418 where Brandon Roberson explains how to do this. I guess doing it with codewarrior should be as easy as

problem with PODS and segments

2005-09-12 Thread Eric Potter
I have a standard makefile PODS app. I recently needed to add a second code segent. In section.h I added: #define EXTRA_SECTION_ONE __attribute__ ((section (code2))) #define EXTRA_SECTION_TWO __attribute__ ((section (code3))) In my def file, I added: multiple code { code2 code3} In one of

Palm OS Developer Suite Include directories

2005-09-12 Thread Marvin Bellamy
Where is the list of include directories in managed projects maintained? I'm talking about the include directories you see listed in the project resource navigator. Second, how are these include directories actually incorporated into the build? Are they dumped into an environment property or

DB Cache in Tungsten T5

2005-09-12 Thread Mikael Nilsson
Hi, I'm experiencing some problems with databases in a Tungsten T5 device. Our application uses about 20 databases that are quite big. All of them are opened at the start of the application, and sorted using DmInsertingSort (the data also needs to be resorted during the run). When sorting

Using Resource Strings in editable Fields

2005-09-12 Thread Michael Baumgart
Hello all together, I want to load a default string out of an string-Resource into an editable field. This should be done when the form is being loaded. I tried it the following way, as I guessed it is necessary after reading Companion and Reference, but an error occurs (No visible lines to

Re: Using Resource Strings in editable Fields

2005-09-12 Thread Logan Shaw
Michael Baumgart wrote: I want to load a default string out of an string-Resource into an editable field. This should be done when the form is being loaded. I tried it the following way, as I guessed it is necessary after reading Companion and Reference, but an error occurs (No visible lines

Re: Using Resource Strings in editable Fields

2005-09-12 Thread Ben Combee
At 05:43 PM 9/12/2005, you wrote: (Personally, I think FldSetTextHandle() should free the existing handle if there is one by default, but that doesn't seem to be the way it works.) FldSetTextHandle can't do this, as the previous handle might be a database record or some other handle to data

Selecting all Text when user taps on a Table with a textTableItem Column (Please!!!)

2005-09-12 Thread Regis Daniel de Oliveira
Hi all!!! On my application, when the user clicks on a editable field, the system automatically selects all the texts on the field (FldSetSelection) and call the Keyboard (SysKeyboardDialog). I'm trying to implement the same process on my table, but without sucess. Could please, anybody help

Re: Using Resource Strings in editable Fields

2005-09-12 Thread Logan Shaw
Ben Combee wrote: At 05:43 PM 9/12/2005, you wrote: (Personally, I think FldSetTextHandle() should free the existing handle if there is one by default, but that doesn't seem to be the way it works.) FldSetTextHandle can't do this, as the previous handle might be a database record or some

how to popup menu

2005-09-12 Thread lui_montreal
I want to put an menu icon on screen. When tap at it, menu will pop up, just like the popping up menu when tapping at the Menu Icon on silkscreen. Can anybody tell me how to do it. Thanks. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

Re: how to popup menu

2005-09-12 Thread Robert Moynihan
[EMAIL PROTECTED] wrote: I want to put an menu icon on screen. When tap at it, menu will pop up, just like the popping up menu when tapping at the Menu Icon on silkscreen. Can anybody tell me how to do it. Thanks. Here's one way... void PostMenuKey(void) { EventTypeevent;

help badly needed!!! multimedia on palm

2005-09-12 Thread she
hello! i need to develop a customized multimedia application. where shall i start? what tools do i need? i have a codewarrior ver 7. please direct me. I have developed an sms application before using the ver 7. here is what i need to do: 1. a customized voice recorder which should record data

Re: how to popup menu

2005-09-12 Thread Logan Shaw
Robert Moynihan wrote: [EMAIL PROTECTED] wrote: I want to put an menu icon on screen. When tap at it, menu will pop up, just like the popping up menu when tapping at the Menu Icon on silkscreen. Can anybody tell me how to do it. Thanks. Here's one way... void PostMenuKey(void) {

Re: Knowing the physical width of a screen pixel

2005-09-12 Thread Luc Le Blanc
Regis St-Gelais a écrit : Luc Le Blanc [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] My app needs to draw to scale. Other than asking the user to measure a line on his screen, how can I know the device-specific physical width of a pixel, given that it varies across

RE: UIPickColor on LifeDrive gives Fatal Alert

2005-09-12 Thread M Qaisieh
Thank you Miro , It works ; there was one missing WinPopDrawState() but why this error not appear in onther devices ? Regrads M Qaisieh Hello, check that you pair all your WinPushDrawState() calls with WinPopDrawState(), before calling UIPickColor(). Regards, Miro Pomsar

Re: help badly needed!!! multimedia on palm

2005-09-12 Thread Mark Lussier
in response (and I NEVER respond) 1.) I will provide you source code in EFIGS(JC if you need) , and with docs on all langs 2.) Will work with above (1.), seamlessly 3.) No Problem, seamless API will be provided please email me for pricing on above along with your time requirements I would happy