Help please ~ winEnter/winExit

2009-03-27 Thread Darren
hello, am tring to catch the window/form draw event, for system dialogues like alarms, clock/date dialogue, etc. before drawn to screen, for the purpose of restoring the UIcolors. Using winEnter/winExit is not possible as they are both sent after the dialogues close ? The SDK

Re: Help please ~ winEnter/winExit

2009-03-27 Thread Jeff Loucks
Dialogs (and other miscellaneous sink holes) have their own event loops. If an event is caught by another event loop, you will not see it. Another way to see events is to register for sysNotifyEventDequeuedEvent, which will allow you to preview events as they are dequeued by you or whomever. Be

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-22 Thread Roger Stringer
Note: You don't so much clear the bit, as not actually ever set it in the first place. At 03:15 AM 3/22/2009, you wrote: Subject: RE: cannot clear dmRecAttrDirty bit, help please From: Darren adelph...@yahoo.co.uk Date: Sat, 21 Mar 2009 03:01:27 -0700 X-Message-Number: 1 am using DmReleaseRecord

RE: cannot clear dmRecAttrDirty bit, help please

2009-03-21 Thread Darren
am using DmReleaseRecord() to close the record directly after DmWrite() is finished writing the records. Cannot find any other function that closes records ? It appears like the database is protected by the system, as no record attributes can be changed ? Darren -- For information on

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-20 Thread Darren
storage on database create, database close and also on DmSetRecordInfo(), is it perhaps this that is causing the bug ? Does anyone know ? many thanks for all help regards Darren -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-20 Thread Dmitry Grinberg
, database close and also on DmSetRecordInfo(), is it perhaps this that is causing the bug ? Does anyone know ? many thanks for all help regards Darren -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums

RE: cannot clear dmRecAttrDirty bit, help please

2009-03-20 Thread Philip Sheard
I felt like saying that myself. The bit about NVFS, that is. -Original Message- From: Dmitry Grinberg [mailto:dmitr...@gmail.com] Sent: 20 March 2009 18:20 To: Palm Developer Forum Subject: Re: cannot clear dmRecAttrDirty bit, help please you only need to close records you opened

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-19 Thread Darren
if (attrdmRecAttrDirty) attr = ~dmRecAttrDirty; still no success. have tried dmNewHandle/dmAttachRecord. dmAttachRecord() sets the dirty bit. Using a resource editor it is possible to change the bit. many thanks for help regards Darren -- For information on using the ACCESS Developer

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-19 Thread Regis St-Gelais
Darren adelph...@yahoo.co.uk a écrit dans le message de news: 187...@palm-dev-forum... Have a look at Err DmReleaseRecord (DmOpenRef dbP, UInt16 index, Boolean dirty) Purpose Clear the busy bit for the given record and set the dirty bit if dirty is true. -- Regis St-Gelais www.laubrass.com

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-18 Thread Darren
no success, 1) attr = ~dmRecAttrDirty; after the record has been written, does not work. 2) have tried both attr = ~dmRecAttrDirty and attr = 0; in a loop (0 to max records-1) at application stop, before the database is closed. Also does not work. many thanks and regards Darren

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-16 Thread Bodo Wenzel
attr-=dmRecAttrDirty; Please use attr = ~dmRecAttrDirty; as /subtracting/ is not the appropriate method to clear a bit! However, did you try to clear the bit after releasing the record? It's quite likely that the OS saves the dirty bit at some intermediate location. HTH Bodo -- For

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-16 Thread Lionscribe
I am not sure if you tried this, but I am sure that you should change the dirty attr after MemHandleUnlock, and after DmRelease record, and probably after DmInsertionSort (just you will first have to find the record, since the index has changed during the sort. Use the id). Lionscribe -- For

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-14 Thread Darren
1) The goto statement is useful for 'code optimization' (reducing byte size of .c source files). X amount of returns incase of errors means having to, for example, -reset draw state before return -close and/or release any number of handles/ptrs -close open files/ filestreams/databases - etc.,

cannot clear dmRecAttrDirty bit, help please

2009-03-13 Thread Darren
; } Any help appreciated, many thanks regards Darren -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: cannot clear dmRecAttrDirty bit, help please

