How to input charater like in constructor

2001-05-10 Thread Hans Han
Hi All Another question is How to input charater like © in the label of constructor. Thanks Hans h®)ߢ¹š¶*'¢{¬Šx-…ãږ`Þ½éh¥êÅ¢»¦²Ší¢éì¹»®Þ¦Wš±ëzm§ÿðà Z–j,r‰¿uëÿµç!þË©¦Šíýú+ºk?

Re: Form Bitmap not diplay correct as same as Constructor

2001-05-10 Thread Ben Combee
Hans Han [EMAIL PROTECTED] wrote in message news:48776@palm-dev-forum... Hi All, I got a 4-bit gray bitmap on my form. It looks great in Constructor 1.5. But it show as B/W when we run the program in POSE and real Palm device. You need to call WinScreenMode to set the screen into 4-bit color

Re: Palm Desktop Application

2001-05-10 Thread David A. Desrosiers
OS 4 doesn't encrypt any data. The enhanced security is due to Palm closing holes that would allow getting into a device that had been locked (when locked, you cannot debug or hotsync). There also are automatic timeouts for locking the device that can be set. However, once you have

Re: How to input charater like © in constructor

2001-05-10 Thread H3li0
with Constructor opened, open Character Map: Start-Programs-Acessories-System Tools-Character Map Select the desired symbol, Copy it, and then Paste into Constructor! Hope that Helps, H3li0 Hans Han [EMAIL PROTECTED] wrote in message news:48777@palm-dev-forum... Hi All Another question is

RE: Programming PalmOS using C++

2001-05-10 Thread Steve Mann
I've had great success with the Palm Application Framework Glad to hear it. Can you tell us where we can find it? Thanks. Regards, Steve Mann -- --- Creative Digital Publishing Inc. 1315 Palm Street, San Luis Obispo, CA 93401-3117

Re: Programming PalmOS using C++

2001-05-10 Thread Steve Mann
Can anyone share his experience with C++ libraries for PalmOS? Bear River has one. www.bearriver.com. Regards, Steve Mann -- --- Creative Digital Publishing Inc. 1315 Palm Street, San Luis Obispo, CA 93401-3117 ---

Where should a newbi begin

2001-05-10 Thread Jarrod Hermer
Hi all, I am relatively new to programming but have a basic understanding of the fundamentals. The problem is that I have to do some Palm development and in particular a Sales force app. Requiring database work as well as wireless connectivity for transferring/updating of data. Could anybody

Re: Any top issues migrating to OS4.0?

2001-05-10 Thread David A. Desrosiers
However, Ezekiel wrote a nice developer-oriented summary of 4.0's changes and it is posted at http://www.palmos.com/dev/tech/docs/palmos40/ I just pawed through this, and didn't happen to see anything related to the question I have, which is: What changed in the Palm-side

Viewer for formated text

2001-05-10 Thread Jimmy R
I'm trying to implement a text viwer in my app that display text with its format intact (tagged bold, italic etc). Anyone knows of some (free) simple code that already does this... thx /Jimmy -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: CodeWarrior Lite

