detect emulator

2008-05-29 Thread Jimmy R
Anyone know how to set different values to a defined variable for emulator and a real unit, this doesnt seem to work at all: #if EMULATION_LEVEL != EMULATION_NONE #define delay 2 #else #define delay 12 #endif Thanks / Jimmy -- For information on using the ACCESS Developer Forums,

Handling null pointers

2008-05-29 Thread Andy Black
Hello all, I have a quick question about handling null pointers and text fields. I have a program that periodically checks a text field for data prior to performing a calculation. When it finds data (via a locked pointer) it performs a calculation. If it doesn't find anything in the field (a null

Re: How do I check the lock count under SDK3.5?

2008-05-29 Thread chongwm
There is an undocumented way. MemHandleLockCount(). Mr. Rhodes pointed that out to me a couple of months back. Chris Tutty wrote: Hi, I've just upgraded a project to the 3.5SDK without hassles but after turning on my debug code to trace a locking problem I've found that the private

Re: UIntxx question

2008-05-29 Thread Dave Carrigan
Richard Burmeister [EMAIL PROTECTED] writes: And if you pass in something of the wrong size to a function, how will the function know how to interpret the bits that are on the stack? Conclusion: check function prototypes in the Palm OS Reference and always use the correct data types. This is

Re: Pacifier windows..?

2008-05-29 Thread Pablo Valle
You can try also this, frm = FrmInitForm(WaitForm); FrmSetActiveForm(frm); FrmDrawForm(frm); while (foo){ do something } FrmReturnToForm(0); It works for me. Just remember to check the (save behind) Hope it helps Pablo Valle Dave Johnson [EMAIL PROTECTED]

Re: Serial Weirdness

2008-05-29 Thread Patrick Ouellet
Thanx for the advise but if I understand what you're saying ( im french so misunderstanding is something common) Im already doing something like that ScanComm scan the buffer until I receive a CRLF Carriage Return Line Feed caracter This is my end of line mark... when I hit a crlf I

RE: Object not in form (but it is!!!)

2008-05-29 Thread Marcelo Gorini
I can't confirm, but this happened with me too!!! Regards! Marcelo -Original Message- From: Fergal Moran [mailto:[EMAIL PROTECTED] Sent: Friday, October 06, 2000 4:31 AM To: Palm Developer Forum Subject: RE: Object not in form (but it is!!!) I've seen this type of error occur most

Re: Insertion Point Problem

2008-05-29 Thread Stringer
At 10:22 AM 10/5/00 -0700, you wrote: At 12:00am -0700 00-10-05, Palm Developer Forum digest wrote: Subject: Insertion Point Problem From: Stringer [EMAIL PROTECTED] Date: Wed, 04 Oct 2000 22:54:00 -0400 X-Message-Number: 71 With the 3.5 debug ROMs, I'm now getting Insertion Point Problem

Re: Serial Weirdness

2008-05-29 Thread Dave Lippincott
Do you flush the receive buffer after you open the port? Are the port settings correct (baud, stop bits, parity, etc)? - Original Message - From: Patrick Ouellet [EMAIL PROTECTED] Newsgroups: palm-dev-forum To: Palm Developer Forum palm-dev-forum@news.palmos.com Sent: Thursday, October

Re: Using Global Find Command

