Re: about stack size

2004-02-04 Thread Ben Combee
At 12:52 AM 2/4/2004, you wrote: If I can change its size,how do I do? Google for Palm OS change stack size and look at some of the search results. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: about stack size

2004-02-04 Thread Miken
Thanks for Ben's helps. I download http://www.metrowerks.com/pdf/PalmFAQ.pdf,and read it.I find the following information: You can change the default stack size if you're using a recent version of Constructor for Palm OS. I don't use Constructor ,and I use PilRC designer. -- For

RE: about VFSFileWrite and append

2004-02-04 Thread Caspar Heiden, vd
I know, thank you... I sent the link as an answer to your question and not as a way to repost the question... But thanks anyway regards, Caspar -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of palmDev Sent: Tuesday, February 03, 2004 8:48 PM To: Palm

Re: about stack size

2004-02-04 Thread Marcelo Henrique
Mike, Why do you want change the max size stack? Marcelo Henrique From: Miken [EMAIL PROTECTED] Reply-To: Palm Developer Forum [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Subject: Re: about stack size Date: Wed, 4 Feb 2004 16:18:20 +0800 Thanks for Ben's helps. I download

Re: about stack size

2004-02-04 Thread Manoel Teixeira
You can change it here = app { AppName crea stack=0x1000 } at your app def file. Manoel Teixeira On Wed, 04 Feb 2004 06:45:26 -0400, Marcelo Henrique [EMAIL PROTECTED] escreveu: De: Marcelo Henrique [EMAIL PROTECTED] Data: Wed, 04 Feb 2004 06:45:26 -0400 Para: Palm

Re: Bug in Sound Manager

2004-02-04 Thread Robert Scott
Chris wrote: On Tue, 3 Feb 2004 21:03:41 + (GMT), i tried out u'r app on tungsten T3 simulator...its working fine.it did not hang at all!! I think the problem is with T2 implementation. Thank you for trying. But I am really interested in having it tested on a real device.

Porting a large C++ program

2004-02-04 Thread Sander van der Wal
Hi I'm looking into porting a large C++ library to the PalmOS (v3.5 and higher). The library is certain to become bigger than 64K. Exceptions and RTTI are not used, so that should not be a problem. The library uses global const data only. Virtual methods are used too. The library will then be

How to display list of available network connections?

2004-02-04 Thread Gustav Szenczi
Hi all, What I want to do is allow user to switch between network connections. Network connection should be taken from preferences/network and should be displayed in list. I played around with NetLibConfigList and NetLibIFSettingsGet but unsuccess. The staff given by NetLibConfigList containt

RE: Auto Load my app After a Soft Reset

2004-02-04 Thread Barnett, Phil R
It works. However, you may not be able to do this directly from the app you need to run. It may require you to create a second app that sets a timer to run the real application. DAMHIK. -Original Message- From: Alan Ingleby [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 03, 2004

DmOpenDatabase open count

2004-02-04 Thread LionScribe
Does DmOpenDatabase keep an open count? LionScribe begin 666 Arye Schreiber.vcf M0D5'24XZ5D-!4D0-E9%4E-)3TXZ,BXQ#0I..E-C:')E:6)ECM!GEE.SM- MBX-D9..D%R[EMAIL PROTECTED]F5I8F5R#0I414P[2$]-13M63TE#13HW,S(M.30R M+3DV-38-E1%3#M#14Q,.U9/24-%.CS,BTX,30M-S R,PT*5$5,.TA/344[ M1D%8.CS,BTY-#(M,[EMAIL

Re: about stack size

2004-02-04 Thread Ben Combee
I create my project using PNO option,I have found a way to change 68K's stack size,please see the attachment. I can set the Minimum Stack Size,and Can I set the max stack size?If not,what is the max stack size? But I don't set the stack size on PNO part,I don't find any option.Please help me,and

RE: Transferring Resources from Mac to Windows

