about SD card protection develop

2003-01-25 Thread Frank Tong
Hello. I am developing the SD card publish software. I've searched all the palm SDK and documents, but I can not find anything about SD card protection materials. I want to publish some e-book on the SD card. Where can I find the relational documents? Thanks! -- For information on using the Pa

Trouble with porting OS 3.5 app to 3.1

2003-01-25 Thread Richard Coutts
I have my a beta version of my app done that I developed for the 0S 3.5. I'm now using directives to shut some of the 3.5 specific stuff off so that it will also build for OS 3.1 (I have some graphic push button resources, too, which I'm changing to empty text push button with graphics underneath).

Re: keyDownEvent in popSelectEvent

2003-01-25 Thread Micky Menezes
Thanks Sir (Ben Combee) For your information. By the way I am using 4.1 SDK but LstGlueSetIncrementalSearch function is still there. One more thing I would like to know though I really dont know much of this c/c++ But just for knowladge when I saw "List.h" in attr type search is defined as UIn

Re: How can I include and work wth a TextField in Form?

2003-01-25 Thread Catalina Diaz Puig
I'm trying to get the user to introduce some text... do you have any example of how to use FldGetTextPtr()? Balita - Original Message - From: "Matt Graham" <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: Sent: Friday, January 24, 2003 2:48 PM Subject: Re: How can I include and work wt

Re: field data from another application?

2003-01-25 Thread Chris Antos
Yes. Get the field that currently has focus. FrmGetFocus(), FrmGetObjectType(), TblEditing(), and TblGetCurrentField() are the APIs to look at. "Ron Nicholson" <[EMAIL PROTECTED]> wrote in message news:110571@palm-dev-forum... > > Can an application launched by the Notification Manager > get da

field data from another application?

2003-01-25 Thread Ron Nicholson
Can an application launched by the Notification Manager get data (selected text in a field, for instance) from the form still shown on the display by the underlying application? How? Thanks, Ron Nicholson HotPaw Productions -- For information on using the P

Re: Setting memory pointer owners

2003-01-25 Thread Tom
Did you use MemPtrNew to allocate memory for MyParamsType->StrOne and MyParamsType->StrTwo as well as for MyParamsType itself? - Tom <[EMAIL PROTECTED]> wrote in message news:110523@palm-dev-forum... > > I keep getting an error when I attempt to set the owner of a structure to send with AppCallWi

Re: Form Object not getting hidden

2003-01-25 Thread David McNab
On Sun, 2003-01-26 at 14:07, David McNab wrote: > Hi, > > I'm creating a form and its objects dynamically. > > The dynamic creation functions for form objects, such as > 'FrmNewLabel()', 'CtlNewControl()' etc don't have any args for > visibility. > > Therefore, I'm calling 'FrmHideObject()' imme

Form Object not getting hidden

2003-01-25 Thread David McNab
Hi, I'm creating a form and its objects dynamically. The dynamic creation functions for form objects, such as 'FrmNewLabel()', 'CtlNewControl()' etc don't have any args for visibility. Therefore, I'm calling 'FrmHideObject()' immediately after creating the form objects I want to be hidden, but b

object not in form after FrmInitForm

2003-01-25 Thread Brian & Andrea Preston
I'm getting the 'object not in form' error when trying to load some fields on a form in my startup function. I'm using the model introduced in the Tutorial of having a separate .c file for each form, each with similar methods like FooFormHandleEvent and FooFormDoButtonCommand. I added a LoadFields

Re: Req Table Tutorial or Example

2003-01-25 Thread Oliver
> I have yet to learn to read and write databases. > Perhaps I should do that first... Personally, I found it much easier to do database read/writes than to get a table to work correctly under all circumstances. > I can't seem to find anything on the web. Check the PalmSource knowledgebase if

Re: I'm trying to record a sound sample on a tungsten T

2003-01-25 Thread Dawn Margerum
I have no idea what i did but my callback is suddenly getting called. Thx for the help ron. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: I'm trying to record a sound sample on a tungsten T