2009-03-13 Thread Ryan Rix
code : /** CODE REMOVED BECAUSE LYRIS DENIED MY MESSAGE **/ Any help appreciated, many thanks regards Darren -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/ -- Thanks and best regards, Ryan Rix

Help please - WinPaintRectangle

2009-01-19 Thread Darren
Hello, on the TX, there are two built in applications, the PalmOS standard launcher and the Favourites application launcher, that appear to use the PalmOS rectangle draw functions to create transparent rectangles when selecting an application to launch. The question is : How is this done please

re: WinDraw Operations .. Help please

2009-01-14 Thread Darren
winInvert winDrawOperation ~source XOR with destination blit -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

WinDraw Operations .. Help please

2009-01-13 Thread Darren
Hello, how is the Draw Operation 'WinInvert' actually implemented. As it does not appear to follow the SDK documentation, from SDK : 'winInvert Bitwise XOR the color-matched source pixel onto the destination. This mode does not honor the transparent color in any way.' Usage : when inverting a

Re: help please! -RGB hex values

2009-01-05 Thread Darren
Thanks, have that info. regards Darren -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

help please! -RGB hex values

2009-01-03 Thread Darren
255 different possible RGB values.) Many thanks all help appreciated Darren -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: help please! -RGB hex values

2009-01-03 Thread Jeff Loucks
at 5bits+6bits+5bits = 32*64*32 possible colours, RGB values are in the ranges 0.255, making a total of 255*255*255 possible set of three numbers. This means that for each real colour there are around 255 different possible RGB values.) Many thanks all help appreciated Darren

Re: WinHandles (TX OS5.49) help please

2008-12-19 Thread Darren Barnes
--- On Thu, 18/12/08, Michal Seliga michal.sel...@visicom.sk wrote: From: Michal Seliga michal.sel...@visicom.sk Subject: Re: WinHandles (TX OS5.49) help please To: Palm Developer Forum palm-dev-forum@news.palmos.com Date: Thursday, 18 December, 2008, 7:59 PM are you sure that you delete only

WinHandles (TX OS5.49) help please

2008-12-18 Thread Darren
Hello, am deleting windows on app close, like so; if (windowHandle) WinDeleteWindow(windowHandle, 0); everything appears to work fine after the application has closed after around 7 uses of the application the palm resets. Taking out the WinDeleteWindow() call resolves the issue, the question is

Re: WinHandles (TX OS5.49) help please

2008-12-18 Thread Michal Seliga
are you sure that you delete only windows you created and that you don't try to delete same handle twice? it could be some copypaste mistake... Darren wrote: Hello, am deleting windows on app close, like so; if (windowHandle) WinDeleteWindow(windowHandle, 0); everything appears to work

Help please, 'No shadow window'

2008-10-29 Thread Darren Barnes
Hello,am getting an occosional system dialogue :'Window68K.c, Line:92, No shadow window found(Reset)'am thinking it is associated with the WinCreateOffscreen() handle, does anyone know the exact cause for this error. many thanks and regardsDarren -- For information on using the ACCESS

Re: PenEvents and screenX, screenY - help please

2008-10-27 Thread Alexandre Rousseau
the possible values are not available. is there a way of returning the high-resolution coords required from the pen events. many thanks for any help, much regards Darren -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access

Re: PenEvents and screenX, screenY - help please