2008-05-29 Thread Steve Achelis
I probably didn't explain it clearly. I want to allow the system to continue to use the Find command normally. However, from inside my app I'd like to use my existing event handlers (and the system's dialog) to search only my app. Steve Ben Combee [EMAIL PROTECTED] wrote in message news:[EMAIL

Using Global Find Command

2008-05-29 Thread Steve Achelis
My app currently handles the system find event sysAppLaunchCmdFind. The docs say, An application can also integrate the find operation in its own user interface and send the launch code to a particular application. Any ideas on how to do this? I'd like to launch the system's Find dialog, get

Re: *@#!! Some amazing problems !

2008-05-29 Thread Rajesh Patidar
Ah! Now my question: What are your initial scroll bar settings? Did you leave them defaults, and now you're trying to set a combination of valid/invalid data? What happens when you set a scrollbar to a page size of 0? I have tried many different values for scroll settings ,including

Re: TextTableItem wider than column width?

2008-05-29 Thread Ken Hejmanowski
You can use WinDrawChars to draw anywhere within the current draw window, so unless you change the draw window or the Table Manager has changed the draw window (and you can always change it to anything you want anyway), you can use it to draw in the second column. However, if the second column

Re: FldSetTextPtr

2008-05-29 Thread Dave Lippincott
The character pointer you pass using FldSEtTextPtr needs to be a pointer, not a constant text string. Plus, the pointer needs to remain in scope for the life of the field you wish alter. you could try (and I believe this is in the KB) 1) get the field pointer 2) get the size of the string you

Re: How to update a specified field in the database

2008-05-29 Thread chongwm
Probably an artifact issue. I don't think she null-terminated her char arrays. So, if the old string is longer than the new one, she'ld be reading past the new one into the old one. Remember that she didn't DmResizeRecord() on the record either. Richard Hartman wrote: Wait a sec ... if the

Pre Processor directives

2008-05-29 Thread Labhesh Patel
Hi, I wanted conditional compilation of the code based on some pre-processor directives. Where in the project settings in Code Warrior would you need to specify the pre-processor directives? bye Labhesh _ Get Your

resource related screen freeze

2008-05-29 Thread Rick Gadbois
Using programs I have written; After using my modem, my palm sometimes freezes, unitl a power off/on occurs. It seems to be resource related; i.e. If I change around formID's, the problem occurs less often. But I have not nailed down the fix...exactly. Does anyone have any helpful information with

Re: i need a suggetion for my recoeds...

