Re: No Hard Char Processed?

2001-01-19 Thread Bradly J. Barton
D'oh.. I had such a headache and I was being rushed out the door... I knew it was something silly. Thanks Aaron, I owe ya. :) -- Bradly J. Barton - [EMAIL PROTECTED] Jenies Technologies Incorporated (972) 602-1835 http://www.JTI.net http://PalmInHand.com - Original Message - From

Receiving IR Signal

2001-01-19 Thread Ricardo Contin
Receiving IR Signal I need the oposite. I need to monitor any ir signal and store the information (numbers and leters) with out make a connection or a protocol. Can anyone help me ? I'm new in PALM applications and don't know how start. I will try make using CodeWarrior. Tks Ricardo - Ori

Re: Add item to Datebook

2001-01-19 Thread Danny Epstein
The obvious format for an "appointment object" is a vCalendar. This is the format that's used to beam appointments from/to Palms. If you have the latest version of Palm Desktop (currently only available for Windows, IIRC), it should be able to import vCalendar objects. The record will then be copi

RE: X-Master: successor to Hackmaster

2001-01-19 Thread Aaron Ardiri
> I really don't think this is a good idea. It is not the cost that is issue. > It is the fact that the system is currently closed that is part of the very > problem we are all having with Hackmaster 0.9. Passing it on to you and > keeping it closed is just a temporary fix -- the same issue will

customTableItem in tables...

2001-01-19 Thread Giovana Bernabé Huerta
Hello, I have a problem with tables... in the application that i am developing..y use a table, where the columns are customTableItem.. when i run the application in the deviceif I execute a event pendown on a columnthe content is erase... i use WinDrawChars to write the text in the c

RE: X-Master: successor to Hackmaster

2001-01-19 Thread BPetersen
> > > i'd be removing the "shareware" status and make it open freeware.. > > > although it is not hard to rewrite HackMaster (really), we really > > > should not be introducing new apps that do similar things (yet > > > do different things too).. > > > > Here's my vote for an open freeware

Add item to Datebook

2001-01-19 Thread Mark Maslar
Hi, Is there an easy way to add an appointment to a user's Datebook? I'd like to be able to send (e-mail or download) the user a hotsync-able file that would add the appointment into their Datebook calendar. In essence, I want to create an "appointment object" that Hotsync can import. Any ideas?

Re: Clipping by ASP

2001-01-19 Thread Mark Maslar
"Anbin Huang" <[EMAIL PROTECTED]> wrote in message news:36406@palm-dev-forum... > My question is if the Web Clipping Proxy Server surpport the asp page. Yes, it works great! If you haven't done so already, make sure that your ASP page works correctly from a computer-based browser (PC, MAC, etc.

Re: X-Master: successor to Hackmaster

2001-01-19 Thread Aaron Ardiri
> > i'd be removing the "shareware" status and make it open freeware.. > > although it is not hard to rewrite HackMaster (really), we really > > should not be introducing new apps that do similar things (yet > > do different things too).. > > Here's my vote for an open freeware version of

Re: X-Master: successor to Hackmaster

2001-01-19 Thread Dwayne Fujima
On Fri, 19 Jan 2001 22:30:14 +0100 (MET), Aaron Ardiri <[EMAIL PROTECTED]> wrote: > i'd be removing the "shareware" status and make it open freeware.. > although it is not hard to rewrite HackMaster (really), we really > should not be introducing new apps that do similar things (yet > do di

Install Aid Library q: is there a "blessed" HotSync folder?

2001-01-19 Thread Margaret Becker
This is a question for both mac and windows. On a system with more than one HotSync folder, which folder do the Install Aid Library functions use? In other words, is there a "blessed" HotSync folder? I'm asking because I'm writing a code resource to work with InstallerVISE on the mac in order t

Is it ok to close the serial port while data is coming in?

2001-01-19 Thread Jacky Cheung
Do I have to make sure that no data is coming into the serial port when I am closing it (calling SerClose())? It keeps crashing my program when I close it before I tell the sender to stop. But I am not sure if this is the problem. Thanks. -- For information on using the Palm Developer Forums

Re: No Hard Char Processed?