2008-10-14 Thread Darren Barnes
Thanks for the response, have tried them on both the TG50 and TX, both compile (OnBoardC) but display 'system error dialogues'. Have come to the conclusion that the touchscreen is configured to the original palm specifications, (these must have had direct 1:1 mapping of touch sensors to screen

Re: PenEvents and screenX, screenY - help please

2008-10-14 Thread Luc Le Blanc
Darren Barnes wrote: Have come to the conclusion that the touchscreen is configured to the original palm specifications, (these must have had direct 1:1 mapping of touch sensors to screen coordinates at 160x160) and when 'high-density' displays were released the touch sensors where not

Re: PenEvents and screenX, screenY - help please

2008-10-14 Thread Dmitry Grinberg
I know there are ARM api that do get native coords. I used them all the time. I guessed those 68k api would call them guess not. Best Regards, Dmitry Grinberg (847) 226 9295 On Tue, Oct 14, 2008 at 8:17 AM, Luc Le Blanc [EMAIL PROTECTED] wrote: Darren Barnes wrote: Have come to the

Re: PenEvents and screenX, screenY - help please

2008-10-13 Thread Darren Barnes
The question, more accuratly, is:   is the touchpad input device that covers the output display configured with 320x480(TX) input sensors (or 320x320, most other newer palms, etc.)   many thanks all help appreciated     -- For information on using the ACCESS Developer Forums

Re: PenEvents and screenX, screenY - help please

2008-10-13 Thread Darren Barnes
[EMAIL PROTECTED] wrote: From: Dmitry Grinberg [EMAIL PROTECTED] Subject: Re: PenEvents and screenX, screenY - help please To: Palm Developer Forum palm-dev-forum@news.palmos.com Date: Saturday, 11 October, 2008, 8:38 PM set screen density to 144 On 10/11/08, Darren Barnes [EMAIL PROTECTED] wrote

Re: PenEvents and screenX, screenY - help please

2008-10-13 Thread Dmitry Grinberg
help appreciated -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/ -- Best Regards, Dmitry Grinberg (847) 226 9295 -- For information on using the ACCESS Developer Forums, or to unsubscribe, please

PenEvents and screenX, screenY - help please

2008-10-11 Thread Darren Barnes
-resolution coords, but that means that half the possible values are not available. is there a way of returning the high-resolution coords required from the pen events. many thanks for any help, much regards Darren -- For information on using the ACCESS Developer Forums, or to unsubscribe

Re: PenEvents and screenX, screenY - help please

2008-10-11 Thread Dmitry Grinberg
-density coords (0-159, 0-159) These values can be multiplied by two to get the high-resolution coords, but that means that half the possible values are not available. is there a way of returning the high-resolution coords required from the pen events. many thanks for any help, much regards Darren

Re: Notifications, help please

2008-09-29 Thread Jan Slodicka
, 2008 11:22 AM Subject: Re: Notifications, help please Thankyou and many thanks. is 'code 1' the code resource of the total compiled desk accessory or can the function (notif handler) be compiled seperatly and used instead. Also from this it would appear that the locked

Re: Notifications, help please

2008-09-28 Thread Darren Barnes
, 27/9/08, Jan Slodicka [EMAIL PROTECTED] wrote: From: Jan Slodicka [EMAIL PROTECTED] Subject: Re: Notifications, help please To: Palm Developer Forum palm-dev-forum@news.palmos.com Date: Saturday, 27 September, 2008, 10:25 PM  Hi Darren,   we use the code bellow. Just supply your definition

Notifications, help please

2008-09-27 Thread Darren Barnes
? Is the pointer that is passed to the sysNotifyRegister a pointer to an abosulte address inthe storage heap, or is it a pointer that is an offset from the start of the database thatspassed?Any help please, many thanks and regardsDarren   -- For information on using the ACCESS

Re: Notifications, help please

2008-09-27 Thread Jan Slodicka
) ; } } DmReleaseResource(h) ; } DmCloseDatabase(dbRef) ; } } return err ; } - Original Message - From: Darren Barnes To: Palm Developer Forum Sent: Saturday, September 27, 2008 11:31 AM Subject: Notifications, help please Helloam using notifications

Re: fNav Help

2008-08-25 Thread Rob
I gave up on fNav - it seemed too painful to use. Instead I wrote a handy set of functions that figures out what navigation should happen. then I just add if(EasyNavHandleEvent(eventP)) { return true; } at the top of my form's event handler. drop me a line if you'd

Re: fNav Help

2008-08-09 Thread P REEDER
You can either write a "table" of rows of objects, or use ABOVE and BELOW for a more complicated navigation layout.FORCEINTERACTION is for tables and lists, IIRC- when the navigation focus is changed to the item, up and down keys change which item is selected, not whether focus changes to the next

Re: fNav Help

2008-08-09 Thread Ben Rittgers
Thank you. I guess I need the FORCEINTERACTION to make my table receive focus. Ben P REEDER wrote: You can either write a table of rows of objects, or use ABOVE and BELOW for a more complicated navigation layout. FORCEINTERACTION is for tables and lists, IIRC - when the navigation focus

