Re: how to draw circles [just the circumference]

2001-07-29 Thread Gavin Maxwell
At 12:00 AM 7/30/2001 -0700, Paul wrote: >Subject: how to draw circles [just the circumference] >From: Paul Nevai <[EMAIL PROTECTED]> >Date: Sun, 29 Jul 2001 09:43:45 -0400 (EDT) >X-Message-Number: 6 > >What is the most efficient way of drawing circles [just the circumference]? >I think WinDrawRec

Database Uploading error

2001-07-29 Thread manish jaggi
Hello Everybody, I am using a database in my application. The size is 57 k . It is uploading without errors on both emulator and palm device. The database has a chunk of data with a single record. when i increased the size of data to 83 k (.pdb) the database was sucessfully uploaded on emulatoe

Re: decompile prc?

2001-07-29 Thread Andrew Francis
"Igor Mozolevsky" <[EMAIL PROTECTED]> wrote in message news:58207@palm-dev-forum... > > Incidentally, if you read the license agreement you got with the soft, and > if it's been written by half clever person, you'll find that decompling > binary code is forbidden :-( Of course, that may not apply

RE: Corrupted LCD during beaming?

2001-07-29 Thread Ioi Lam
> From: Danny Epstein > Date: Fri, 27 Jul 2001 17:01:00 > >err = ExgPut(socketPtr); > >if (!err) { > >err = ExgDBWrite(WriteDBData, socketPtr, NULL, dbID, cardNo); > >err = ExgDisconnect(socketPtr, err); > >} > > > > Sometimes the LCD display gets corrupted after the

RE: http://oasis.palm.com/dev/kb/faq/1375.cfm - DrawCircle ()

2001-07-29 Thread Richard Burmeister
> From: Paul Nevai > > Whoever wrote it, needs to freshen up his math [smiley]. This is > a DISK and not a CIRCLE. A CIRCLE is the BOUNDARY of a DISK > [see MATH 050]. Best regards, Paul > Paul, you're really nit-picking. A disk is just a "filled" circle. In fact, the two terms are often used

Re: Multiplying Ints and Floats

2001-07-29 Thread John Marshall
Sara Revell <[EMAIL PROTECTED]> wrote: > I have an equation, and I need to multiply an Int16 by a float, with the > answer also being a float. However, the answer seems to come out to zero. > My only guess is that it doesn't like multiplying the Int and the float. Good guess. Strangely, noone h

http://oasis.palm.com/dev/kb/faq/1375.cfm - DrawCircle ()

2001-07-29 Thread Paul Nevai
Dear Palm: Look up http://oasis.palm.com/dev/kb/faq/1375.cfm It gives static void DrawCircle( short x, short y, short radius ) { RectangleType theRect; theRect.topLeft.x = x; theRect.topLeft.y = y; theRect.extent.x = radius; theRect.extent.y = radius; WinDrawRectan

Re: decompile prc?

2001-07-29 Thread Aaron Ardiri
On Sun, 29 Jul 2001, Igor Mozolevsky wrote: > > you got to be joking. find me a program that does that for > > NORMAL programs first.. lol.. man, thats the most craziest > > idea.. anyhow, the best you'll get it m68k asm.. and, you > > can use pilotdis for that > > > > have fun.. - but r

Re: decompile prc?

2001-07-29 Thread Igor Mozolevsky
--On 30 July 2001 00:29 +0200 Aaron Ardiri <[EMAIL PROTECTED]> wrote: > On Sun, 29 Jul 2001 [EMAIL PROTECTED] wrote: >> Hi, >> >> Anyone know of anything that can decomplile a prc (not >> pqa) file, showing the source c or c++ code? >> >> I thought I heard or something once but I can't find >>

Re: Debug failure: Connection Attempt failed. Please Try Again

2001-07-29 Thread Philip Sheard
> Connection Attempt failed. Please Try Again I got this today, when I failed to include an rsrc file. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: decompile prc?

2001-07-29 Thread Aaron Ardiri
On Sun, 29 Jul 2001 [EMAIL PROTECTED] wrote: > Hi, > > Anyone know of anything that can decomplile a prc (not > pqa) file, showing the source c or c++ code? > > I thought I heard or something once but I can't find > it now... you got to be joking. find me a program that does that for NORMAL

Re: decompile prc?

2001-07-29 Thread Ben Combee
<[EMAIL PROTECTED]> wrote in message news:58199@palm-dev-forum... > > Hi, > > Anyone know of anything that can decomplile a prc (not > pqa) file, showing the source c or c++ code? Generally, its impossible to go from compiled code back to C or C++. It can be done, but the code you get out will u

Re: AppForge

2001-07-29 Thread Henry
Hi, although I haven't tried AppForge, but basically, it's VB, so you can't acess low level API's. Take a look at mobileStudio C++, it's a true fully Visual RAD tool incorporates a lightweight, extensible C++ object oriented framework with integrated development environment (ClassWizard, event ma

Re: how to draw circles [just the circumference]

2001-07-29 Thread Igor Mozolevsky
--On 29 July 2001 09:43 -0400 Paul Nevai <[EMAIL PROTECTED]> wrote: > What is the most efficient way of drawing circles [just the > circumference]? I think WinDrawRectangleFrame () could be used but how? > Using > WinDrawRectangleFrame (roundFrame, &rT); works only with specific rT > sizes. Tha

Re: Sony high res bitmap drawing

2001-07-29 Thread Rick Bram
Ah ha! I figured it out, never mind! Thanks, anyway Rick -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

decompile prc?

2001-07-29 Thread leinfidel
Hi, Anyone know of anything that can decomplile a prc (not pqa) file, showing the source c or c++ code? I thought I heard or something once but I can't find it now... thanks! __ Your favorite stores, helpful shopping tools and

Multi Mail questions

2001-07-29 Thread Ravi Krishnaswamy
Hi, I have several question regarding how to integrate an app with the api scheme that MultiMail Pro3.1 provides. The two key issues I've been trying to figure out are: 1. Launching our app by clicking on an attachment on a mail. I know that there are some standard file extensions supported. I

RE: Getting files onto devices

2001-07-29 Thread P. Alan Johnson
What about creating a .PDB file for your data then shipping both? .PDBs install as easily as .PRCs. --Alan > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > Nicholas Pleis > Sent: Saturday, July 28, 2001 8:46 PM > To: Palm Developer Forum > Subject

RE: Multiplying Ints and Floats

2001-07-29 Thread Mike Walters
Just looking at this, I don't really see any problem. Since pixelSizeX is a float, it should be doing a float division, so the fact that extentX is an Int16 should not be a problem. It probably wouldn't hurt to cast extentX to a float though. Incidently, since eastMin, eastMax, and extentX are

how to draw circles [just the circumference]

2001-07-29 Thread Paul Nevai
What is the most efficient way of drawing circles [just the circumference]? I think WinDrawRectangleFrame () could be used but how? Using WinDrawRectangleFrame (roundFrame, &rT); works only with specific rT sizes. Thanks. Best regards, Paul -- For information on using the Palm Developer Forums,

RE: Connection Attempt failed. Please Try Again

2001-07-29 Thread Mike Walters
I've had this problem before. Sometime exiting from CW and trying again works. Sometimes rebooting the PC works. But most of the time I've found that there was a problem with my resources, and once I fixed that, everything worked. Usually it occurs if a form references a bitmap or other resour

Re: Multiplying Ints and Floats

2001-07-29 Thread Sara Revell
--- In [EMAIL PROTECTED], "Eric W. Sirko" <[EMAIL PROTECTED]> wrote: > Sara, it's not clear from your post which variables are integers and which > are floats. Thus I can't see what the problem is. Sorry, I didn't want to fill the newsgroup with lots of code, and left that out accidentely. Here

AppForge

2001-07-29 Thread GivenRandy
What has been your experience with AppForge? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

List items not appearing

2001-07-29 Thread Jim Duffy
Hi all, I have a strange bug in my app that I'm not sure how to track down. I have 5 separate lists in my app that each use a 2 dimensional array to hold 16 user editable items. These have been working fine for the longest time. Due to the size of the app, I had to segment the project into 2