2004-02-04 Thread Ken Dwyer
Thanks Ben, and to the others who replied directly to me. I followed the instructions in the FAQ and used DropRSR to flatten the files. This seemed to work OK, as I was able to open my rsrc files using Constructor in Windows. I now have two zero byte files named PDAGraph.rsrc and Starter.rsrc

Link Error???

2004-02-04 Thread Marcelo Henrique
Hello, I have a friend that can't access de PD forum, so I'm writting by him. He's proggraming on CW Lite and ever get this erro when he mark Activate C++ compile. option: Link Error : ftp.c: 'NetUTCPOpen(char*,char*,short)' referenced from 'CmdFTP(int,char**)'is undefined. If this option

RE: Link Error???

2004-02-04 Thread Ben Combee
Don't use activate C++ like that. It really means compile .c files as C++. If your file has a .cpp extension, the compiler will always build it as C++. -Original Message- From: Marcelo Henrique Date: 2/4/04 10:54 am To: Palm Developer Forum Subj: Link Error??? Hello, I have a

RE: Transferring Resources from Mac to Windows

2004-02-04 Thread Ben Combee
Add the zero byte files to your project, not the files in resource.frk. The linker knows about those folders and will do the right thing. -Original Message- From: Ken Dwyer Date: 2/4/04 10:24 am To: Palm Developer Forum Subj: RE: Transferring Resources from Mac to Windows Thanks

Re: a e-mail from Palm OS Developer Programs Team

2004-02-04 Thread Arrow
The best help i can give you is under no circumstances to post your password like you just did !!! if i were you i would deactivate this registration immediately and setup a new one. if you want to post here, i think we all understand if you just say, I use my mailbox and password ,but I don't

Wait Window??

2004-02-04 Thread Phil Lachmann
I have a function that I use to display Please Wait bitmaps when I am retrieving large lists from my database. I like this function because I have a good amount of control over when it gets displayed and erased, and I don't need any user input. The problem I have is that when an alert displays

making trial Palm Apps.

2004-02-04 Thread Tech @ GotoITS
Hello, I have a small applet compiled using prc-tools running on PalmOS 4.0 I need to make a trialware version, but i'm not sure the best method to use to incorporate this? --John CTO/GotoITS -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Porting a large C++ program

2004-02-04 Thread chris
Hi I'm looking into porting a large C++ library to the PalmOS (v3.5 and higher). The library is certain to become bigger than 64K. Exceptions and 1) create a GLib shared library. 2) create a mulit-segment application. Your app will be multi-segment, but that's not a big issue since the

MemHandleFree , MemHandleUnLock

2004-02-04 Thread R Moon
What is correct when I use very much , data types Char What's the diference in that 2 thanks -- -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: MemHandleFree , MemHandleUnLock

2004-02-04 Thread Jan Bandouch
R Moon wrote: What is correct when I use very much , data types Char What's the diference in that 2 thanks Hi, MemHandleFree does make sure that the memory get's freed (so that it will be available again). MemHandleUnlock removes the lock on a handle. The lock itself is created with

FrmDispatchEvent with POL::CForm

2004-02-04 Thread vianna . mauricio
I'd like to dispatch an event during same as a call-back from a ButtonCommand event procedure (OnCOMMButton), which should be capture by another function (OnUpdateEvent): Here is my code : Form.h // Event map BEGIN_EVENT_MAP(CForm) EVENT_MAP_ENTRY(frmOpenEvent, OnOpen)

Re: making trial Palm Apps.