2001-01-19 Thread Aaron Ardiri
> { >FrmHandleEvent (pForm, pEvent); >// redraw.. >bHandled = true; > } bHandled = false;// let the system process it > When this case is there, none of the hard keys (power, the four keys, > applications, menu, etc) work.. if I comment it out, they start working... > what

No Hard Char Processed?

2001-01-19 Thread Bradly J. Barton
I have the following code in the event handler for my modal dialog: case keyDownEvent: if (pEvent->data.keyDown.chr == pageUpChr) { // scroll up bHandled = true; } else if (pEvent->data.keyDown.chr == pageDownChr) { // scroll down bHandled = true; } else { FrmHandl

Re: Cryptography

2001-01-19 Thread Kristian Adrup
Original Message- >From: Åsa Godin >To: Palm Developer Forum >Sent: 2001-01-19 11:24 >Subject: Cryptography > >Hi, >I'm quite new to both Palm OS developing and secure development and I'm >trying to find out if it's possible to implement cryptographed >comunication >to a palm. Is there som

Re: Sending IR Signal

2001-01-19 Thread Danny Epstein
TV remote controls don't use IrDA (Infrared Data Association - www.irda.org) standard protocols. You _can_ make a Palm into a TV remote, but it isn't officially supported. Note that you can send test packets in IrDA and these can be broadcast. You don't need to make a connection first. What devi

Re: Math library (sin,cos,...)

2001-01-19 Thread DIAMOND JEFF
Just to point out as well that you can get extremely high accuracy with very little memory usage by using the formula: sine (x + d) = sin(x) cos(d) + cos(x) cos(d); cosine (x + d) = cos(x) cos(d) - sin(x) sin(d) You then have one small table for coarse angles (x) and one table for fractions of

Re: Still having problems with POSE 3.0a8 & debugging

2001-01-19 Thread DIAMOND JEFF
Bless you Scott, for helping them fix the problem. "Scott Johnson (Bellevue)" wrote: > > From: Chris DiPierro [mailto:[EMAIL PROTECTED]] > > On large multi-seg apps (200k), I have to try debugging 3 times > > to get the emulator to actually not respond with a timeout or > > invalid transport err

Memory leaks with FrmPopupForm

2001-01-19 Thread Ben Combee
"Chris DiPierro" <[EMAIL PROTECTED]> wrote in message news:36414@palm-dev-forum... > > Yea it is. I appreciate it. > > Ok, here's a question then. > > After many Gremlins I see a lot of chunks that are unlocked (#0), owned by > my app (#2) and have 'fM' set on them, each of which is '0x64 requeste

Re: Help me understand why the 3.5 Debug ROMS fail on certain sets of calls Code.

2001-01-19 Thread Keith Wolcott
You can't use WinDrawRectangleFrame() until you have set the draw window. Unless you set the draw window in some specific way, it is usually done by calling FrmDrawForm ( frmP). Thus you must just be sure to do any drawing to the form after calling FrmDrawForm ( frmP). Keith Wolcott Darren

RE: Still having problems with POSE 3.0a8 & debugging

2001-01-19 Thread Heather KML Tufts
> It's CW6, I really should upgrade...just hadn't gotten around > to sending in > the reg card, so I did that 2 weeks ago. Hopefully I can go > figure out how > to upgrade appropriately. Contact [EMAIL PROTECTED] or call (800) 377-5416, and they can tell you what you need to do. > > > From: Ch

RE: X-Master: successor to Hackmaster

2001-01-19 Thread Aaron Ardiri
> > how about just getting Ed to update his code? > > > > last thing i want is HackMaster, PatchMaster, TrapMaster, X-Master etc > > all floating around and they have small peculiarities about them.. it > > will be a user nightmare, and this fear is what has stopped me writing > > hacks

Re: Still having problems with POSE 3.0a8 & debugging

2001-01-19 Thread Chris DiPierro
It's CW6, I really should upgrade...just hadn't gotten around to sending in the reg card, so I did that 2 weeks ago. Hopefully I can go figure out how to upgrade appropriately. Thanks for the tip. Scott Johnson (Bellevue) <[EMAIL PROTECTED]> wrote in message news:36441@palm-dev-forum... > > > F

RE: Still having problems with POSE 3.0a8 & debugging

2001-01-19 Thread Scott Johnson (Bellevue)
> From: Chris DiPierro [mailto:[EMAIL PROTECTED]] > On large multi-seg apps (200k), I have to try debugging 3 times > to get the emulator to actually not respond with a timeout or > invalid transport error. This is consistent, every 3rd 'F5' > from CW is ok, but the others don't work. What versi

Still having problems with POSE 3.0a8 & debugging

2001-01-19 Thread Chris DiPierro
On large multi-seg apps (200k), I have to try debugging 3 times to get the emulator to actually not respond with a timeout or invalid transport error. This is consistent, every 3rd 'F5' from CW is ok, but the others don't work. It works for smaller apps, still multi-seg (120k or so)... It only s

MenuHideItem() can't hide first item?

2001-01-19 Thread Peter Hebert
If you try to hide the first item in a menu, it shows up as a blank space on the menu and you lose the last item on the menu. I was looking in the OS 3.5 sources and it looks like that the drawing routine DrawOneItem(), when passed the second item and an offset of zero, sees the offset zero and t

Re: Getting hd 0 in PalmDebugger to report app symbols?

2001-01-19 Thread Chris DiPierro
I suppose, but it's nice to have forms that take up 1/2 the screen and still show what you were last viewing. For this FrmPopupForm is truly useful. Not to mention the fact that it doesn't erase the old form immediately like FrmGoto ... in any event, I'll see about explicitly calling FrmClose/Dele

Re: Getting hd 0 in PalmDebugger to report app symbols?

2001-01-19 Thread Steve Mann
>This seems odd because although I do have a bunch of forms and >menus, the navigation between them is purely through FrmGotoForm and >FrmPopupForm coupled with FrmReturnToForm ... according to the docs, both of >these should handle the destruction of menus associated with each form. I've always

RE: X-Master: successor to Hackmaster

2001-01-19 Thread Brian Mathis
On Fri, 19 Jan 2001, Aaron Ardiri wrote: > how about just getting Ed to update his code? > > last thing i want is HackMaster, PatchMaster, TrapMaster, X-Master etc > all floating around and they have small peculiarities about them.. it > will be a user nightmare, and this fear is what has

Re: X-Master: successor to Hackmaste

2001-01-19 Thread Brian Mathis
On Fri, 19 Jan 2001, Stringer wrote: > > Since what your software is doing is primarily related to managing > the Palm OS traps, why not call it "TrapMaster" or "TrapManager" > > Roger Stringer > Marietta Systems, Inc. Yes, this sounds good. If the reason for a new name is to make it more pro

Re: O´Reilly online book

2001-01-19 Thread Michael Yam
Try: http://www.palmos.com/dev/tech/docs/devguide/ Michael Yam www.ytechnology.com Renato Garcia <[EMAIL PROTECTED]> wrote in message news:36381@palm-dev-forum... > > Hi, > Does anybody have the url to get the O´Reilly online book...or email it > for me please ... > Thanks > > > -- For

Re: Getting hd 0 in PalmDebugger to report app symbols?

2001-01-19 Thread Chris DiPierro
Yea it is. I appreciate it. Ok, here's a question then. After many Gremlins I see a lot of chunks that are unlocked (#0), owned by my app (#2) and have 'fM' set on them, each of which is '0x64 requested bytes' and actually '0x6c alloced bytes" If I dump the memory they contain, it looks like me

Net 122D error

2001-01-19 Thread Anbin Huang
Hello everybody, What does the following error massage mean 'unreachable destination (net 122D)'. It poped up when I used an emulatoe (Palm ) to request an asp page from my web clipping application. I can reach the the same asp page through the Internet and I can reach the html page which locat

Re: Getting hd 0 in PalmDebugger to report app symbols?

2001-01-19 Thread Ben Combee
> Thanks for the info. Can you provide lock definitions? > > I see #0, #1, and #15 ... > > #15 = MemPtrNew > #0 = ??? > #1 = Forms data No... #15 is the only special one -- the others are just the lock count -- a 0 means that the OS can move the chunk around, #1 through #14 mean that its loc

Re: INet Palm 7 andd Palm 5

2001-01-19 Thread Ben Combee
"Symmetry Development" <[EMAIL PROTECTED]> wrote in message news:36394@palm-dev-forum... > > I noticed that in October this question was asked but I don't really > understand how to implement the answer. I have been testing with the > emulator andd my little FTP app works fine. When I connect with

Re: Getting hd 0 in PalmDebugger to report app symbols?

2001-01-19 Thread Chris DiPierro
Thanks for the info. Can you provide lock definitions? I see #0, #1, and #15 ... #15 = MemPtrNew #0 = ??? #1 = Forms data Is that right? <[EMAIL PROTECTED]> wrote in message news:36316@palm-dev-forum... > > > > > For instance, in the "start" column, what's a '-' vs. a '*' before > > the

Clipping by ASP

2001-01-19 Thread Anbin Huang
Hello there, I recently installed a palm emulator and want to convert my web site to the handheld version. I used asp page as my server side engine. So I created a very simple web clipping application to try to request a asp page from my server but it failed with the error message 'unreachable de

RE: Need Help Getting Web Content To The Palm

2001-01-19 Thread Ward Fuller
Perhaps way off base, but two ideas come to mind off the top of my head. If nothing else, maybe they'll give you some ideas: ** Have you considered AvantGo's system? ** Go to Palm's web site and browse through the "enterprise" PQA's. There were several there last time I looked that seem like they'

Re: Object Id corrupted

2001-01-19 Thread Michael Klinglesmith
For the record Keith was able to help me track down this bug. My code was miss-using the FldGetAttributes and FldSetAttributes function calls. THIS IS THE WRONG WAY: static inline void NoUnderline(FieldPtr fld) { FieldAttrPtr attrP; FldGetAttributes(fld, attrP); attrP->underline

Need Help Getting Web Content To The Palm

2001-01-19 Thread Chang . Elizabeth
Hi, We am looking for a solution to get Web content to the Palm from a Lotus Domino Web Server. We have some Web applications in the Domino Server accessing Domino databases. We also would like to access to the applications/databases from the Palm. What development tool do I need? Any input wo

RE: SOAP on Palm

2001-01-19 Thread Ward Fuller
I've been on the lookout too and haven't seen one. There's a project for one on sourceforge.net but there hasn't been any activity on it last time I checked. Looks like I may be writing my own... A good starting point for doing so may be the toolkit available on scottseely.com. You may also want t

Sending IR Signal

2001-01-19 Thread Thomas Ward
Hi, I am investigating an IR application that would only need to send signals. That is, it's not two way communication, but more like a remote control. When I read through the documentation, I find lots of referenes to making an IR connection. Is all this necessary or even possible for a remote c

INet Palm 7 andd Palm 5

2001-01-19 Thread Symmetry Development
I noticed that in October this question was asked but I don't really understand how to implement the answer. I have been testing with the emulator andd my little FTP app works fine. When I connect with the Palm 7 I get a similar error to what is describeed below. Below is the Question and Answer f

Re: RES: Network HotSync

2001-01-19 Thread Alessandro Zummo
On 19-Gen-01 at 12:18:41, Renato Garcia <[EMAIL PROTECTED]> wrote: > Hi Alessandro, > Where could I get the ColdSync ? from http://www.ooblick.com/software/coldsync/ . It's a very nice app... i'd be vary happy if i could build a corporate network syncing server based on it. -- Alessa

X-Master: successor to Hackmaste

2001-01-19 Thread Stringer
>From: David Fedor <[EMAIL PROTECTED]> >Date: Thu, 18 Jan 2001 10:12:22 -0800 >>Because of the negative and scary touch of the word "Hack" to >>many users I think we should move to a more friendly name. >>I came up with "PalmOS system >>extensions" (or "extensions" for short). Any better ideas?

Re: Getting emulator to Hotsync in windows...

2001-01-19 Thread Dave Lippincott
There is detailed instructions on how to set up a network sync on the handheld in the Ethernet cradle docs, it may help. http://www.palm.com/products/enterprise/ecradle_handbook.pdf - Original Message - From: "DIAMOND JEFF" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]

Re: How to make .prc for any ShareLib

2001-01-19 Thread Dave Lippincott
There is an example on how to make and use a shared library included with the Palm SDK. (I think called samplelib) - Original Message - From: "jagadeesh chandra prasad" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Cc: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent:

Re: O´Reilly online book

2001-01-19 Thread Dave Lippincott
A link is in the Developer Documentation area at Palmos.com I think in the 3rd party books section - Original Message - From: "Renato Garcia" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Friday, January 19, 2001 7:47 AM Subject: O´Reilly online book > Hi, >

How to make .prc for any ShareLib

2001-01-19 Thread jagadeesh chandra prasad
Hi everybody, I am trying to implementing a sharedLib for my application. for that i have developed a sample share lib and complied it.but i don't know what are the steps to be follow to get the .prc file for that shareLib. Can anybody tell me from starting to end procedure

O´Reilly online book

2001-01-19 Thread Renato Garcia
Hi, Does anybody have the url to get the O´Reilly online book...or email it for me please ... Thanks -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

RE: C Primitive Type Problem and Bitmap Problem

2001-01-19 Thread Alexander Zuev
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf > Of Oscar Lee > Sent: Friday, January 19, 2001 1:05 PM > To: Palm Developer Forum > Subject: C Primitive Type Problem and Bitmap Problem > > > Dear All, > > I have 2 problems, please help. Thank a

RE: BUG report - FntGetFontPtr ()

2001-01-19 Thread Alexander Zuev
In the OS 3.1 and 3.2 functions FntGetFontPtr () and FntLineHeight () work is fine. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf > Of Paul Nevai > Sent: Friday, January 19, 2001 3:01 PM > To: Palm Developer Forum > Cc: Paul Nevai > Subject: BUG repo

CDK JAVA : How to create a record class of my database record type

2001-01-19 Thread vinod rajpal
Hey, i am using cdk for java for sync. my application database. i am using one sample of the cdk which uses memorecord to create instances of record, i want to implement my own record type how should i do that Get free email and

BUG report - FntGetFontPtr ()

2001-01-19 Thread Paul Nevai
!!!BUG!!! I am sure I reported this before but I don't remember when. So here it is. In all the configurations I tested, neither FntGetFontPtr () nor any related function such as FntLineHeight () work in my programs [pedit - appl and LapTopHack - hack]. EXAMPLE.

RES: Cryptography

2001-01-19 Thread Renato Garcia
Hi, Have a look at www.palmgear.com.br and search for CCrypt. I´m working on project with crypto too, stay in contact. I hope it helps... -Mensagem original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Em nome de Åsa Godin Enviada em: sexta-feira, 19 de janeiro de 2001 08:24 Para: Pa

RES: Network HotSync

2001-01-19 Thread Renato Garcia
Hi Alessandro, Where could I get the ColdSync ? -Mensagem original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Em nome de Alessandro Zummo Enviada em: quinta-feira, 18 de janeiro de 2001 23:50 Para: Palm Developer Forum Assunto: Network HotSync I'm trying to setup a Network Ho

Re: Cryptography

2001-01-19 Thread Åsa Godin
Hej, Kul att höra från dig! Än så länge är det bara en förstudie om systemet överhuvud taget går att implementera på Palm. Kunden har många udda krav och vi undersöker flera plattformar. Pysslar du också med palmutveckling nu för tiden eller är du bara nyfiken ;) // Åsa - Original Message

Cryptography

2001-01-19 Thread Åsa Godin
Hi, I'm quite new to both Palm OS developing and secure development and I'm trying to find out if it's possible to implement cryptographed comunication to a palm. Is there some support for crypto in PalmOS? Is it possible to implement cryptograping algorithms with sufficient key length? I'd be tha

I solved donwload Rom Image with USB cradle.

2001-01-19 Thread Mert EŞSİZ
My Palm-Debugger is old... I found new version. And I solved.. C U.. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

C Primitive Type Problem and Bitmap Problem

2001-01-19 Thread Oscar Lee
Dear All, I have 2 problems, please help. Thank a lot! ^_^ Question 1 I tried to use the "bool", the C primitive data type, in my CW but it prompt me for "undefined identifer" error. I have to use "Boolean" instead. But it seems that the CW can reconize the type "bool" since it change the "bool"

SOAP on Palm

2001-01-19 Thread Nitin Nangia
HI All, Is there a SOAP toolkit available for Palm? Regds, Nitin __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- For information on using the Palm Developer Forums, or to unsubscribe, please

RE: X-Master: successor to Hackmaster

2001-01-19 Thread Linke, Andreas
Thanks for all the great feedback, both public and private. Many of your suggestions are implemented now. > Extensions... > How about calling them Modifications, Mods for short? That's > all I can > come up with right now, no creativity going yet this morning. Hm, Modifications does not sound

Re: X-Master: successor to Hackmaster

2001-01-19 Thread Ricardo Contin
If I try to hotsync with out turn on first when using logo at startup a have a fatal erro and have to reset. Ricardo - Original Message - From: "Ronald Gouldner Jr" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Friday, January 19, 2001 1:55 AM Subject: RE: X-Mas

I couldnt download ROM from my Visor with USB cradle....

2001-01-19 Thread Mert EŞSİZ
I asked this quesiton before but friends writen to me that use palm-debugger. When I try use Palm-Debugger and select USB connection, it's giving error message "This fuction not implemented yet" Where is the problem? Do you know any software for download Rom image with USB cradle? Thanks.. Mer

how to surf the internet using palm V Tm

2001-01-19 Thread sreekant b
Friends, If anybody could help me out 1) is it possible to surf the internet using palm V which is not having modem. 2) If Any prc files avaiable, pl let me inform the sitemaps. Thanx sreek' __ Do You Yahoo!? Get email at your own domain with Ya

Re: How can i download ROM image from my USB Cradle???

2001-01-19 Thread Lim KS
I had download my palm ROM image to my pc by using USB Cradle before. seems like nothing to setup. I install the program Rom Transfer in the Palm then connect it to cradle. at the palm, run the ROM transfer program & select the transfer speed (115200bps) Than at the PC, I think have to run pose, t

Re: Subtle problems creating PDBs on desktop....

2001-01-19 Thread Philip Sheard
> Every aspect of my PDB works EXCEPT that the unique IDs STAY zero even after installation > on the Palm - is this a problem for a Palm database? only if you want to HotSync it. > My understanding was that the Palm installer would generate Unique IDs, but this isn't happening. the documentatio