fNav Help

2008-08-08 Thread Ben Rittgers
I am trying to do 5-way navigation on my Centro and cannot figure out how to make the 5-way Navigation resources work. Adding a navigation either breaks scrolling (kFrmNavHeaderFlagsObjectFocusStartState) or breaks tabbing between buttons (kFrmNavHeaderFlagsAppFocusStartState) How exactly do I

Re: fNav Help

2008-08-08 Thread Ryan Rix
Hi, Pilrc ships with examples, including an fnav example. The docs also explain it quite nicely ~Ryan -- Thanks and best regards, Ryan Rix TamsPalm - The PalmOS Blog I begin to wonder if randomized sigs really accomplish anything. On Friday 08 August 2008 08:02:38 pm Ben Rittgers wrote:

Re: fNav Help

2008-08-08 Thread Ben Rittgers
I did read through the manual that came with PilRC 3.2 and could not figure out what is going on there. The example was not even that helpful. I did do research and study the Palm API and The PilRC manual before I posted here. By the way, I use CodeWarrior 9.3 with the latest SDK installed.

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

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

Need more color depth help

2008-05-29 Thread Jim Duffy
Hi all, Could someone offer additional help in getting my bitmaps to display in 16 gray scale in my app. Dave pointed me to the WinScreenMode() function, however I can't seem to get this function to work for me. I don't quite understand what to pass to this function to set the entire display

Re: Need more color depth help

2008-05-29 Thread Richard M. Hartman
Shay wrote in message [EMAIL PROTECTED]... the WinDisplayMode is for OS 3.5 ONLY, you can use ScrDisplayMode : UInt32 depth = 4; WinDisplayMode(winDisplayModeSet, NULL, NULL, depth, NULL); - 3.5 only ScrDisplayMode (scrDisplayModeSet, 0, 0, depth, 0); - for all OS If they map to the same

Re: Help, I receive emails of 2000

2008-05-29 Thread Helmut A. Bender
Am Donnerstag, 29. Mai 2008 10:04:30 schrieb Peter Feldmann: Hello, since yesterday I receive permanent email of the year 2000. about 100 per hour. Can you rescue me. I do really hope there won't come any posting until today... -- Mit freundlichen Grüßen Peter Feldmann LACOS

Re: Link Error help needed

2008-05-29 Thread Jim Duffy
, August 03, 2000 6:29 PM To: Palm Developer Forum Subject: Link Error help needed Hi everyone, as a novice to C and C++ as well as palm programming. I am working on my first palm program now which I started using the standard palm os 3.1 stationary provided in Code Warrior. I have about 7

Link Error help needed

2008-05-29 Thread Jim Duffy
for the help and I apologize for this kind of long post. Jim -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: Module Help