2008-05-29 Thread Eliah Ninyo
so what u suggest??? Richard Anderson wrote: I dont think you should use const in your struct, as you will not be able to assign values to the variables (as their constant). Rik -Original Message- From: Eliah Ninyo [SMTP:[EMAIL PROTECTED] Sent: 03 October 2000 15:53 To:

Maximum size of an application ?

2008-05-29 Thread Rajesh Patidar
Hi everybody, I am getting the following error while loading my application on the emulator--- Application size increased 64K.(0x0201) dmErrMemError I am developing the application using CW Lite Release 6.(Single Segment) I want to know exactly what is the maximum size of the app.

Overflowed Stack !

2008-05-29 Thread Rajesh Patidar
I am using --- CodeWarrior Release 6 Sybase Ultralite Version 6.0.3 POSE v 3.0a7 I compiled and linked the application successfully. While running the application I am getting following error-- The application has just overflowed the stack. What might be the cause? -- For

Re: Bug in 3.5-fr-dbg ?

2008-05-29 Thread Denis Faivre
De : John Marshall [EMAIL PROTECTED] It only occurs with French and Spanish 3.5 debug ROMs. It's an ErrNonFatalDisplayIf, so there are no adverse effects with release ROMs. Right, but it prevents us from fully testing our apps on French versions of PalmOS... Would an updated version of the

Re: C vs. C++

2008-05-29 Thread Bradly J. Barton
From: Steve Sabram [EMAIL PROTECTED] Next time I ever find myself around an academic Computer Science type, I'd love to see his response to, So what is the Cost of Implementation of all this blue sky you are promoting? Here, Here! I have always been an opponent of the analysis paralysis that

hot sync programatically?

2008-05-29 Thread rub-a-dub
hello all, hope everyone is well. i was curious if it is possible to invoke a hot sync programatically. also, if anyone can provide me with information about hot sync api(if available) thanks and have a good week. -ruben __ Do You Yahoo!?

Re: draw before FrmDrawForm in color debug ROM

2008-05-29 Thread Stringer
Subject: draw before FrmDrawForm in color debug ROM From: Laurence Lundblade [EMAIL PROTECTED] Date: Sat, 30 Sep 2000 15:39:23 -0700 (PDT) Seems the PalmOS 3.5 debug ROM along with 3.0a7 emulator has a very unpleasent error response to an appropriate error check. When (incorrectly) attempting

Re: question about creator-id registration

2008-05-29 Thread Alex Robinson
David Fedor wrote: Is there any way to find out which IDs you have registered. Through an annoying oversight, I've got a few IDs that I *think* my company registered, but I'm not 100% sure. The problem is, they *are* registered, so I'm not sure if it's to us or someone else... Well, I

Strange problem with PalmOS 3.3 (but not with 3.5)

2008-05-29 Thread Tjeng-Bo Lie
In my event loop, when calling EvtGetEvents (on a PenDownEvent - when I tap on a dynamic button in a dynamic form,) I get the Just read directly from unallocated chunk of memory error inside WinDisplayToWindowPt(), RctPtInRectangle(), and WindowChange() routines when running on PalmOS 3.3 (both

Re: Fatal error: Fatal exception

2008-05-29 Thread Labhesh Patel
Hi, More details: The error occurs when I close my application by tapping on the applications icon. The fatal Error occurs when the applications acreen tries to show up. This error does not occur when I use POSE Emulator. It only occurs on the actual device. The same error also occurs

resource databases

2008-05-29 Thread PalmOS
Is there a way I can package .PDB files into a .PRC (as resource records) and then recreate them as Palm databases when the program is run using DmCreateDatabaseFromImage? How is this done? -Greg -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see

Fatal error: Fatal exception

2008-05-29 Thread Labhesh Patel
Hi, I get a Fatal error: Fatal exception sporadically when I exit my application on Palm V. I am testing with a prc and 2 pqas.All of them have a default icon provided by Palm OS. Does anyone else have a problem with applications having the same icons? bye Ramesh

Re: Emulator Won't run

2008-05-29 Thread Dave Lippincott
Have you altered the FLASH on your Vx with an app such as FlashPro? If so, Poser won't be able to use the ROM image. - Original Message - From: Dean Salman [EMAIL PROTECTED] Newsgroups: palm-dev-forum To: Palm Developer Forum palm-dev-forum@news.palmos.com Sent: Thursday, September 28,

ID and PW

2008-05-29 Thread Anson, Gary
set palm-dev-forum pw=secret -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: OK, this one flattened my head a bit..

2008-05-29 Thread Dave Lippincott
Consider yourself lucky. 98+CW+latest round of patches and it still happens on my system. I'm considering an upgrade to Win2K but will wait until all my development tools (not just Palm) have official Win2K updates. however I don't have any problems debugging with CW, Poser and constructor

Re: how to read more than 64kbytes records.

2008-05-29 Thread Dave Lippincott
There are no records with more than 64K bytes. 64K is the max record size (minus a few bytes). Is it possiable to read data from record from anypoint. I don't understand the question so I'll take a guess... You can randomly access any record within a DB. Once you retrieve a pointer to the

Re: How Do I control a Modem?

2008-05-29 Thread Chris Percival
What so you want to do with it? Chris Ayers Family Member [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I need some sample code on how to control a Palm modem. I read the MdmDial and hangup routines but I am not sure what code comes between them. Does anyone have a sample or

Re: Exit?

2008-05-29 Thread Dave Lippincott
But if I may ask one small thing, whats with the IMO and IMHO stuff? Get your rod and reel... http://www.gnofn.org/~tlewis/glossary.htm BTW, It looks like that URL for that FAQ may change in the near future, AFAIK for now it works. SWMBO likes http://www.bornholm.dk/sveasvej/lbp/acronyms.htm

CardNo and DbID for Launcher

2008-05-29 Thread Jacob Vitas Vogelstein
Anyone know the Card Number (UInt16 cardNo) and Database ID (LocalID dbID) for the Launcher app? Is it the same for everyone? Can I hard-code this value? Thanks -Jacob -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see

Flashing reset with a black square

2008-05-29 Thread Jacob Vitas Vogelstein
Sometimes I get a reset bug where the Palm screen just flashes over and over and nothing happens. I try to hold down the Up button and it just freezes there, and when i release it it continues to flash. When I press the Down button, a little black square appears in the upper-left corner of the

OS 3.5.2

2008-05-29 Thread Shay
where can i get the update for OS 3.5.2 ? for a device AND for an emulator ? shay -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

SV: SysAppLaunch(...) bug?

2008-05-29 Thread Bulent Gecer
Thanks Ian! I found the error thanks to you! It was in the call to SysAppLaunch(), namely the last parameter I was passing: SysAppLaunch(0,DmFindDatabase(0, app2), 0, sysAppLaunchCmdNormalLaunch ,NULL, NULL); I passed NULL and then I wrote to it... Now it works perfectly though, thanks again!

Re: Exit?

2008-05-29 Thread Bradly J. Barton
Easy. Users will often use the application buttons or tap back to the launcher, but there are times when you have: 1. An error situation where you haven't loaded appropriate data. 2. Where you want to make it simpler for beginners who are used to having a big button that says: Exit. 3.

Re: I think the forum is having some issues?

2008-05-29 Thread Edward Jones
...and the opposite - have you seen the Compressing with zlib message posted in 2012?! Edward Jones Ryan Rix wrote: Hi, Why are we getting backlogged messages from 2000? My inbox is utterly swamped. Just a bit curious, Ryan -- Thanks and best regards, Ryan Rix TamsPalm - The PalmOS

Help, I receive emails of 2000

2008-05-29 Thread Peter Feldmann
Hello, since yesterday I receive permanent email of the year 2000. about 100 per hour. Can you rescue me. -- Mit freundlichen Grüßen Peter Feldmann LACOS Computerservice GmbH Giengener Straße 21, D-07937 Zeulenroda-Triebes Telefon: (+49) 3 66 28/688-0, Telefax: (+49) 3 66 28/688-17

Version String

2008-05-29 Thread David Heil
What I have successfully done so far is to include the following string in my main file (the one with PilotMain in it): const char project_revision[] = $ProjectRevision: 0.1 $; This string is automatically updated by the version control software (MKS Source Integrity) when I checkpoint the

Re: What am I doing wrong here?

2008-05-29 Thread John Leung
I don't see what's wrong. I only have one question for you. Did you open your database in read-only mode? If you did, you'll get a fatal error when you try to create a new record. On Thu, 12 Oct 2000 22:12:39 -0400, Sean L. Gilley [EMAIL PROTECTED] wrote: I have a program with the

Re: I have a file that needs to be converted to PDB

2008-05-29 Thread Richard M. Hartman
It looked like she was going to be traversing the XML on the desktop machine, and only needed the data on the Palm. If this is the case, then the question again becomes for which app? If she wants the XML itself, there is always Doc format. Or even memopad format if it will be under 4k. --

Is it possible to make an Unbeamable apps

2008-05-29 Thread Patrick Ouellet
-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Patrick Ouellet - Programmeur [EMAIL PROTECTED] Recherche Devloppement Les Entreprise Microtec inc. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see

Re: i need a suggetion for my recoeds...

2008-05-29 Thread Eliah Ninyo
hi Chris, thanks very much for your help, it've been very helpful. but i have another Q: how do i know what number to put in the char [X]? does it always has to be the actualy long (size) of the input-data plus one (for Null)? according to this, why did u define the SrvCall to be [10] if it is

Re: Palm and XML

2008-05-29 Thread Heather Gazdik
I am using XML with the pocket PC, just wanted to know if I can use it with the Palm OS. I quess I will try and use the XMLDOM in C++ to parse the data into a file format. Thank you, Heather Joseph Koral [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Heather Gazdik [EMAIL PROTECTED]

Palm and XML

2008-05-29 Thread Heather Gazdik
HI, Is anyone using XML with the Conduits/Palm OS?? Anywhere to find some information?? thanks, Heather -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: FldSetTextPtr

2008-05-29 Thread Nathan Peterson
Thanks for the help. I used FldRecalculateField() and text displayed properly, but the scrollbar doesn't show up. Here's my new code: #define About_text 1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n Char *test = About_text; form = FrmGetActiveForm();

Insertion Point Problem

2008-05-29 Thread Stringer
With the 3.5 debug ROMs, I'm now getting Insertion Point Problem messages routinely. Never have seen this with other ROM images. The problem even occurs within window displayed with FrmCustomAlert () on top of a screen with entry fields. What specific event is this message recording? Whatever

Re: *@#!! Some amazing problems !

2008-05-29 Thread Richard Hartman
Huh? FrmGetObjectPtr() is the proper way to get a form pointer? Well ... no. It's the proper way to get a pointer to an object that lives in a given form. I still don't see no GetObjectPtr() in the API docs. You say it's in sample source code? Perhaps the sample source code has (as I

Re: FldSetTextPtr

2008-05-29 Thread Dave Lippincott
Neil Rhodes [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] A string constant (like abc) is constant and exists for the lifetime of the application. Thus, passing a string constant is just find for FldSetTextPtr. It's guaranteed to exist for the life of the field (unlike, let's

Re: hot sync programatically?

2008-05-29 Thread Bradly J. Barton
Adding a button event to the Queue will execute whatever application is assigned to it through the Preferences panel.. to actually launch hotsync, you can use the following code snippet: What you need to do is launch the HotSync manager with either the sysAppLaunchCmdSyncRequestLocal or

Re: C vs. C++

2008-05-29 Thread Stormgate Communications
In my experience (both on the Palm and in the embedded systems world) it's certainly possible to use C++ and stay almost as efficient as pure C, while gaining a lot of the advantages that C++ provides. I'd suggest approaching it as an embedded system (i.e. firmware) as opposed to a desktop

Re: Data Moving Problem

2008-05-29 Thread Richard Hartman
[EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]... I didn't miss the extra one. Just look at the line followed the FOR statement, which adds number of char* fields to variable length. Ok, I see that ... it isn't obvious why you're adding frp_facilityCount to the length until it's

Springboard Module Cases???

2008-05-29 Thread Jay
Is anyone here familiar with any company that makes the cases for the Springboard Modules?? Any companies list on the net?? Any help would be much appreciated. Jay Canale Software Engineer -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see

PalmSource - Travel Info

2008-05-29 Thread Chris DiPierro
I know this is slightly OT, but I assume a lot of people here are going to PalmSource. On Palm's website, they list ETMI as a travel agency to make reservations through. However, upon calling them, I found them to be relatively uninformed about the conference. They were unaware that they were

Re: TCP/IP, SSL and PALM

2008-05-29 Thread Christian Vandendorpe
When I finish with my current stuff I will take a look. However I am only going to spend time on this if I find existing code that is not GPL (LGPL, BSD, Mozilla licenses would be ok). There is not much point for me to spend time on this if my entire app is going to be infected with the GPL virus

localization and CodeWarrior

2008-05-29 Thread Stephen Bentley
Are there specific settings inside of CW to set which locale you are compiling for? I'm trying to find out why my overlay isn't working. If there are, I can't find them. Stephen Bentley www.middlecross.com -- For information on using the ACCESS Developer Forums, or to unsubscribe, please

System Resources - Can they be viewed ?????

2008-05-29 Thread Van Nguyen
Hi everyone, I am working on creating a note view for my database record so that when user click on a record in my table, he/she will get to the Note View screen and be able to edit text, save or delete. This will be similar to the Note View in Address Book example provided by Palm. In the

Re: 16 bit color Handspring Prism and chunk size limit

2008-05-29 Thread Richard Hartman
I wasn't responding as to whether it should have been in the handspring forum or not ... only to the denial that there wasn't one to post in. -- -Richard M. Hartman [EMAIL PROTECTED] 186,000 mi/sec: not just a good idea, it's the LAW! Linke, Andreas wrote in message [EMAIL PROTECTED]...

Re: Illegal 32-bit references in a C++ shared library

2008-05-29 Thread Greg Martin
Patrick, I'm looking into single-segment C++ development and was wondering if things have gone well for you since posting your last message or if you've ran into additional problems. I tried a simple single-segment C++ app and immediately ran into the problem you discussed -- thanks for the

scrolling text

2008-05-29 Thread Nathan Peterson
I just want to create a simple form (for an about screen) that will display non editable text that scrolls. What's the best way of doing that? Right now I'm using a dialog box, but the text just gets cut off when it doesn't fit in the form. -Nathan -- For information on using the ACCESS

Re: Installation Problem

2008-05-29 Thread Ayamico
Hi, Of course. Try uninstalling and reinstalling cygnus again. emerson tan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi! I'm new to this list and is just starting to develop software for palmos. I have this installation problem... I have CYGNUS installed on my machine. I

No such file: (newbie post!)

2008-05-29 Thread Shane McKee
Dear folks, I am a complete neophyte at Palm programming, and C++ in general, so please be kind :) I'm running SDK 3.5 for PRC-Tools. I'm trying to MAKE the tutorial examples (tex2hex.c), so I go to the relevant example folder, and type MAKE, expecting the makefile to look after options etc.

Re: Mofifying AppInfo block

2008-05-29 Thread Hari Warrier
Look at any example app! See AddrAppInfoInit() in AddressDB.c Labhesh Patel [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I was trying to modify the contents of the PQA AppInfo block. After creating the chunk which contains all the appInfo data - pqaTitleWords,

window's content!

2008-05-29 Thread Flora_Mahdavi
In 3.5 we can use WinGetBitmap() to access a windows content, what is the compatible command/combination of commands in 3.1? Flora -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: MIME type for .prc/.pdb files

2008-05-29 Thread Adam Wozniak
Richard Hartman wrote: Adam Wozniak wrote in message [EMAIL PROTECTED]... and pulling it into common usage. x- means EXPERIMENTAL! no, what it means is extension. basically it designates a mime type that has not been blessed by the official registry. anybody who agrees on what an

Re: Help Determining Program Feasibility

2008-05-29 Thread Richard Hartman
Sounds like most of the work would be in the conduit, not the Palm app. The really tricky part would be reconciling changes from different users to the same record. It might be worthwhile to use some sort of revision control system to manage such things. RCS is still a great revision control

Re: UI objects zorder?

2008-05-29 Thread Stephen Byatt
Thanks John, the zorder is defined by the object ID. You can change the objects ID of the UI objects to suit the required zorder. SB - Original Message - From: John Cundall [EMAIL PROTECTED] Newsgroups: palm-dev-forum To: Palm Developer Forum palm-dev-forum@news.palmos.com Sent: Thursday,

UI objects zorder?

2008-05-29 Thread Stephen Byatt
Using constructor, how do you specify whih objects are above others? I ask because I have set a FormBitmap the size of the window that contains a backdrop I wish to use, but it is placed over the UI objects at run time. Any explanantion, or am I being dumb? TIA, Stephen Byatt -- For

Re: ErrCatch obscures local vars?

2008-05-29 Thread Craig Torell
Yep, that did the trick. Thanks loads! John Marshall [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Craig Torell [EMAIL PROTECTED] wrote: Int16 a = 1; Int16 b; ErrTry [...] ErrCatch(err) { // Here, a is now 1, and b is garbage, as if they

PopTriggers's List

2008-05-29 Thread chongwm
Is there a way to get the list associated with a poptrigger programmatically? I know how to get it when the popuptrigger is tapped, by intercepting popSelectEvent. But I do not know how to get it at any other time. Right now I'm hacking it by hardcoding the resourceID of the list to my app, but I

Re: Memory LEAK??

2008-05-29 Thread chongwm
There was talk about this some months back on this list. An article about mem leaks was mentioned too. http://www.fifthgate.org/articles/palm_mem_leaks.html [EMAIL PROTECTED] wrote: Hi, i am allocating a large ammount of memory in my application. will it be de-allocated automatically when i

APPID

2008-05-29 Thread Nathan Peterson
What's the difference between the APPLICATION ID in the .rcp file and the APPID used as a parameter for build-prc? -Nathan -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

*@#!! Some amazing problems !

2008-05-29 Thread Rajesh Patidar
Hi everybody, Just look to this simple code. /*A simple function for setting the **maximum value in scroll bar **/ void SetMaxScrollBar(short setVal) { short val=0,minVal=0,maxVal=0,pageSize=0; ScrollBarPtr

categories and app info

2008-05-29 Thread Heather Gazdik
Hi, I have a text file (converted from xml) that I am converting to a pdb via generic classes. The pdb will contain data that will be a record of chapter, title, questionSubsection, questionID, question, answer. When converting a text file to a pdb, how is the data categorized. If it is a text

Re: draw before FrmDrawForm in color debug ROM

2008-05-29 Thread Stringer
(This is a resend of a message from Oct 1. I never saw any messages from Oct 1, so I apologize if an answer was sent and has been lost) Subject: draw before FrmDrawForm in color debug ROM From: Laurence Lundblade [EMAIL PROTECTED] Date: Sat, 30 Sep 2000 15:39:23 -0700 (PDT) Seems the PalmOS 3.5

SV: Is the palm forum archived anywhere?

2008-05-29 Thread Bulent Gecer
Check out http://www.egroups.com/group/palm-dev-forum /Bulent Gecer Tim Spurrell [EMAIL PROTECTED] skrev i diskussionsgruppsmeddelandet:[EMAIL PROTECTED] Or is all this useful information lost forever? T. -- For information on using the ACCESS Developer Forums, or to unsubscribe,

Re: How to change Apps Name

2008-05-29 Thread Richard M. Hartman
Richard Burmeister wrote in message [EMAIL PROTECTED]... From: Patrick Ouellet [EMAIL PROTECTED] Subject: How to change Apps Name There are several places you need to replace the word starter with TestCheck: ... As you can see, this is a giant pain in the derriere. D'ya think that they'll

Re: Set Text to Field

2008-05-29 Thread Dave Carrigan
lklee [EMAIL PROTECTED] writes: I am using the follow function to set an text to an Field But that always return, is there anyone who can help me to solve it. static void SetField( FormPtr frmP, unsigned short field_id, char *text ) { // Set the associated field's text FieldPtr

Re: i need a suggetion for my recoeds...

2008-05-29 Thread Eliah Ninyo
hi Chris, thanks very much for your help, it've been very helpful. but i have another Q: how do i know what number to put in the char [X]? does it always has to be the actualy long (size) of the input-data plus one (for Null)? according to this, why did u define the SrvCall to be [10] if it is

DmCreateDatabaseFromImage

2008-05-29 Thread PalmOS
Has anyone been able to use DmCreateDatabaseFromImage sucessfully? In the following function: void DoUnArchive(void) { DmOpenRef dbRef; VoidHand h; void *ptr; Err err; // I open databases all over the place so I have a function to do it OpenDB( Archiver, dbRef ); h = DmGetResource

egroup usesr: plz answer to msg #39828

2008-05-29 Thread Eliah Ninyo
hello, i really want some help with my Q, so plz answer them in #39828 or look for my msg from 3/10/00 with my name beside. tnx :-) -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

UIColorSetTableEntry

2008-05-29 Thread Peter Hribar
With UIColorSetTableEntry I can change color to anything (UIDialogFrame, UIDialogFill, UIFormFrame...), except to form (UIFormFill). It's white, until I open and close a dialog window. Where is the trick? Peter -- For information on using the ACCESS Developer Forums, or to unsubscribe,

Re: TCP/IP, SSL and PALM

2008-05-29 Thread Christian Vandendorpe
me to spend time on this if my entire app is going to be infected with the GPL virus just because of an SSL library in it. You could of course just make the library itself GPL and let your app call it. Or you can ask the owner of the GPLed code how much it would cost for you to

Font index not found.. CW Bug?

2008-05-29 Thread chongwm
After moving my app into the multi-segment stationary, CW6 sometimes spits out Unexpected Error #32. Font index not found.. Compilation halted when I try to compile my code. Closing and re-opening my project seems to silence that error for a little while. Is there a bug in CW? Or is there some

C++ Templates (STL)

2008-05-29 Thread punkraver
Is it possible to use C++ STL templates in writing PALM programs using GCC and PRC-TOOLS on a linux ? -- Why is College Club the largest and fastest growing college student site? Find out for yourself at

Re: An impossible error -- HERES YOUR EXPLANATION

2008-05-29 Thread Jacob Vitas Vogelstein
I am not bold enough to disagree, since I can see by the number of your posts that you know a lot more than I do about this stuff, but here's why I would object to this solution: 1) Since this code occurs in a Hackmaster hack, it is unloaded each and every time after it is called. In this

Re: Numerics and DB Items

2008-05-29 Thread Allan Lindsay
Thanks...I think I understand that part OK. What I don't understand is how to store the 60 minutes (or other time) as a numeric in the DB and table. I have a string saved right now and believe I should have an int saved. This should also allow me to right justify the displayed minutes. Allan

Re: PRC-Tools 2.1, when?

2008-05-29 Thread Dave Lippincott
I remember this list before attachments were stripped. Personally, I'm much happier here without them. Yes ... but you also obstruct the flow of patches et. al. .. i surely would be p*ssed off big time if i got codewarrior patches over this email list :P -- For information on

Missing Gfx on Graphic buttons

2008-05-29 Thread Stephen Byatt
Hi all, I hope somebody can help me with this little problem. I have been trying to use graphic buttons. They display quite happily in Constructor, but when run on the emulator, the gfx only shows when the button is pressed. It's a blank button when it's not pressed. Why? Is this normal

Build-PRC Unrecognized File Format

2008-05-29 Thread punkraver
Hello, I tried building a palm application using PRC-tools on a linux platform. It compiled well and built the object executable with m68k-palmos-gcc. However, when i tried using the build-prc command to combine the *.bin (from pilrcui) to the executable, I received a file format error. What

Re: Need help filling out the Palm Confidentiality Agreement

2008-05-29 Thread Adam Wozniak
Fred Dujardin wrote: Hello I'm posting this again, because I can't see my own message or any response, so I guess something went wrong... Sorry if this seems like a stupid question, but I'm not familiar with American legal terms and contracts, and since this is going by mail I don't want

Re: REPOST: exiting from an alarm acivated app

2008-05-29 Thread Richard M. Hartman
Does posting an AppStopEvent instead of a silkscreen key press work ? -- -Richard M. Hartman [EMAIL PROTECTED] 186,000 mi/sec: not just a good idea, it's the LAW! John Prinos wrote in message [EMAIL PROTECTED]... Hello all, BACKGROUND: My app gets activated by tapping on its icon in the

Re: @stake Advisory: PalmOS Password Retrieval and Decoding (A092600- 1)

2008-05-29 Thread Bradly J. Barton
Indeed. My first reaction to the advisory was duh. There is a product out there (available at PalmGear.com, I believe) called Sword that lets you unlock your Palm again if you forget your password... and its been around for as long as I remember (from my early days with my Palm Pilot Personal).

Re: OS 3.5.2

2008-05-29 Thread chongwm
www.palm.com Shay wrote: where can i get the update for OS 3.5.2 ? for a device AND for an emulator ? shay -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: Exit?

2008-05-29 Thread Richard M. Hartman
Nesse, Rustin wrote in message [EMAIL PROTECTED]... ... soapbox Most clients are exploring how to use a handheld in their business when they come to integrators and consultants like you and I, ... I have found that what they want and what they need are sometime two totally separate things.

Feature Manager vs. Preferences

2008-05-29 Thread Dave Carrigan
What are the pros and cons of using FtrSet and friends versus PrefSetAppPreferences and friends for storing application state? I've been using preferences to store state information such as last viewed record, etc., but I'm wondering if I should be using the feature manager instead. Any opinions?

  1   2   3   4   5   6   7   8   9   10   >