2003-01-25 Thread Dawn Margerum
The zero parameter for buffer size means use the default length according to the api docs. I switched to sndMono and 8000 but it still doesnt work for me This is what i have now. err = SndStreamCreate(&(data->fStream), sndInput,8000, sndInt16Little, sndMono, StreamCallback, data, 1024,false); c

Re: I'm trying to record a sound sample on a tungsten T

2003-01-25 Thread Ron Nicholson
Dawn Margerum writes: I'm trying to record a sound sample on a tungsten T Can some give me an example of the proper parameters needed for SndStreamCreate on a tungsten t? This is what im using now: err = SndStreamCreate(&(data->fStream), sndInput,44100, sndInt16Big,sndStereo,StreamCallback,da

Re: I'm trying to record a sound sample on a tungsten T

2003-01-25 Thread Dawn Margerum
8000 doesnt work either. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Req Table Tutorial or Example

2003-01-25 Thread Eddy
Hi I'm looking for information on how to build a Table into my Palm app. I've got the TODO app from the examples, but its a bit huge and the interaction between the UI and Database is complicated. I have yet to learn to read and write databases. Perhaps I should do that first... I can't seem to fi

Re: I'm trying to record a sound sample on a tungsten T

2003-01-25 Thread Dawn Margerum
Ok on palms website I found this: >The Voice Memo application records a monaural memo at a sample rate of 8 kHz. Play back of the >Voice Memo is accomplished through either the speaker on the device, or through an optional >headset that can be plugged into the PalmT TungstenT T. so what does 8khz

Re: I'm trying to record a sound sample on a tungsten T

2003-01-25 Thread Dawn Margerum
it doesnt seem to make a difference which i use (big or little), my callback still isnt getting called. the palm os documentation says "The data format that you specify for an input stream must match the data that's produced by the audio hardware." So how do i find out whats produced by the audi

Setting memory pointer owners

2003-01-25 Thread JKingGrim
I keep getting an error when I attempt to set the owner of a structure to send with AppCallWithCommand. Consider the following: typedef struct{ char *StrOne; char *StrTwo; } MyParamsType; I use MemPtrNew to allocate memory for the structure, then for the two strings. After filling what ever inf

Re: Question about multi-segment code

2003-01-25 Thread kcorey
On Sat, 2003-01-25 at 11:01, John Marshall wrote: > Ken Corey wrote: > >> You are, of course, compiling with "-Wall"? > > > > I hadn't been compiling with -Wall. I put -Wall in, got [...] > > a couple 'implicit declaration of function' errors. > > ...one of which related to the call of AdjustScr

Re: PRC-Tools compile error message

2003-01-25 Thread tilo . christ
Hi! > Can anyone help interpret the following error messages > that suddenly appeared when I tried to compile my > program ? > > /prc-tools/H-i586-cygwin32/m68k-palmos/lib/crt0.o(.text+0x46):crt0.c: > relocation truncated to fit: DISP16 _GccRelocateData Your program has exceeded the maximum siz

PRC-Tools compile error message

2003-01-25 Thread Nick Morton
Hi, Can anyone help interpret the following error messages that suddenly appeared when I tried to compile my program ? /prc-tools/H-i586-cygwin32/m68k-palmos/lib/crt0.o(.text+0x46):crt0.c: relocation truncated to fit: DISP16 _GccRelocateData /prc-tools/H-i586-cygwin32/m68k-palmos/lib/crt0.o(.text

Re: Question about multi-segment code

2003-01-25 Thread John Marshall
Ken Corey wrote: >> You are, of course, compiling with "-Wall"? > > I hadn't been compiling with -Wall. I put -Wall in, got [...] > a couple 'implicit declaration of function' errors. ...one of which related to the call of AdjustScrollbar() from your form event handler. Wasn't that a clue? :-)

Re: Re: Question about multi-segment code

2003-01-25 Thread tilo . christ
Hi! > > I cannot tell you why your function crashes, but you should > > get the multi-segment update for gdb. That will allow you to > > debug multi-segment applications. > > I'd love to, but I don't know of binaries of the update being available > for Falch.net's 2.7 distribution. There were