2008-05-29 Thread Thomee Wright
. Any ideas? Thanks Andrew Thomee Wright [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I can't see any problems with it right off, but your description of the error was pretty vague. If you could include the actual text of the error message (esp. line numbers), that would help

Re: please help

2008-05-29 Thread Ewaryst Izewski
The full instruction is more then 3 pages long. It was once published on the site http://www.vfdide.com/ However, it is no longer there. Go there, send an e-mail to the owner of the page asking him help. He should have the instruction somewhere saved. If you not succeed, I will scan my pages

Re: please help

2008-05-29 Thread Ewaryst Izewski
directories in my autoexec.bat but i still have problems compiling programs. I tried make on the samples provided in the package but i get include errors: common.h: no such files or directory System/SysAll.h: no such files or directory UI/UIALL.h: no such files or directory Please help ! Thanks

Don't help the jerk HELP ME!! ...SYSAPPLAUNCH

2008-05-29 Thread Rick Gadbois
I am reposting this REAL REQUEST as I got no response yesterday, I noticed that someone please help me got tons of response. C'mon guys! Hello, I need my application to display the networking services to the user that are usually displayed

Don't help the jerk...Help me!!

2008-05-29 Thread Rick Gadbois
I am reposting this REAL REQUEST as I got no response yesterday, I noticed that someone please help me got tons of response. C'mon guys! Hello, I need my application to display the networking services to the user that are usually displayed

Re: Someone please help me

2008-05-29 Thread Richard Hartman
Hari Warrier wrote in message [EMAIL PROTECTED]... Why blame the Someass Koolkarky ? I was ROTFL after reading the mail. It was a cool name for you know who - If you look at yesterdays thread, you will know who. Geez! How could I have missed that! But shouldn't it have been _Mister_ Someass

Re: Someone please help me

2008-05-29 Thread Hari Warrier
PM To: Palm Developer Forum Subject: Someone please help me I'm new at parogramming PALM applications and would rather not have to read all the documentation. You all don't mind if I just ask you all my questions, right? I know Micorsoft VB so it should be very easy to write palm

Re: Someone please help me

2008-05-29 Thread Richard Hartman
Well ... he got the subject right, he definately needs help ... Someass Koolkarky wrote in message [EMAIL PROTECTED]... I'm new at parogramming PALM applications and would rather not have to read all the documentation. Translation: I don't like to do anything that resembles work. You all

Re: Someone please help me

2008-05-29 Thread Bradly J. Barton
I think this message has proven two things... 1. There are people on this forum willing to help no matter how far out in left field the questions are... and 2. It is way too early (too late?) for an April Fool's joke. -- For information on using the ACCESS Developer Forums

Re: Module Help

2008-05-29 Thread Thomee Wright
I can't see any problems with it right off, but your description of the error was pretty vague. If you could include the actual text of the error message (esp. line numbers), that would help. A problem that it looks like you haven't seen yet but will is that chars.c needs to include any relevant

Re: Someone please help me

2008-05-29 Thread Brian Pearson
Someass Koolkarky [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I'm new at parogramming PALM applications and would rather not have to read all the documentation. You will need to read documentation. You all don't mind if I just ask you all my questions, right? Questions are

Re: Experts, please help.

2008-05-29 Thread Thomee Wright
As far as creating a pdb file in VC++, get the SDK 3.5 docs from the Palm DevZone site, and look at Palm File Format Spec.pdf. Actually, on closer inspection, it appears that the file format spec document merely promises to describe PBDs sometime soon. You might ask Palm for that information.

Re: Newbie needs help

2008-05-29 Thread Faisal Amlani
changing direction or whatever. The sets we must write in a little notebook. there, we write the yard line, number of steps off yard line if applicable, number of steps of front, back sidelines/hashes, number of counts taken to get to that set and other info (like markers and such to help out

Re: Newbie needs help

2008-05-29 Thread Richard Hartman
Faisal Amlani wrote in message [EMAIL PROTECTED]... Apparently no one understood what I said. I have 1 Form, and I want to update the form with different sets of data that are held in a struct. So, it is 1 form which displays editable data of one element in the structured array. If one cycles

Re: Newbie needs help

2008-05-29 Thread Faisal Amlani
in the school marching band and am trying to write a little program to help me out. I've written out all the forms and have setup the structs as i need them to, now there are some dumb questions i need to ask (ok, maybe not dumb for a newbie, but to an advanced programmer). The reference is of no use

Re: Help! Strange compiler error message!

2008-05-29 Thread Scott Johnson
-mdebug-labels main.o -o prog Any help would be much appreciated. Thanks! --Scott -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/ Shoot

Re: Newbie needs help

2008-05-29 Thread Richard Hartman
Systems, Inc. -- Subject: RE: Newbie needs help From: Logie Urqhart [EMAIL PROTECTED] Date: Wed, 26 Jul 2000 10:32:41 +0100 I belive there are some design issues you might want to look at. Keep in mind that memory on the Palm

Table field problem - black box appearing? Please help

2008-05-29 Thread Tim Astle
I have a table set up like this: textTableItem | textTableItem | customTableItem I just encounted something very odd. Whenever I click on a record, for some reason the field directly before the customTableItem causes a black box to appear in it. It's exactly the same size of the field in the

RE: Newbie needs help

2008-05-29 Thread Stringer
Marietta Systems, Inc. -- Subject: RE: Newbie needs help From: Logie Urqhart [EMAIL PROTECTED] Date: Wed, 26 Jul 2000 10:32:41 +0100 I belive there are some design issues you might want to look at. Keep in mind that memory

Re: Help! Strange compiler error message!

2008-05-29 Thread Scott Johnson
Michael S. Davis [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I used to get this error when my application grew beyond the 32k limit. Then I switched to jump islands and would still get the error if my crt0 was placed in the wrong location. I have never seen the error since

Help! Strange compiler error message!

2008-05-29 Thread Scott Johnson
Does anyone have any idea what might be wrong? Here is my gcc command line: gcc -O0 -g -mdebug-labels main.o -o prog Any help would be much appreciated. Thanks! --Scott -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com

Newbie needs help

2008-05-29 Thread Faisal Amlani
Well, I'm 16 years old and this is my first venture into Palm OS (i've been doing Win32 for a bit). I am in the school marching band and am trying to write a little program to help me out. I've written out all the forms and have setup the structs as i need them to, now there are some dumb

Re: Help writing Japanese apps

2008-05-29 Thread Chris Percival
A KnowledgeBase article would be good, and would save space on this forum i guess! Chris Ken Krugler [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi Chris, At 12:00am -0700 00-07-22, Palm Developer Forum digest wrote: Subject: Re: Help writing Japanese apps From: Chris

Re: Please help re: editing fields

2008-05-29 Thread Dave Lippincott
: Friday, July 21, 2000 5:55 AM Subject: Please help re: editing fields Hi! I've posted my problem before, but I'm still having problems editing my fields. When I update a field longer than it's current length, the system can't handle it. I've tried the following methods to no avail. 1. I tried

Re: Help writing Japanese apps

2008-05-29 Thread Chris Percival
is missing its help file. Thanks, JHD IV -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Urgent !!!Please help

2008-05-29 Thread Umesh Umbrajkar
! And after this the whole application crashes!!! I need to reslove this issue urgently. Could anyone please help???I would really appreciate it!! Thanks in advance!! Umesh. -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com

Re: help

2008-05-29 Thread Richard M. Hartman
to: Subject: Re: help help o/ I need somebody ... o/ help! o/ Not just anybody... o/ help! o/ You know i need some one.o/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/ -- For information

Re: help

2008-05-29 Thread Richard M. Hartman
help o/ I need somebody ... o/ -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: handle question - please help

2008-05-29 Thread Richard M. Hartman
Tim Astle wrote in message [EMAIL PROTECTED]... Okay, this is probably a stupid question, but I'd like an answer nontheless :-) Is the following an adequate way of telling whether or not a handle has been freed? if(handle != NULL) MemHandleFree(handle); Not complete. Assume the value

help

2008-05-29 Thread Anson, Gary
help -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: handle question - please help

2008-05-29 Thread Tim Astle
Actually, it looks kind of like you might be deleting a locked handle somewhere, as you thought. Also, try changing the incrementation of your counters in your loop to j++ and i++. Just a thought... Thanks for the suggestions, but the post increment didn't help. I didn't figure it would

Re: handle question - please help

2008-05-29 Thread Tim Astle
Perhaps you're nesting the call in a function that is actually causing the problem? Well, on my frmCloseEvent, I call this function. Timothy D. Astle People on Jolt cola write the funniest things. A-10 Obedience Guide,

Re: handle question - please help

2008-05-29 Thread Tim Astle
Ugh, sorry about that previous post. I hit ctrl+Enter by mistake. Perhaps you're nesting the call in a function that is actually causing the problem? Well, on my frmCloseEvent, I call this function. void DisSelectViewFreeHandles() { int i, j; for(i = 0; i DIS_TABLE_ROWS; ++i)

handle question - please help

2008-05-29 Thread Tim Astle
Okay, this is probably a stupid question, but I'd like an answer nontheless :-) Is the following an adequate way of telling whether or not a handle has been freed? if(handle != NULL) MemHandleFree(handle); The reason I'm asking this is because I'm trying to free text handles in a table upon

Re: Reading directly from unlocked memory chunk: Please help

2008-05-29 Thread Dave Lippincott
- From: [EMAIL PROTECTED] To: Palm Developer Forum palm-dev-forum@news.palmos.com Sent: Friday, June 30, 2000 12:10 PM Subject: Reading directly from unlocked memory chunk: Please help Hi, I am trying to display text on to a field object by using the following function :- void

Reading directly from unlocked memory chunk: Please help

2008-05-29 Thread vishyk
Hi, I am trying to display text on to a field object by using the following function :- void DisplayTxtToField(FormPtr frm, UInt16 fieldID, Char* tempString) { MemHandle userTextH; FieldPtr fldP; Err err; fldP = FrmGetObjectPtr(frm,FrmGetObjectIndex (frm, fieldID)); userTextH =

Re: Read Palm Database from PC : please help

2008-05-29 Thread Dave Lippincott
@news.palmos.com Sent: Thursday, June 29, 2000 11:01 PM Subject: Read Palm Database from PC : please help Hello: I am new to palm and I want to read palm database structure, record names and their size, from a PC application. I have done it on palm programes but haven't come across an example where from

SysLibLoad help please!!

2008-05-29 Thread Anne Srinivas
with Palm os Ver 3.1. I cannot understand how SysLibLoad will load a library file in my desktop!! I tried moving library file onto emulator but with no success. I am struggling with this. Plase help me out. I have tried looking into ex from palmos.com. But it's not compling on my machine. Thanks

Help needed selecting / displaying specific records

2008-05-29 Thread Tim Astle
I have a table with many records on it. I would like to set it up so that the table will only display records based on a certain criteria. In SQL, it would do something like SELECT * FROM table WHERE columnName = whatever I'm doing some research on DmQuickSort, using the DmComparF parameter...

RE: Question on Table. Please help

2008-05-29 Thread Samuel Tu
I want the check box not editable. Thanks Sam -Original Message- From: Tim Astle [mailto:[EMAIL PROTECTED] Sent: Thursday, June 29, 2000 10:43 AM To: Palm Developer Forum Subject: Re: Question on Table. Please help What column has to be not editable? If it's the text one, you can just

Re: Question on Table. Please help

2008-05-29 Thread Tim Astle
box item, and next is text. How can I set only the column not editable, but visiable to user? I look at the SDK Ref. I can only set the whole table not editable, not single column.Please help. Thanks! Sam Samuel Tu Software Engineer Numoda

Question on Table. Please help

2008-05-29 Thread Samuel Tu
Hi Everyone. I have a question about table? I have a table, the first column is check box item, and next is text. How can I set only the column not editable, but visiable to user? I look at the SDK Ref. I can only set the whole table not editable, not single column.Please help. Thanks! Sam

RE: Using VC++ debug Conduit Question? Please Help

2008-05-29 Thread Samuel Tu
2:04 PM To: 'Palm Developer Forum' Cc: '[EMAIL PROTECTED]' Subject: RE: Using VC++ debug Conduit Question? Please Help See KnowledgeBase article #1674. http://oasis.palm.com/dev/kb/article.cfm?id=1674 Regards, Steve -Original Message- From: Samuel Tu [mailto:[EMAIL PROTECTED] Sent

Using VC++ debug Conduit Question? Please Help

2008-05-29 Thread Samuel Tu
Hi Everyone, I have a existing palm program and a customize conduit, I would like to debug the conduit step by step in source level. However, after I follow the conduit document from CDK to setup the VC++6, it just give me some inspector information. What I really want is go inside the conduit

Re: Linker Error: atoi referenced from QuestionForm() is undefined? P lease help

2008-05-29 Thread Dave Lippincott
Won't work. You can only use the functions in the Palm OS API. Try StrAtoI (note the caps) -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Linker Error: atoi referenced from QuestionForm() is undefined? P lease help

2008-05-29 Thread Samuel Tu
referenced from QuestionForm() is undefined. I already undefind the QuestionForm function, so I have no idea what's going on? Any idea? Please help. Thanks Sam Samuel Tu Software Engineer Numoda Corporation The Curtis Center 601 Walnut Street, 9th

Help : Serial Library

2008-05-29 Thread Dinesh
that hotsync is able to do this after the handspring modem module is attached. Help on this issue desperately Needed. Thanks in Advance. Dinesh -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Help with custom drawing for tables...

2008-05-29 Thread Gee Ng
Hi all! I need some help regarding the custom draw routines for tables. I started with the address book app, all is fine with the edit view when I compile the program (but of coz, it's the example!). I commented out the load and save procedures: // TblSetLoadDataProcedure (table, editDataColumn

  1   2   3   4   5   6   7   8   9   10   >