2001-05-10 Thread Suma Praveen Kumar
Hi Madina, In Codewarrior IDE, under EDIT menu, open up Proj settings( U'r proj settings) There under Target settings change the target name to u'r proj name, filename in 68K target to u'r proj name.tmp and in Palmrez post linker output file to proj name.prc then try compiling. Regards, Suma

Custom IR Application

2001-05-10 Thread Phillip Streck
Well, here's what my boss wants me todo.. What do you guys think the best the way to do this would be. I have an application that pulls down records from a sql server via hsm and a conduit. My boss wants the doctors to able to walk into the lounge go up to an ir point and pull down the

Re: Where should a newbi begin

2001-05-10 Thread Phillip Streck
start at www.palmos.com there you find a ton of info on palm development, after that a good book is Palm Programming: The Developers Guide published by O'Reilly ISBN: 1-56592-525-4 You might also consider some of the RAD tools that are out there. You can find links to those

Re: constant data in shared library !help!

2001-05-10 Thread Phillip Streck
What about a resouce string? Philip Streck Akron General Medical Center Information Systems Srinivas Padmanabhuni [EMAIL PROTECTED] 05/10/01 01:31AM I need to have 4K size of constant data in a shared library. Since i cannot have globals i used a static const array to keep my data. but

RE: How to input charater like in constructor

2001-05-10 Thread Richard Burmeister
From: Hans Han Another question is How to input charater like © in the label of constructor. The copyright symbol is character #169 (hex A9) in the Standard font on an English PalmOS device. It might be something different on other ROM versions (I don't remember at the moment). You

Re: May I return to the original Os version, after I made an os

2001-05-10 Thread Thomas Maeder
[EMAIL PROTECTED] wrote: Right, thanks Alan Did he answer you by E-Mail? If yes: could you please forward it? Thanks! -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: How to input charater like © in ---constructor

2001-05-10 Thread Mark Smith
Hans Han [EMAIL PROTECTED] wrote: Another question is How to input charater like © in the label of constructor. Press the Hex button to the right of the label text to switch into hex mode. The copyright symbol is 'A9'. -- -M- [EMAIL PROTECTED]

Re: Custom IR Application

2001-05-10 Thread Ben Combee
I have an application that pulls down records from a sql server via hsm and a conduit. My boss wants the doctors to able to walk into the lounge go up to an ir point and pull down the records.. Now i could do this with hsm and ir hotsync, but we want to avoid the docs having to create

Checkboxes and tables question

2001-05-10 Thread Tom B
Folks, I am trying to use checkboxes in a table. I want to treat the checkboxes as radio buttons so that only one checkbox is checked. Anyone know how to do this inside a table? It doesn't seem like I can set the group id for the checkboxes in the code, or am I missing something? Thanks in

Re: Checkboxes and tables question

2001-05-10 Thread Harold Tessmann III
On Thu, 10 May 2001, Tom B wrote: I am trying to use checkboxes in a table. I want to treat the checkboxes as radio buttons so that only one checkbox is checked. Anyone know how to do this inside a table? It doesn't seem like I can set the group id for the checkboxes in the code, or am I

RE: Form Greater than 160 Pixels in height.

2001-05-10 Thread Craig Austin
Hi Mark, I had the same problem. I ended up creating a bunch of invisible controls, and then I move and show then as appropriate in response to the scroll events. It was kind of a pain to set up, but it seems to work fairly well. Craig -Original Message- From: [EMAIL

Re: CodeWarrior Lite

2001-05-10 Thread Madina
Hi all, (Arvind, Ben, Khurram, Suma) Thank you for your help...i am proud to say that i have finished the first part of the tutorial by following your guidance...The codewarrior lite doesnt go exactly as the tutorial it comes with. I am sure i will be having major problems in my next step...

Re: Where should a newbi begin

2001-05-10 Thread Madina
Hi Jarrod, I am a newbie myself and i went through the same path recommended by Phillip. In addition i downloaded a CodeWarrior Lite which is a freebie since i am not a commercial developer (i am a student)...and i am on my first steps...There are documentations that you can read that come with

BMP on the palm

2001-05-10 Thread Mario Manente
Hi all, i would like to send a BMP from the palm to a pc via serial port. Have you any ideas to solve this problem? Thanks Mario -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

RE: May I return to the original Os version, after I made an os

2001-05-10 Thread Richard Burmeister
From: Thomas Maeder Did he answer you by E-Mail? If yes: could you please forward it? Thanks! Alan Ingleby posted an answer to the forum. See what he said at http://groups.yahoo.com/group/palm-dev-forum/message/53010. If you need more help, ask again, explaining what your specific problem

Get Bitmap Width with API?

2001-05-10 Thread Mike McCollister
Hi, I'm trying to do some good coding practices. Well, Palm recommends that I use #define DO_NOT_ALLOW_ACCESS_TO_INTERNALS_OF_STRUCTS so prevent access to internals of structures. Once I turned that on, I can't get the width of a bitmap. Here is the code. pres =

Re: Week of year

2001-05-10 Thread David Leland
Thanks! Exactly what I was looking for. Dave Stephen Best [EMAIL PROTECTED] wrote in message news:48757@palm-dev-forum... I'm searched the archives with no luck. Anyone have a week of year function that they'd be willing to share? Input would be date and output would be the week

Re: Get Bitmap Width with API?

2001-05-10 Thread Daniel Morais
Jeudi 10 Mai 2001 17:16, Mike McCollister a écrit: I'm trying to do some good coding practices. Well, Palm recommends that I use #define DO_NOT_ALLOW_ACCESS_TO_INTERNALS_OF_STRUCTS so prevent access to internals of structures. Once I turned that on, I can't get the width of a bitmap.

CR LF

2001-05-10 Thread David Walls/Lemc
Is there any way to save a caracter return line feed (enter button) onto a record. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: Get Bitmap Width with API?

2001-05-10 Thread Mike McCollister
Daniel, Thanks for the information. However, I want to avoid the glue library since this application is a hack and needs to be as small as possible. Thanks, Mike McCollister --- Daniel Morais [EMAIL PROTECTED] wrote: Jeudi 10 Mai 2001 17:16, Mike McCollister a écrit: I'm trying to do

Re: Any top issues migrating to OS4.0?

2001-05-10 Thread David Fedor
What changed in the Palm-side OS4 code which makes it complain that any desktop conduit I use to sync to it is incompatible with regard to the password and encryption? Prior to 4.0, the user's password was encrypted using a mechanism which was reversible: the password wasn't

Re: Programming PalmOS using C++

2001-05-10 Thread Mark F Rodriguez
On 5/9/01 10:34 PM, Steve Mann [EMAIL PROTECTED] wrote: I've had great success with the Palm Application Framework Glad to hear it. Can you tell us where we can find it? Thanks. Regards, Steve Mann The Palm Application Framework (PAF) is the library available from BearRiver

RE: CR LF

2001-05-10 Thread Nicolas Raitman
why don't you try to store '\n'? -Mensaje original- De: David Walls/Lemc [EMAIL PROTECTED] Para: Palm Developer Forum [EMAIL PROTECTED] Fecha: Jueves, 10 de Mayo de 2001 12:31 p.m. Asunto: CR LF Is there any way to save a caracter return line feed (enter button) onto a record. --

Re: Get Bitmap Width with API?

2001-05-10 Thread Daniel Morais
Jeudi 10 Mai 2001 17:32, Mike McCollister a écrit: Thanks for the information. However, I want to avoid the glue library since this application is a hack and needs to be as small as possible. BmpGetDimension function is the only way, to my knowledge, wich allow getting the width, heigh and

Re: Battery Meter

2001-05-10 Thread John Crouch
Thanks very much. I did not find this in my archive search. Using the nilEvent sounds good to me. My guess that updating the levels ever 15 seconds or so would not be unreasonable. Look up using the nilEvent message to drive your update. -- For information on using the Palm Developer

Button doesn't get pushed in Palm OS 3.3

2001-05-10 Thread Craig Austin
I'm seeing a strange problem that only appears to be showing up in PalmOS 3.3. I have a simple button on a form (along with a couple of images, and a few labels). The problem is that the form never get's a CtlSelect event. (It get's penDown penUP events, but not ctl select.) Again, this

RE: RE: Need some help on Palm OS Tables

2001-05-10 Thread Richard Hartman
-Original Message- From: Dev Nair [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 9:33 PM To: [EMAIL PROTECTED] Subject: Re: RE: Need some help on Palm OS Tables Hi Richard, Thanx a lot for ur reply. I'll try out what u suggested. But the column in which I'm

RE: Button doesn't get pushed in Palm OS 3.3

2001-05-10 Thread Scott Johnson (Bellevue)
From: Craig Austin [mailto:[EMAIL PROTECTED]] the form never get's a CtlSelect event. (It get's penDown penUP events, but not ctl select.) Make sure to return false from any penDown event handler. -slj- -- For information on using the Palm Developer Forums, or to unsubscribe, please see

RE: Battery Meter

2001-05-10 Thread Richard Burmeister
From: John Crouch Thanks very much. I did not find this in my archive search. Using the nilEvent sounds good to me. My guess that updating the levels ever 15 seconds or so would not be unreasonable. Look up using the nilEvent message to drive your update. FYI: you might want to look

RE: Button doesn't get pushed in Palm OS 3.3

2001-05-10 Thread Craig Austin
Oh man, how could I have been so stupid. Thanks for the help. When declaring variables on the stack, does PalmOS 3.3 initialize differently than the other Palm3.x OS versions? (Or does it just handle the event differently?) Craig -Original Message- From: [EMAIL PROTECTED]

RE: MenuHandleEvent not working

2001-05-10 Thread Richard Burmeister
From: Ng Wei Gee I'm getting desperate over this problem. My keyDownEvent with vchrMenu is not handled by MenuHandleEvent in the event loop. It does not convert it to a menuEvent. Can anyone please help?! Are you generating this event in code? If you are generating the event yourself, are

Re: MenuHandleEvent not working

2001-05-10 Thread Ng Wei Gee
Hi, I'm getting desperate over this problem. My keyDownEvent with vchrMenu is not handled by MenuHandleEvent in the event loop. It does not convert it to a menuEvent. Can anyone please help?! Are you generating this event in code? If you are generating the event yourself, are you

Re: How to create custom fonts?

2001-05-10 Thread Mark A. Peters
Thanks Ole! Mark Peters in article 48775@palm-dev-forum, Ole Grossklaus at [EMAIL PROTECTED] wrote on 5/9/01 10:36 PM: Mark, You might want to look at the public archive of www.vfdide.com There is a full source sample that deals with custom fonts (the tree view sample) You can

Re: Get Bitmap Width with API?

2001-05-10 Thread Mike McCollister
Daniel, Thanks. I'm giving it a try but I don't know how to link the PalmOSGlue library using the gcc PRC-Tools. Do you or anyone else know how to do this? Thanks, Mike McCollister --- Daniel Morais [EMAIL PROTECTED] wrote: Jeudi 10 Mai 2001 17:32, Mike McCollister a écrit: Thanks for

Will there be a Palm OS 4.1?

2001-05-10 Thread Mike McCollister
Will there be a Palm OS 4.1 (or 4.x where x 0) or is Palm focusing on Palm OS 5.0? Thanks, Mike McCollister __ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/ -- For information on using the

Help with NetServiceAPILib

2001-05-10 Thread Ted Lowery
Hi all- I'm having trouble with the NetServiceAPILib. Basically, if I include the lib in a single segment C project, everything works fine. But when I try to include the lib in a multisegment project with the MSL 2i lib, my code compiles fine, but the linker cannot find any of the calls within

RE: Button doesn't get pushed in Palm OS 3.3

2001-05-10 Thread Scott Johnson (Bellevue)
From: Craig Austin [mailto:[EMAIL PROTECTED]] When declaring variables on the stack, does PalmOS 3.3 initialize differently than the other Palm3.x OS versions? Stack memory is never initialized for you. This is how C/C++ works, having nothing to do with the operating system. So

Re: Get Bitmap Width with API?

2001-05-10 Thread Daniel Morais
Jeudi 10 Mai 2001 19:26, Mike McCollister a écrit: Thanks. I'm giving it a try but I don't know how to link the PalmOSGlue library using the gcc PRC-Tools. Do you or anyone else know how to do this? Just add -lPalmOSGlue to the command line call building your app. ( the l before PalmOSGlue

Re: constant data in shared library !help!

2001-05-10 Thread Jim Schram
At 8:08 AM -0400 2001/05/10, Phillip Streck wrote: What about a resouce string? You'll need to open your shared library database, get the resource, then close it. You could leave the shared library db open all the time, but you'd have to be extremely careful to avoid resource type and ID

Re: Get Bitmap Width with API?

2001-05-10 Thread Mike McCollister
Daniel, Thanks. That did it. I figured out the -lPalmOSGlue but if you don't put it at the end of the command, it does not find it for some reason. Well, it added about 200 bytes to the size of the hack. Do too bad for portability. Thanks for all of your help. Mike McCollister --- Daniel

Re: Will there be a Palm OS 4.1?

2001-05-10 Thread Jim Schram
At 10:28 AM -0700 2001/05/10, Mike McCollister wrote: Will there be a Palm OS 4.1 (or 4.x where x 0) or is Palm focusing on Palm OS 5.0? Anything's possible... why do you ask? Regards, Jim Schram Palm Incorporated Partner Engineering -- For information on using the Palm Developer Forums,

Re: Will there be a Palm OS 4.1?

2001-05-10 Thread David Fedor
Will there be a Palm OS 4.1 (or 4.x where x 0) or is Palm focusing on Palm OS 5.0? No announcements have been made, so there isn't an answer I can give at this point, sorry. What's the specific reason for your question? Perhaps I can answer that. -David Fedor Palm Developer Support -- For

Re: DB installable only to expansion card?

2001-05-10 Thread David Fedor
I just got an m505 with a 16MB expansion card. While copying my apps and data onto it, I hit something really odd. I'm using the HotSync install tool, and when I selected the databases for a particular app, the destination came up as the expansion card. I tried using the change destination

Re: Standard IO

2001-05-10 Thread David Fedor
For my debugging purpose I want to have a standard IO on my Palm. As per the SDK reference, it says, I have to include StdIOPalm.h and link with StdIOPalm.c. But I don't find the 'c' file anywhere. It is in the 4.0 SDK, and will work all the way back to 3.2 or perhaps 3.1.

Re: Any top issues migrating to OS4.0?

2001-05-10 Thread David A. Desrosiers
So if you're on a 4.0 device with a password, you need a 4.0 desktop if you want to perform a HotSync operation. Where is this documented, so I can properly configure my conduit to handle this? /d -- For information on using the Palm Developer Forums, or to unsubscribe, please

Sony Clie n710c and Palm OS 4?

2001-05-10 Thread Phillip Streck
Anyone heard anything about palm os 4 upgrade for the new sony clie? Philip Streck Akron General Medical Center Information Systems -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Implement customized file system and slot driver.

2001-05-10 Thread Terry C. Wang
Hi all, In the Palm OS 4.0, the Virtual File System is supported. I want to implement a customized file system, and insert it into the OS. I study the Palm OS Programmer Companion, and it seems that I can do this, like Linux. Would you please tell me how to implement? Is there any further

BMP question

2001-05-10 Thread Sridhar Nuthi
Hi all, how to convert windows (256 color) bmp into palm bmp resource. When i copy the windows bmp binary data into palm bitmap format the colors are not matching. thanks sridhar -- For information on using the Palm Developer Forums, or to unsubscribe, please see

RE: BMP question

2001-05-10 Thread DeAnna Davidson
Are you creating the color table, in the proper format, when you create the Palm image? -Original Message- From: Sridhar Nuthi [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 3:17 PM To: Palm Developer Forum Subject: BMP question Hi all, how to convert windows (256 color) bmp

RE: MenuHandleEvent not working

2001-05-10 Thread Richard Burmeister
From: Ng Wei Gee Are you generating this event in code? If you are generating the event yourself, are you setting the commandKeyMask? How about showing some code for us to look at? Sigh, that's precisely the problem, I'm not!! When I tap on the menu silkscreen, the following events

RE: BMP question

2001-05-10 Thread Sridhar Nuthi
Hi Davidson, I am setting the hasColorTable flag in the BMPFlagsType to 0 (false). This way i was trying to use the system color table. thanks sridhar -Original Message- From: DeAnna Davidson [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 12:22 PM To: Palm Developer Forum

Re: Is this possible?

2001-05-10 Thread Chris DiPierro
\n is a single byte, so if you want CRLF pair, use \r\n. David Vediner [EMAIL PROTECTED] wrote in message news:48894@palm-dev-forum... Write \n or use \x0d\x0a, which is a CRLF pair (I might have that backwards), using DmWrite(). I don't know exactly what \n maps to (one or two bytes) on the

RE: BMP question

2001-05-10 Thread DeAnna Davidson
Yes, but Windows and Palm don't use the same color table. You would either have to convert the indexes on the PC side or send the color table. -Original Message- From: Sridhar Nuthi [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 3:32 PM To: Palm Developer Forum Subject: RE: BMP

RE: BMP question

2001-05-10 Thread Sridhar Nuthi
Hi davidson, Can you provide me an example on how to do that. thanks sridhar -Original Message- From: DeAnna Davidson [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 12:40 PM To: Palm Developer Forum Subject: RE: BMP question Yes, but Windows and Palm don't use the same color

RE: BMP question

2001-05-10 Thread DeAnna Davidson
Unfortunately, I can't. My boss would really not be happy about that - people can be so overprotective about code sometimes. However, it's fairly straightforward to look at the format for the windows color table and format for the Palm color table, if you're talking about sending a color table.

RE: BMP question

2001-05-10 Thread Sridhar Nuthi
HI davidson, thanks a lot. I think i figured out what to do. sridhar -Original Message- From: DeAnna Davidson [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 12:50 PM To: Palm Developer Forum Subject: RE: BMP question Unfortunately, I can't. My boss would really not be happy

Re:BMP question

2001-05-10 Thread santhosh
Greetings Sridhar Check this link ,it features an interesting utility which allows you to import bmp into the pdb or prc .It is a PC based tool. this could solve your problem with the colours. http://www.individeo.net/PalmRI.html Thanks Santhosh M

RE: Any Reserved Development Creator IDs?

2001-05-10 Thread Mike McCollister
Jim Schram wrote From: Mike McCollister [mailto:[EMAIL PROTECTED]] wondering if Palm has any creator IDs that are reserved just for developing. For example, if I have a program that I know will never be released, is there an ID that I can use or do I need to register it For my

Re: May I return to the original Os version, after I made an os

2001-05-10 Thread Andres . Ramirez
/* Thomas Ask me Did he answer you by E-Mail? */ /* I wrote Right, thanks Alan */ AND THIS IS WHAT U WANT /* If you have access to a ROM file, then sure. Just use the same upgrade tool you used for 3.3, but on the first screen, click ADVANCED. It will allow you to select a ROM file instead.

RE: Any Reserved Development Creator IDs?

2001-05-10 Thread Richard Burmeister
From: Mike McCollister There is one problem with using STRT. The Palm Portable keyboard driver uses that. So, if you want to guarantee that your crids won't conflict with any other crid, register them. You can use any chars from #32 to #127 (though it's usually a bad idea to use 32 since

Re: Will there be a Palm OS 4.1?

2001-05-10 Thread David Fedor
I was wondering if the new HandEra APIs for a virtual graffiti area and the different screne size will be adopted into the Palm branded OS. Possibly. Sometimes we fold in APIs that licensees have first shipped, like VFS, but sometimes it isn't appropriate for the OS or the long-term state of

Re: The problem is caused by the C++ compiler

2001-05-10 Thread Ted Lowery
Ok- I still don't have an answer, but I know what is causing the problem. If I use the multisegment stationary and just build a virgin palm application, I include the library and a single call to the following prototype: UInt16 SetActiveService(DmOpenRef dbID, UInt32 *serviceIDPtr,Boolean

Re: Nevermind

2001-05-10 Thread Ted Lowery
I finally figured out if I wrapper the #include with extern C it now links. Thanks anyhow. Ted Lowery wrote: Ok- I still don't have an answer, but I know what is causing the problem. If I use the multisegment stationary and just build a virgin palm application, I include the library and

Re: The problem is caused by the C++ compiler

2001-05-10 Thread Steve Mann
If, however, If in the project preferences I select Activate C++ Complier I get the following link error: Starter.c: 'SetActiveService(void*, unsigned long*, unsigned char)' referenced from StarterPalmMain is undefined. How do I tell the linker that this is a C call (not a c++) call and the

RE: The problem is caused by the C++ compiler

2001-05-10 Thread Scott Johnson (Bellevue)
From: Ted Lowery [mailto:[EMAIL PROTECTED]] How do I tell the linker that this is a C call (not a c++) call and the prototype is correct, just use the damn thing. extern C { ... } -slj- -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Will there be a Palm OS 4.1?

2001-05-10 Thread Mark A. Peters
in article 48929@palm-dev-forum, David Fedor at [EMAIL PROTECTED] wrote on 5/10/01 1:56 PM: 2) I'm wondering if there will be better access to programs on the memory card, like the MSMount program that is out there. Just checking - you do know that 4.0 devices with VFS such as the m500

Re: The problem is caused by the C++ compiler

2001-05-10 Thread Steve Mann
How do I tell the linker that this is a C call (not a c++) call and the prototype is correct, just use the damn thing. Feel free to ignore what I told you (but then, you probably already did that). Way wrong. I didn't read all the background info carefully. Regards, Steve Mann --

Re: Detecting changes made to Address database

2001-05-10 Thread Danny Epstein
Here's an idea: See if the modificationNumber returned by DmDatabaseInfo has changed. I haven't tried this, but I think it should work, with some caveats. Most Data Manager functions that modify the contents of a database bump the modification number of the database, but not all. For example,

Re: Programming PalmOS using C++

2001-05-10 Thread Steve Mann
The Palm Application Framework (PAF) is the library available from BearRiver Thanks! I knew they had one, I just didn't know that's what they called it. Regards, Steve Mann -- --- Creative Digital Publishing Inc. 1315 Palm Street, San Luis Obispo, CA

Re: Richard Hartman's Request (was: Need some help on Palm OS Tables)

2001-05-10 Thread Richard M. Hartman
I'm happy to see someone address the meat of the issue ;-) -- -Richard M. Hartman [EMAIL PROTECTED] 186,000 mi/sec: not just a good idea, it's the LAW! Richard Burmeister [EMAIL PROTECTED] wrote in message news:48730@palm-dev-forum... From: Richard Hartman I have taken the liberty of

RE: Detecting changes made to Address database

2001-05-10 Thread Robert McKenzie
I have tried this (wsCalendars does this with datebook). It works just fine. For conduit changes, you should watch the bacupDate which is also returned by DmDatabaseInfo. -bob mckenzie -Original Message- From: Danny Epstein [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001

Re: Will there be a Palm OS 4.1?

2001-05-10 Thread Mike McCollister
--- David Fedor [EMAIL PROTECTED] wrote: I was wondering if the new HandEra APIs for a virtual graffiti area and the different screne size will be adopted into the Palm branded OS. deleted a lot of stuff 2) I'm wondering if there will be better access to programs on the memory card, like

Re: Internet connectivity

2001-05-10 Thread Alan Ingleby
You need to test on a ROM which has Web Clippijng support. Try the OS4 FULL DEBUG rom. Regards, Alan Ingleby Systems Developer ProfitLink Consulting Pty Ltd 309 Burwood Road Hawthorn Victoria 3122 Australia Ajit N.K [EMAIL PROTECTED] wrote in message news:48667@palm-dev-forum... Hi lan

Re: InetLib for Palm V

2001-05-10 Thread Alan Ingleby
MIK provides INet.lib Regards, Alan Ingleby Systems Developer ProfitLink Consulting Pty Ltd 309 Burwood Road Hawthorn Victoria 3122 Australia Srinivas Padmanabhuni [EMAIL PROTECTED] wrote in message news:48684@palm-dev-forum... Hi I am developing an application involving Communication

RE: Any Reserved Development Creator IDs?

2001-05-10 Thread Jim Schram
At 1:09 PM -0700 5/10/01, Mike McCollister wrote: There is one problem with using STRT. The Palm Portable keyboard driver uses that. Well, there are literally hundreds of applications out there using this creator ID; the result of various software engineers forgetting to change the creator ID

Re: ROM images.

2001-05-10 Thread Richard M. Hartman
Is this clickwrap thing new? When I signed up I had to print the hardcopy of the agreement send it in. (I am located in the US). -- -Richard M. Hartman [EMAIL PROTECTED] 186,000 mi/sec: not just a good idea, it's the LAW! Ng Wei Gee [EMAIL PROTECTED] wrote in message

RE: Any Reserved Development Creator IDs?

2001-05-10 Thread Mike McCollister
Jim, I'm using version 1.2 of the drivers and STRT is still used. Are you implying that a new version is due out soon (hope hope hope)? Thanks, Mike McCollister --- Jim Schram [EMAIL PROTECTED] wrote: At 1:09 PM -0700 5/10/01, Mike McCollister wrote: There is one problem with using STRT.

RE: Any Reserved Development Creator IDs?

2001-05-10 Thread Jim Schram
At 5:44 PM -0700 5/10/01, Mike McCollister wrote: I'm using version 1.2 of the drivers and STRT is still used. Are you implying that a new version is due out soon (hope hope hope)? Hmmm... we'll have to look into this. Don't read anything into it. I have no idea what the current version is.

Design question for exposing File systems on expansion devices

2001-05-10 Thread Mayank Pradhan
Hi, The question here is simply that do we want to expose the file systems on the expansion devices like Sony memory stick IBM Microdrive etc. Palm was meant to be as simple as possible, so would it be a good idea to expose the underlying complex file system and get the users do forward slash

Re: Design question for exposing File systems on expansion devices

2001-05-10 Thread Ben Combee
Palm was meant to be as simple as possible, so would it be a good idea to expose the underlying complex file system and get the users do forward slash and back slash business. Palm to start with didnt expose any file system of it own, everything was concealed beneath the application picker

Re: Will there be a Palm OS 4.1?

2001-05-10 Thread Ben Combee
Also, are there any plans of making Palm OS 4.0 available for older machines? I'm very interested in the better security (auto lock, and masked recoreds remain masked) and better alarm management. I also hear rumors that a bug with Palm Portable Keyboard is fixed in Palm OS 4.0

Re: MenuHandleEvent not working

2001-05-10 Thread Ben Combee
Richard Burmeister [EMAIL PROTECTED] wrote in message news:48907@palm-dev-forum... From: Ng Wei Gee Are you generating this event in code? If you are generating the event yourself, are you setting the commandKeyMask? How about showing some code for us to look at? Sigh,

Re: Dev w/ Handspring and Palm devices together...

2001-05-10 Thread DIAMOND JEFF
Thanks for the help, guys. I really hope that in the future all the licensees standardize on desktop hotsync APIs... - Jeff Ben Combee wrote: Bozidar Benc [EMAIL PROTECTED] wrote in message news:48589@palm-dev-forum... I have 3 Palm and 2 Handspring devices and I'm using 2 cradles, one

Which graphics chip does the Clie use?

2001-05-10 Thread DIAMOND JEFF
Does anyone know which graphics chip the color Clie uses? Or any details about the native API for hardware acceleration? Thanks! - Jeff -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/