2004-02-04 Thread Eron Hennessey
Tech @ GotoITS wrote: Hello, I have a small applet compiled using prc-tools running on PalmOS 4.0 I need to make a trialware version, but i'm not sure the best method to use to incorporate this? --John CTO/GotoITS Well, one thing I'd suggest not to do is make it time-based (as trial-ware

trusted root certificates on Palm OS 5

2004-02-04 Thread Stella Lai
How do you install trusted root certificates to a Palm OS 5 device/simulator certificate store? Thanks, - Stella -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: Transferring Resources from Mac to Windows

2004-02-04 Thread Ken Dwyer
Sorry to keep dragging out this thread, but I tried your suggestion and it still isn't working. I did discover something else though; when I add the rsrc file (the zero byte one) to my project, I get the message At least one file could not be added to the selected target(s). My project has two

Re:sndstreamcreate usage???

2004-02-04 Thread vikram sonawane
My application is too big to post, but the essentials are these: The sound stream is opened with: Err error = SndStreamCreate(soundStream, sndInput, 11025, //NominalSamplesPerSecond sndInt16Little, sndMono,

LIST Object and Setting font

2004-02-04 Thread Fruber Malcome
I have my own callback for a list control on a form. (by calling LstSetDrawFunction). Does anyone know the API to call in order to set the font for the List control? I've tried FntSetFont - but it seems that the list control doesn't use the current font. I know that a table uses TblSetItemFont

PalmDebugger over USB with Handspring Visor

2004-02-04 Thread Craig Austin
I'm trying to run the PalmDebugger and connect to a Handspring visor with the USB cradle. Whenever I select the USB options from the Connection menu, the debugger window displays the message: error code: 040E over and over again. From the header files, I believe this error is

Re: CheckBox in List.

2004-02-04 Thread Fruber Malcome
May I ask, how you were able to change the font for a list control? thanks - bill Rangababu, TNV (IndSys) [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all, I have very specific requirement. I have display checkbox in a list. When every user clicks it should check and reclicked

Re: Fonts for developers

2004-02-04 Thread Fruber Malcome
Did you ever find a better tool? I did find that tools like FontBucket etc, would create font binaries within a pdb. (I would just remove the PDB header and the trailing information and I would be left with a font resource that could be used.). But even that didn't create nice fonts. Since I

Re: LIST Object and Setting font

2004-02-04 Thread SLO Revo News
Does anyone know the API to call in order to set the font for the List control? I've tried FntSetFont - but it seems that the list control doesn't use the current font. In your list drawing callback, use FntSetFont then draw what you need to using WinDrawChars or some variant of that. That should

Re: LIST Object and Setting font

2004-02-04 Thread Brad Figler
In your list drawing callback, use FntSetFont then draw what you need to using WinDrawChars or some variant of that. That should use the current font. Alternatively, you could call LstGlueSetFont(), but I think that only works in OS 5 and up. -- For information on using the Palm Developer

Indexed and direct color

2004-02-04 Thread Rainer Malzbender
I went to some trouble to convert an image from direct color to indexed so that I could flash all the colors in an image by just changing the palette entries. Works great in the emulator. However, on a real Palm Zire 71 device the speed at which the flashing takes place depends on how many pixels

new hi-res bitmap not being used

2004-02-04 Thread Brian Preston
I'm trying to add hi-res bitmaps to my existing app. I've already added one successfully as the Application Icon a while ago when I was trying to get this started. Now I've added a Double Density bitmap to an existing Bitmap Family, but when I run it with the Palm Simulator, it won't display the

Re: sndstreamcreate usage???

2004-02-04 Thread Robert Scott
On Wed, 4 Feb 2004 20:56:35 + (GMT), =?iso-8859-1?q?vikram=20sonawane?= [EMAIL PROTECTED] wrote: could u plz tell me abt the initialisation of the buffers i.e. typedef struct { Int16 *bufOrigin; Int16 *bufPastEnd; Int16 *bufCurrent; } BufPtrs; ..i'm getting an

streaming sound on Treo600 vs TT

2004-02-04 Thread palmDev
I'm having problems with my palm playing ADPCM streaming sound on the Treo600. Everything works fine on the T/T. does the Treo600 have the same sound manager as the TT? it can play uncompressed wave files fine but no compressed. is extented sound manager supported by the Treo600? thanks

Tools talk at developer conference

2004-02-04 Thread Scott Maxwell
Hi All, We are going to be releasing some of our tools at the PalmSource developer's conference and I'll be doing a presentation on them. I think that many of you will find the tools really useful so please come to the talk. The talk is at 10:00 pm on Wednesday right after the certification

RE: new hi-res bitmap not being used

2004-02-04 Thread Ken Dwyer
The only suggestion I can make is that you ensure the high-res bitmap is exactly double the height and double the width of the low-res one. You don't need to use WinSetCoordinateSystem, since the OS will automatically choose the best bitmap that it is capable of displaying. So what exactly

WinScreenMode bug on Zire71/Tungsten E

2004-02-04 Thread Jonatan Fernstad
Switching screen depth on my Zire71/Tungsten E device (probably happens on T1 and T2 aswell) causes a visual artifact. The display 'hickups' and a black rectangle with varying height and the width of the entire screen is displayed momentarily. Seems to me that this is the result of the DMA

Re: LIST Object and Setting font

2004-02-04 Thread Fruber Malcome
I'll try the LstGlueSetFont, currently I do call the WinDrawChars function within my callback, for some reason it doesn't seem to be using the current font. At least, during form load, I do call FntSetFont to the custom font that I want to use, I've hook my FntSetFont wrapper to ensure that it's

Re: LIST Object and Setting font

2004-02-04 Thread SLO Revo News
I could call this function in my callback, but I'm worried about the perf hit I do this. Shouldn't be a problem. I'll let everyone know how LstGlueSetFont works. That should work fine too, but if your font has a height that is different than the stdFont (or whatever font you assign to the list

Re: LIST Object and Setting font

2004-02-04 Thread Fruber Malcome
Well the LstGlueSetFont worked great - thanks, I'm not sure why the other method didn't work. thanks - bill Brad Figler [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] In your list drawing callback, use FntSetFont then draw what you need to using WinDrawChars or some variant of

TableType - Row Height

2004-02-04 Thread Fruber Malcome
There seems to be allow of space between the rows in my table, is there a way to decrease the size of the row height in a table? It seems that calling TblSetRowHeight just cuts the font off at the bottom, but I still have plenty of space on the top of the row. Any Ideas? thanks - bill --

Re: LIST Object and Setting font

2004-02-04 Thread Brad Figler
Fruber Malcome wrote: Well the LstGlueSetFont worked great - thanks, I'm not sure why the other method didn't work. It is very possible that the internal list code set the font ID to the font configured in the resource and then restored it after your callback. I normally do what you suggested

RE: Resizing resources and soring multidimentional arrays

2004-02-04 Thread JKingGrim
Thanks! I can't believed I missed that. I opened the database in read-only mode! Now I have a problem with what lies within that resource. The resource begins with a structure, lets say 'ResHeaderType'. Following this structure is an array of 'ItemType' (of wich can have a varying # of

ARM jpg lib avail for OS5+

2004-02-04 Thread palmDev
New arm jpg library based on Matt Flemming's port is now available at http://www.toysoft.ca/quickview.html Compatible with CW, CASL etc... Includes viewier for viewing jpgs. Easy to integrate into your app. -- For information on using the Palm Developer Forums, or to unsubscribe, please

Re: Porting a large C++ program

2004-02-04 Thread Alan Ingleby
Plus don't forget a shared library has no access to globals, which included (IFAIK) static member variables of a C++ class. Alan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi I'm looking into porting a large C++ library to the PalmOS (v3.5 and higher). The library is

Keyboard modifiers

2004-02-04 Thread Caton Little
Is there a way to poll the status of the option and shift keys directly on the keyboard-equipped Tungstens or Clies? I'm looking for a way to detect shift-tap and option-tap events. Although the Dana has a KybdGetModifiers and the Treos have HsKeyCurrentStateExt, for instance, I can't seem to

auto reset

2004-02-04 Thread John Lai
Hi, all. In my application, when I create a new database, it returns to the list view form as expected. I can't read it right away, and the device reset automatically. However, when I install the application again (using shortcut 2), I can read the database. What are the possible reasons?

Development tool based on VB

2004-02-04 Thread mahrine
I have made an application in VB 6.0 and EVB 3.0 for PC and Pocket PC 2002/2003 respectively.Now i want my application to run on Palm OS devices too. For this i have studied the tutorial which comes with the CodeWarrior and i have realized that it is based on C++. Is there any development tool