Re: Create a .lib file in Metrowerks for PALM OS

2005-12-09 Thread Eric Potter

Vibodh Johari wrote:

Hi I am using Metrowerks CodeWarrior for my application Development on PALM
OS.

My requirement is to build a .lib file or a .dll rather than a .prc file .

How can I make this possible in metrowerks or I have to buy a new IDE for
it.
Is someone having a prior experience for developing  a .dll or a .lib file
in metrowerks.

as my another application which is in LABVIEW PDA has to use this .dll or
.lib file .



--
Thanks n Regards
Vibodh Johari





The closest equivilant to a dll in the Palm OS is a shared library. If 
you chose the shared library option in the CodeWarrior new project 
wizard, it will get you started. Search the archives of this form and 
the PalmSouce docs for other info on shared libraries.


By the way, even though shared libraries are libraries and not 
executable applications, they are still compiled to *.prc files.


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: Checking for a camera

2005-11-18 Thread Eric Potter

Is there any reason that this code wouldn't work?

if (DmFindDatabase(cardNo,kCameraLibName) != 0 ||
DmFindDatabase(cardNo,kCamLibName) != 0)
{
hasCamera = true;
}

I realize that if the camera does need to be loaded, I've created extra work 
for the app. But the app will check for the camera every time, and only load it 
about 1/4 of the time. Is the DmFindDatabase call so costly that I'm still 
better off loading the library?
-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Checking for a camera

2005-11-17 Thread Eric Potter
I need to test to see if the device that my app is running on has a camera. Is 
there a way to do this other than attempting to load the library? I would 
prefer not to since I need to check this in all situations and the camera will 
only get used in a few situations.
-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Old versions of Palm Desktop

2005-11-15 Thread Eric Potter
Is there a place where I can get old versions of Palm Desktop? A user 
reported a bug with my install in the Zire 31 version of Palm Desktop, 
but I don't have a copy of that and can't find a copy of it either.


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Saving pictures

2005-11-02 Thread Eric Potter
I am capturing pictures based on the code in the SDK sample CameraV3. 
That part works fine. But I'm stuck trying to find a way to save them. I 
can't put an image in a normal database record because they are too 
large. Is there a way to store them with the Photo Library? Should I 
write them to an SD card? What other options are there?


If anyone has some sample code, that would be great.

Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: To deactivate hardware buttons:

2005-10-28 Thread Eric Potter

babbu cathy wrote:

Hi all,

Can anyone please help me on this? How to deactivate
the Hardware buttons for Treo through
programmatically? Can anyone give me Code structure or
example code with details?

cathy.



__ 
Yahoo! FareChase: Search multiple travel sites in one click.

http://farechase.yahoo.com

Let me start my comment by saying that blocking the hard butotns goes 
agains the zen of palm, so it should only be used in extreme 
cercumstances. That being said, here is how we block the hard keys.


In the event loop function, add a function that evaluates the events 
before SysHandleEvent has a chance to.


if (!BlockEvents(event))
{
if (! SysHandleEvent(event))
{
if (! MenuHandleEvent(0, event, error))
{
if (! AppHandleEvent(event))
{
FrmDispatchEvent(event);
}
}

In your BlockEvents function, check for keyDownEvent. If it is a key 
that you want to block, return true. This will essential key the hard 
key pressed from doing anything.


It's not perfect, but it is the best solution that we found.


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


hot syncing many devices

2005-10-03 Thread Eric Potter
For development purposes, I need to be able to Sync with a lot of 
devices. I recently installed the most recent version of Palm Desktop 
and now I can Hot Sync my Clie's and Visor's. Is there a way to setup 
hotsync to work with all devices?


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


build-prc and Palm OS Debugger

2005-09-22 Thread Eric Potter
I'm building an app with the prc-tools. When I go to debug it with Palm 
OS Debugger, it can't find any of the symbols. Is there something that I 
need to pass to build-prc so that the debugger can find the symbols? Or 
is it impossible to debug prc-tools based apps with the Palm OS debugger?


Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: build-prc and Palm OS Debugger

2005-09-22 Thread Eric Potter

Ton van Overbeek wrote:

On 2005-09-22, Eric Potter [EMAIL PROTECTED] wrote:

I'm building an app with the prc-tools. When I go to debug it with Palm 
OS Debugger, it can't find any of the symbols. Is there something that I 
need to pass to build-prc so that the debugger can find the symbols? Or 
is it impossible to debug prc-tools based apps with the Palm OS debugger?





Works for me (with the standalone Palm OS Debugger).
Open the Files tab in Palm OS Debugger (or select Window - Files Window 
from the main menu) after you have loaded your prc in the debugger.

You should have an Executables and Symbolics tree.
Check that your source files are in the symbolics tree with Path spec.
If not, you can add the path manually (just click on the file name).

Main problems is that the COFF format does not store the complete path 
name of the source file in the object file.
With sourc, object and prc files in the same directory it should work. 
And of course you need to both compile and link with '-g' option, 
otherwise nothing works.


HTH
Ton van Overbeek



I still do see my symbolics.

I am calling m68k-palmos-gcc and build-prc with -g. Do I need to use it 
anywhere else?


Does it make a difference that prc is part 68k and part arm (linked with 
Peallink)?


In Palm OS debugger, I see my prc, but the Symbolics tree is empty. When 
I right click on the symbolics node, I get an option to Add Symbolics 
File..., but I don't have an axf, elf, or psym file associated with my 
project. You said I could add the source files by just clicking on the 
file name. Can you elaborate on that?


Eric


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


problem with PODS and segments

2005-09-12 Thread Eric Potter
I have a standard makefile PODS app. I recently needed to add a second 
code segent.


In section.h I added:

#define EXTRA_SECTION_ONE  __attribute__ ((section (code2)))
#define EXTRA_SECTION_TWO  __attribute__ ((section (code3)))

In my def file, I added:

multiple code { code2 code3}

In one of my source files, I added EXTRA_SECTION_ONE to some of the 
function declarations. I made sure the def file was being passed to 
build-prc. But when I compile, I still get the following error message:


/usr/m68k-palmos/bin/ld: region coderes is full (VoiceNumRec.68k.o 
section .text)
/usr/m68k-palmos/bin/ld: warning: no memory region specified for section 
`code2'


Can anyone tell me why I'm getting this error? Also, does anyone have 
any tips on putting entire classes in a seperate section.


Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: GLib with CodeWarrior

2005-09-06 Thread Eric Potter

Bernie Tschirren wrote:

I created some tools so you can call into GLibs from CodeWarrior. Its had 
minimal testing, but if people are interrested I will put it up on a website.



Mr. Tschirren,


I see that back in May, you posted here that you had a way to link CW 
apps to a Glib. Would it be possible for me to get access to this code?


Thanks

Eric Potter

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: 5-way navigation button of the Tungsten E2

2005-08-22 Thread Eric Potter

George wrote:

Hello,

Recently, we received reports that our products do not support Page Up/Page 
Down of the 5-way navigator on the Tungsten E2 device.

Page Up/Page Down, however, work on the E2 Simulator.

1. Has anyone else encountered this problem and what's the reason for it?

2. How can we simulate the 5-way button on the E2 Simulator?

Thank you. 



I can't answer your first question.

While I haven't spent much time onthe TE2 sim, I know that on the TT3 
and TT5 sims, the d-pad is simulated with Alt-Enter for the center 
button and Alt-Left Arrow for left, Alt-Right Arrow for right and so on 
for up and down.


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: FrmNewForm, FrmDoDialog, and FrmSetNavState

2005-08-11 Thread Eric Potter

mguo wrote:

set focus first, then draw the form.


Were implying that I do this?

if (eventP-data.ctlSelect.controlID == Button8)
{
FormPtr pFrm = FrmInitForm(TestModalForm);
FrmSetEventHandler(pFrm, ModalFormEventHandler);

//If you make this call here. It will not turn the focus ring on
FrmSetNavState(pFrm, kFrmNavStateFlagsObjectFocusMode);

FrmDoDialog(pFrm);
FrmDeleteForm(pFrm);

}


It didn't work.

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: FrmNewForm, FrmDoDialog, and FrmSetNavState

2005-08-11 Thread Eric Potter

Regis St-Gelais wrote:
Eric Potter [EMAIL PROTECTED] a écrit dans le message de news: 
[EMAIL PROTECTED]


In my application, I create a new form with FrmNewForm, setting the modal 
flage to true. I display it with FrmDoDialog. But when I run it on the T5, 
the focus ring is not drawn. I though all Modal forms had the focus ring 
on by default. Is this a bug/loop-hole in the OS?


As a work around, I tried to turn the focus ring on automatically by 
calling


FrmSetNavState(FrmGetActiveForm(), kFrmNavStateFlagsObjectFocusMode);

on winEnterEvent and that didn't work. I also called it on the first 
nilEvent after winEnterEvent and that didn't work either.


Is there a way to turn on the focus ring on dynamically created forms?

Eric




If you want to set the focus to a specific control you need to use:
FrmGlueNavObjectTakeFocus(...)

That glue function works both for the old navigation system and the new one.

I can call FrmGlueNavObjectTakeFocus and it draws the focus ring, but I 
still can't move it around.


I've tried calling

FrmSetNavState(frmP, kFrmNavStateFlagsObjectFocusMode);

before I call FrmDoDialog, when I recieve the winEnterEvent, and when I 
recieve the first ctlEnterEvent. Whenever I call it, the T5 simulator 
throws these two fatal alerts.


HsNav.c, Line:6660, Memory allocation failed
HsNav.c, Line:5873, Error resetting vertical order

The call to FrmSetNavState returns an error code of 0x3A04, 
uilibErrObjectNotFound.


Is there some undocumented OS limitation that prevents dynamically 
created forms from going into Object Focus mode?


If it helps anyone, here is the source.

///
//
// This function displays a simple dialog to the user
//
///
static void DisplayDynamicForm()
{


FormType *  pForm;
Err err = errNone;

// Begin

CreateDynamicForm();

//Initialize the form
pForm = FrmGetFormPtr(g_AlertID);

if (NULL == pForm)
{
pForm = FrmInitForm(g_AlertID);
}

//Set the event hanlder
FrmSetEventHandler(pForm, (FormEventHandlerType*)AlerterHandleEvents);

err = FrmSetNavState(pForm, kFrmNavStateFlagsObjectFocusMode);  

//Display the form
FrmDoDialog(pForm);

//Delete the form
FrmDeleteForm(pForm);


}

///
//
// This function creates the form to be displayed
//
///


static void CreateDynamicForm()
{




//UInt16  buttonTaped;
UInt8   controlID = 1;

//form varables
Coord   formUpperLeftX = 2; //left edge plus the border
Coord   formUpperLeftY = 80; //left edge plus the border
Coord   formWidth = 156; //right edge plus the border
Coord   formHeight = 78; //right edge plus the border
UInt16  defaultButtonID = g_FirstButtonID;
UInt16  helpRscID = 0;
UInt16  menuRscID = 0;
Boolean modal = true; //alerts are always modal
FormType *  customForm;

Coord   buttonWidth = 60;
Coord   buttonHeight = 12;
Coord   button1UpperLeftX = 5;
Coord   button2UpperLeftX = 85;
Coord   buttonUpperLeftY = 61;
FontID  buttonFont = stdFont;
ControlType*buttonPointer;
UInt16  button1ID = 60005;
UInt16  button2ID = 60006;
UInt8   buttonGroup = 0;
Boolean leftAnchor = true;

//field variables
va_list args = 0;



// Begin
customForm = FrmNewForm(g_AlertID, My Title, formUpperLeftX, 
formUpperLeftY,
formWidth, formHeight, modal, defaultButtonID, helpRscID, 
menuRscID);



buttonPointer = CtlNewControl((void**)customForm, button1ID, 
buttonCtl, Cancel,

button1UpperLeftX, buttonUpperLeftY, buttonWidth, buttonHeight,
buttonFont, buttonGroup, leftAnchor);


buttonPointer = CtlNewControl((void**)customForm, button2ID, 
buttonCtl, Continue,

button2UpperLeftX, buttonUpperLeftY, buttonWidth, buttonHeight,
buttonFont, buttonGroup, leftAnchor);
}

///
//
// This function handles the events for the alert form
//
///

static Boolean AlerterHandleEvents(EventType event)
{
Boolean handled = false;
FrmNavStateFlagsType stateFlags;
FormPtr frmP = FrmGetActiveForm();
Err err = errNone;

if(event.eType == ctlSelectEvent)
{

if (event.data.ctlSelect.controlID == g_FirstButtonID

FrmNewForm, FrmDoDialog, and FrmSetNavState

2005-08-10 Thread Eric Potter
In my application, I create a new form with FrmNewForm, setting the 
modal flage to true. I display it with FrmDoDialog. But when I run it on 
the T5, the focus ring is not drawn. I though all Modal forms had the 
focus ring on by default. Is this a bug/loop-hole in the OS?


As a work around, I tried to turn the focus ring on automatically by calling

FrmSetNavState(FrmGetActiveForm(), kFrmNavStateFlagsObjectFocusMode);

on winEnterEvent and that didn't work. I also called it on the first 
nilEvent after winEnterEvent and that didn't work either.


Is there a way to turn on the focus ring on dynamically created forms?

Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: BIGBUTTON keyword in PilRC

2005-07-19 Thread Eric Potter

Ben Combee wrote:

At 01:30 PM 7/18/2005, you wrote:

What about the JUMPOBJECTID and BOTTOMLEFTOBJECTDID keywords? What do 
they do?



Nothing at this time.  They were put into the data structure for 
possible future use.  These are all documented in the palmOne Developer 
Guide in the pluggedin.palmone.com site.


-- Ben Combee, Senior Software Engineer, palmOne, Inc.
   Combee on Palm OS weblog: http://palmos.combee.net/
   Developer Forum Archives:   http://news.palmos.com/read/all_forums/


Are you sure they are in the developer guide? There is a section on 
navigation starting on page 85 (95 of the pdf), but I don't see the 
keywords described anywhere.


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: treo 650 wont boot

2005-07-18 Thread Eric Potter

Scott Erickson wrote:
Ive tried that.  It gives the same result, it just sits at the Palm Powered 
logo.



Have you done a no notify reset? That might help.

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


BIGBUTTON keyword in PilRC

2005-07-18 Thread Eric Potter
I'm putting some navigation resources in my app. I was reading the PilRC 
docs on how to do this. Can someone please tell me what the BIGBUTTON 
keyword does? I used in on a form as a test and it didn't seem to do 
anything.


I'm using the latest PilRC and CodeWarrior 9.3.

Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: BIGBUTTON keyword in PilRC

2005-07-18 Thread Eric Potter

Ben Combee wrote:

At 11:18 AM 7/18/2005, you wrote:

I'm putting some navigation resources in my app. I was reading the 
PilRC docs on how to do this. Can someone please tell me what the 
BIGBUTTON keyword does? I used in on a form as a test and it didn't 
seem to do anything.


I'm using the latest PilRC and CodeWarrior 9.3.



It's used for large graphical buttons on the Treo devices -- if you look 
at buttons like the accept call or send to voicemail button when a 
call comes in, you'll notice that the highlighting for five-way is done 
differently from other buttons.  This is what controls that highlighting 
style.



-- Ben Combee, Senior Software Engineer, palmOne, Inc.
   Combee on Palm OS weblog: http://palmos.combee.net/
   Developer Forum Archives:   http://news.palmos.com/read/all_forums/


What about the JUMPOBJECTID and BOTTOMLEFTOBJECTDID keywords? What do 
they do?


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


checking for a microphone

2005-07-15 Thread Eric Potter
I've got an app that records sounds with the SndStreamCreateExtended 
API. The sample code has a function called PalmSGHasExtendedSampledSound 
that checks for the for the existence of the right hardware. The problem 
is that that function returns true for the T|T5 because it has sampled 
sound, but I need it to return false because it doesn't have a 
microphone. Is there any way to check for microphone.


The sloppy work around would be to check for the T5. Are there any other 
devices that support sampled sound but don't have a mic?


Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


storing and retrieving images taken by the camera

2005-07-11 Thread Eric Potter
From looking at the CameraSample code, I've figured out how to capture 
an image taken with the camera. But how do I store the image and retieve 
it later? I've read in the archives that I can't just write the Bitmap 
structure to the database because the bits are stored outside the 
structure. Does anyone have some sample code for this?


Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


camera library

2005-06-28 Thread Eric Potter
I'm about to start on an application that uses the camera on the devices 
that have them. I am a bit confused about the differences in the camera 
libraries. The developers guide that comes with the PalmOne SDK 5 talks 
about V2 and V3 of the camera library. The API guide talks about the 
Camera Manager Library API and the Camera Library. Are these the same 2 
things? Can I write code for one and have it work on the other?


I was looking at the V2 sample code, and I came across the readme.txt 
file. It said the following:


This sample shows to use the Camera in Zire72 and Ace device using the 
new Camera Manager library.
For Zire71 and Treo 600, please check the CameraV3 folder in the Samples 
folder of SDK.


This seems to indicate that V3 works on the older devices and V2 on the 
newer devices. Is that correct? Also, what is this Ace device that is 
mentioned?


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: Need info on USB on Palm.

2005-06-24 Thread Eric Potter

Deepak.MA wrote:
There is a dll in the hotsync directory called USBport.dll. If you look 
at the source for the POSE rom transfer utility, you can see how to use 
it. If you seach the archives of this forum and the the comm-dev forum, 
you can find further discussion on this.



I do not see the source for the source of the POSE rom transfer utility.
Could u tellme what the USBport.dll can do for me in this context.

Regards

SASKEN RATED THE BEST EMPLOYER IN THE COUNTRY by the BUSINESS TODAY Mercer Survey 
2004


   SASKEN BUSINESS DISCLAIMER
This message may contain confidential, proprietary or legally Privileged information. In 
case you are not the original intended Recipient of the message, you must not, directly 
or indirectly, use, Disclose, distribute, print, or copy any part of this message and you 
are requested to delete it and inform the sender. Any views expressed in this message are 
those of the individual sender unless otherwise stated. Nothing contained in this message 
shall be construed as an offer or acceptance of any offer by Sasken Communication 
Technologies Limited (Sasken) unless sent with that express intent and with 
due authority of Sasken. Sasken has taken enough precautions to prevent the spread of 
viruses. However the company accepts no liability for any damage caused by any virus 
transmitted by this email

Look in the pose source. I may have misspoke when I said mentioned the 
source for the rom transfer utility. Look for the part of the pose that 
interfaces with the rom transfer utility. For more comentary on what the 
dll can do for you, search the archives of this mailing list and the 
comm-dev mailing list.


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: Need info on USB on Palm.

2005-06-23 Thread Eric Potter

Deepak.MA wrote:

Hi,
I need to establish a communication between my PC and a certain device
running  PalmOS5.4 over USB.
I don't intend to use the HotSync facility but, need to use the USB
facility on the device to facilitate
file transfers between the two ends.

Best Regards
Deep.


SASKEN RATED THE BEST EMPLOYER IN THE COUNTRY by the BUSINESS TODAY Mercer Survey 
2004


   SASKEN BUSINESS DISCLAIMER
This message may contain confidential, proprietary or legally Privileged information. In 
case you are not the original intended Recipient of the message, you must not, directly 
or indirectly, use, Disclose, distribute, print, or copy any part of this message and you 
are requested to delete it and inform the sender. Any views expressed in this message are 
those of the individual sender unless otherwise stated. Nothing contained in this message 
shall be construed as an offer or acceptance of any offer by Sasken Communication 
Technologies Limited (Sasken) unless sent with that express intent and with 
due authority of Sasken. Sasken has taken enough precautions to prevent the spread of 
viruses. However the company accepts no liability for any damage caused by any virus 
transmitted by this email

There is a dll in the hotsync directory called USBport.dll. If you look 
at the source for the POSE rom transfer utility, you can see how to use 
it. If you seach the archives of this forum and the the comm-dev forum, 
you can find further discussion on this.


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: Automation on Palm OS Simulator

2005-06-23 Thread Eric Potter

Deepak.MA wrote:

Hi,
   Along with the simulator for PalmOs, there is folder containing perl
scripts.
Could somebody share his experiences of using the same for test
automation purposes,
or any pointers if it is at all possible for any automation on the
simulator or hardware.

Regards
Deepak


SASKEN RATED THE BEST EMPLOYER IN THE COUNTRY by the BUSINESS TODAY Mercer Survey 
2004


   SASKEN BUSINESS DISCLAIMER
This message may contain confidential, proprietary or legally Privileged information. In 
case you are not the original intended Recipient of the message, you must not, directly 
or indirectly, use, Disclose, distribute, print, or copy any part of this message and you 
are requested to delete it and inform the sender. Any views expressed in this message are 
those of the individual sender unless otherwise stated. Nothing contained in this message 
shall be construed as an offer or acceptance of any offer by Sasken Communication 
Technologies Limited (Sasken) unless sent with that express intent and with 
due authority of Sasken. Sasken has taken enough precautions to prevent the spread of 
viruses. However the company accepts no liability for any damage caused by any virus 
transmitted by this email


Deepak,

I've use the perl scripting in a limited fashion. I've learned that 
there is no real good source of documentation beyond the samples. I had 
some success with the perl scripts, but when I ran longer scripts, I had 
problems with the simulator crashing for no explainable reason.


If you have much luck with this, let me know. I'd love to be able to 
better use the scripting.


Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: odd compiler error

2005-06-23 Thread Eric Potter

Eric Potter wrote:
I'm using CodeWarrior 9.2, and I'm getting a strange compiler error. The 
 following line of code compiles fine in the debug target, but gives the 
following message in the release target.


const sclRepeat scrollRepeat = pEvent-data.sclRepeat;


Error   : 'const' or '' variable needs initializer
DiaryDayForm.cpp line 906   const sclRepeat scrollRepeat = 
pEvent-data.sclRepeat;



Eric

I was able to solve the problem. I went back to an earlier version of 
the SDK. I just copied the Palm OS Support and CW for Palm OS Support 
folders off of another machine on to my machine and now the code works 
again.


Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


odd compiler error

2005-06-21 Thread Eric Potter
I'm using CodeWarrior 9.2, and I'm getting a strange compiler error. The 
 following line of code compiles fine in the debug target, but gives 
the following message in the release target.


const sclRepeat scrollRepeat = pEvent-data.sclRepeat;


Error   : 'const' or '' variable needs initializer
DiaryDayForm.cpp line 906   const sclRepeat scrollRepeat = 
pEvent-data.sclRepeat;



Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


voice recorder

2005-06-10 Thread Eric Potter
I'm attempting to write an application that can record voice memos. I 
need it to work without using a VFS drive. I've looked at the MiniADPCM 
example, but I don't want to rely on the MP3 library. As Katie Siek 
requested yesteday, it would be great to be able to see the source for 
the voice memo application.


Currently when ever I run my app, I get a fatal exception. If anyone can 
look at this code and tell me why, it would be greatly appreciated.


Here is the function that starts the recording:

typedef struct
{
SndStreamRefsndRef;
Int16 *bufOrigin;
Int16 *bufPastEnd;
Int16 *bufCurrent;
} BufPtrs;

BufPtrs gBufPtrs;

UInt32 RequestedBlockSize = 2048;

Int16 *buffer;



void StartRecording()
{
HostTraceOutputTL(dmErrorClass, Start);

//BufPtrs bufPtrs;
Err error = errNone;


SndStreamMode mode = sndInput;  /* input/output, enum */
UInt32 samplerate = 11025;  
SndSampleType type = sndInt8;   
SndStreamWidth width = sndMono; 
UInt32 buffsize = RequestedBlockSize ;  
Boolean armNative = false;
MemHandle bufferHandle;


bufferHandle = MemHandleNew(sizeof(Int16)*16000);
buffer = (Int16*)MemHandleLock(bufferHandle);

gBufPtrs.bufCurrent = buffer;
gBufPtrs.bufOrigin = buffer;
gBufPtrs.bufPastEnd = buffer + 16000;


error = SndStreamCreate(gBufPtrs.sndRef,
mode,   
samplerate, 
type,   
width,  
RecordingCallback,
gBufPtrs/*userdata*/,
buffsize,   
armNative);



error = SndStreamStart(gBufPtrs.sndRef);
}

Here is the call back function:


Err RecordingCallback(void *userdata, SndStreamRef channel, void 
*buffer, UInt32 numberofframes)

{
Err error = errNone;

Int16 *p;
p = ((BufPtrs*)userdata)-bufCurrent;
if(p)
{
MemMove(p,buffer,RequestedBlockSize*sizeof(Int16));
p += RequestedBlockSize;
if(p = ((BufPtrs*)userdata)-bufPastEnd)
p = ((BufPtrs*)userdata)-bufOrigin;
((BufPtrs*)userdata)-bufCurrent = p;
}


return error;

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


On device debugging and LifeDrive Manager

2005-06-07 Thread Eric Potter
Ever since I install the LifeDrvie Manager desktop software, I havn't 
been able to debug on a device. I am using Code Warrior and I'm trying 
to debug on a T3 over USB. I run Dot-Dot-Two on the device, but CW never 
connects to it. Has anyone else seen this. Is there a work around?


Eric

--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Re: Requirement for USB PDA

2005-06-02 Thread Eric Potter

vibodh johari wrote:

Hi
Is anyone who has worked on Zire21 PDA  ?
Can any one tell me , after doing HOT SYNC form the PC , how can I be able
to take data   ( with the USB port in PDA  for my application that I had
loaded to it at the time of Hot Sync ) from a non PC based Device.

The device from which I  had to take data , has a serial port in it , which
is emitting data


Is simple cable from serial toUSB would work or what else I need to do ??

regards
vibodh


I've not done this on the Zire21, but on other devices I was able to 
call SrmOpen and pass the id for the USB port. This allows you to read 
from the usb port as if it were a serial port. You can use the New 
Seroial Manager functions to get your data (SrmReceieve, SrmSend, etc.).


--
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/


Emul68KCommon.c, Line:1683, Entry already in use

2005-05-06 Thread Eric Potter
When I drive my application in the simulator with a perl script, 
occasionally I get an error that says Emul68KCommon.c, Line:1683, Entry 
already in use. I've never seen the error outside of the scripting 
situations. Can anyone tell me what is causing this error? Is it a flaw 
in my app that only comes out under the load testing of a perl script?

Eric
--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Certification Exam

2005-04-14 Thread Eric Potter
I;m planning on taking the certification exam next month at the 
developers conference. I was wondering, are there going to be any cobalt 
questions on the exam?

Does anyone have any other tips on preperation? I've got 3 years 
exprience in the 68K environment, so I should have that covered.

--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Re: Creating CSV files

2005-04-13 Thread Eric Potter
ULStudent:Robert.Conlon wrote:
Hi,
I have created an application that contains alphanumeric tabular
information as well as graphs. When synchronising with a PC the data should
be transferred in ASCII format as a CSV file that can be imported into other
applications such as Excel or Matlab. Does anyone have any suggestions how i
would start creating this CSV file or no of any examples.
  Rob

The applicaiton that I am currently working on creates a csv file via a 
conduit. Using the Generic Conduit framework provided with the Conduit 
SDK made this quite simple.

--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Displaying the Sending Message message

2005-04-13 Thread Eric Potter
On the Treo 600 SMS application, when you send a message, a little box 
appears with the text Sending Message. Does anyone know how they are 
doing that? Is that a little form that is displayed? Is it some control?

Is there a code sample somewhere?
--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Re: FrmSetDIAPolicyAttr on the T3

2005-04-05 Thread Eric Potter
Ben Combee wrote:
At 04:18 PM 4/4/2005, you wrote:
When I call FrmSetDIAPolicyAttr on the T3, I get a Sys 0505(0, 1136) 
error. An erlier post said that this error was related to handling a 
collapsible input area on a device that does not have one. But the T3 
does have a collapseable input area.

Any ideas on why I am getting this error?

Sys 505 is function not implemented.  Are you running on a T3 that has 
the DIA support patches installed?  Support for the PalmSource PINS APIs 
didn't ship in the T3 ROM, it's only there when you add a pair of PRC 
files provided by PalmOne.  More information is at 
http://www.red-mercury.com/t3.html

-- Ben Combee, Senior Software Engineer, palmOne, Inc.
   Combee on Palm OS weblog: http://palmos.combee.net/
   Developer Forum Archives:   http://news.palmos.com/read/all_forums/

Installing those prcs solved the problem but left me confused. Why does 
my application need them when the OS doesn't?

--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


FrmSetDIAPolicyAttr on the T3

2005-04-04 Thread Eric Potter
When I call FrmSetDIAPolicyAttr on the T3, I get a Sys 0505(0, 1136) 
error. An erlier post said that this error was related to handling a 
collapsible input area on a device that does not have one. But the T3 
does have a collapseable input area.

Any ideas on why I am getting this error?
--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Extended Sound vs Sampled Sound

2005-03-16 Thread Eric Potter
Is there a difference between the Extended Sound functionality described 
in the T|T SDK sample code and the Sampled Sound functions defined in 
the Palm OS 5.4 API reference?

If they are different, which one should I use when developing for a T3?
Eric
--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Re: Seeking bespoke Palm OS developer / quote

2005-03-14 Thread Eric Potter
Callum Macdonald wrote:
Hi There,
We're looking to develop an application for Palm OS and seeking developers to 
discuss the project with and get quotes from.
If this isn't the place to find developers, can anyone suggest where I could 
find Palm OS developers?
It's a fairly simple database application on the handheld, with a simple 
download into some standard format on a server. There are one or two 
complications in that we're looking to connect an unlimited number of units to 
a single server, but overall, it should be a simple application.
All suggestions appreciated.
CM.
I'm willing to have a disscussion about it. [EMAIL PROTECTED]
--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Re: how to debug application on Treo

2005-03-08 Thread Eric Potter
Awana, Abhishek wrote:
Does anyone know how we can debug application on Treo device?
Please helpi know how to do it on Palm PDA's but not for Treo.
If it is a treo 650, you will want to read http://palmos.combee.net/.
--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Detecting the handspring/treo phone library

2005-03-03 Thread Eric Potter
I'm tryigng to detect if my application is running on a treo or not. I 
tried to use the code in the SimpleSMS application, but it looks for 
hsSelIndicator, and my treo600 says it doesn't have it. Is there some 
ftr enumeration I can check for?

--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Re: Trace statements from device

2005-03-03 Thread Eric Potter
Eythor wrote:
Is it possible to view trace statements (a la Palm Reporter) from execution 
on a device instead of just the sim/emul.?   Is the Palm Debugger the only 
available route or is there a workaround for the HostTraceOutput calls on a 
device?

Thanks,
Eythor

There is a library over at palmopensource.com that allows you to trace 
on an actual device.

--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


empty popup trigger

2005-02-21 Thread Eric Potter
In my application, I am setting the text of a popup trigger with the 
CtlSetLabel function. Occasionally, on a T3, the field will be blank 
when the form is drawn, the trigger is blank. I can verify that the 
string is valid. I've never see the problem in the simulator. The 
problem only happens occasionally on the device.

Any ideas?
thanks
Eric
--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Re: empty popup trigger

2005-02-21 Thread Eric Potter
Henk Jonas wrote:
Eric Potter wrote:
In my application, I am setting the text of a popup trigger with the 
CtlSetLabel function. Occasionally, on a T3, the field will be blank 
when the form is drawn, the trigger is blank. I can verify that the 
string is valid. I've never see the problem in the simulator. The 
problem only happens occasionally on the device.

Any ideas?
thanks
Eric
The content isn't copied, maybe you pointer isn't valid when the form is 
redrawn?

Henk
I am passsing an array that is a member of the class that is calling 
CtlSetLabel. If the class is calling the function, it's members must be 
valid, corret?

CtlSetLabel(pControl, m_scheduleLabel);
where
Char m_scheduleLabel[20];
is defined in the class header.
--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Focus ring

2005-02-09 Thread Eric Potter
I got my first T5 recently. One of the first things I noticed was that 
on all of my modal forms, a button is given the focus ring. How does the 
palm decide which button gets the focus? Is it possible to not give the 
focus to a button? Is it possible to control this in the resource file?

The application was developed with Code Warrior 9.1 and the resources 
were created in 2.0.3.

--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Re: Replacing password with asterisks in text field?

2005-02-09 Thread Eric Potter
Robert Baruch wrote:
Hi all,
Does anyone know a way of having asterisks appear in a text field when a user 
types in a password? Specifically for the 68k API, not Protein.
Thanks!
--Rob
One quick and dirty trick that I have done is to set the font of the 
field to one of the symbol fonts. That way, when the user enters some 
text, the non-printable character symbol is displayed instead of the 
letter. It's not a pretty as astericks, but it's quick and it gets the 
job done.

--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


createing pdb records on the desktop

2005-01-27 Thread Eric Potter
I am craeting pdb files in a desktop application. My question has to do 
with what I should do for the uniquie IDs of the records. If I leave 
them as 0, they get filled in when they are hotsynced to the device. But 
if they left at 0 and droped onto the simulator, there is a problem when 
you hotsync the simulator, since all the records have the same ID.

Is there a way around this. Shold I fill in the id at the risk of going 
outside the PalmOS scheme of generating IDs?

thanks
Eric Potter
--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


libprc.dll and C#

2005-01-12 Thread Eric Potter
I want to create an application that generates a database for my application. I 
want to use the libprc.dll, but I want to write the application in C#. Has 
anyone done this successfully?

Eric
-- 
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Re: libprc.dll and C#

2005-01-12 Thread Eric Potter
Krzysztof Kowalczyk wrote:
I want to create an application that generates a database for my application. I want to use the libprc.dll, but I want to write the application in C#. Has anyone done this successfully?

Google doesn't show any links for libprc.dll so you might want to be
more specific in the future (like providing a link).
In any case, writing *.pdb generation in C# is trivial even without
any external code. I wrote *.pdb generating code in both python and C
and in both cases it didn't take more than few hours. C# is somewhere
in between python and C when it comes to productivity.
Krzysztof Kowalczyk | http://blog.kowalczyk.info
libprc and par are both shipped with CodeWarrior. I don't doubt that I 
could write pdb generating code, but libprc has some nice features that 
I want to use.

--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


POL classes in a not POL app

2004-12-04 Thread Eric Potter
I am writing standard palm application. I would like to use the 
CDatabase class from POL. Is this possible? I tried simply including 
POL.h, but this created a whole slew of compilation errors.

--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/


Code Warrior problem

2004-10-15 Thread Eric Potter
I have been working on this project for quite some time now. Yesterday, 
I went to do a build and I got the following error messages:

Warning: OS Error The parameter is incorrect (87)
Error: Unable to call the command line tool. Check your PATH environment 
variable.
Error : Compile failed

All of the files compile except the rcp file. The odd thing is, that the 
debug build works fine and the release build has this problem. The error 
message leads me to believe that the problem is in the location of 
PilRC, but if that were the problem, the debug release wouldn't build 
either.

Does anyone know what is going on here? What PATH variable in the error 
message talking about.

thanks
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: Where's Palm OS Cobalt

2004-10-04 Thread Eric Potter
YAMADA Tatsushi wrote:
TungstenT5 is released finally without Palm OS Cobalt.
Where on earth is the device with Cobalt?
YAMADA Tatsushi Hacker Dude-san
http://simple-palm.com
mailto:[EMAIL PROTECTED]

Speaking of the new T5, what is up with the new file system? The press 
release indicates that the T5 supports a files in folders system. Will 
there be an impact on developers because of this?

Eric
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


SysGetROMToken and sysROMTokenSnum

2004-10-01 Thread Eric Potter
I am getting the serial number of my T3 with the following line of code.
error = SysGetROMToken( 0, sysROMTokenSnum, (UInt8**) bufP, bufLen );
When it returns, bufP = 00V5ABE31EMX, but when I look the serial 
number on the Launcher's Info dialog, the ID is 00V5ABE31EMX-B. What 
is happening to the -B? Is it not a part of the serial number?

thanks
Eric
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: 5-way navigator key codes?

2004-10-01 Thread Eric Potter
Matt Graham wrote:
Ben Combee wrote:
At 01:15 PM 9/30/2004, you wrote:
 What are the 5 way navigator key codes? In chars.h it only says 
vchrPageUp
and vchrPageDown but i don't see any left/right/ or select key 
characters
which are on the 5-way. Thanks, Geoff

Are you using a recent Palm OS SDK.  The current Palm OS 68K SDK 
provides the vchrRocker definitions for the platform-standard 5-way 
keys, although you'll also need SDKs from specific licensees, like 
PalmOne, to get their variations on this that were done before 
PalmSource standardized on the rocker key definitions.

how can we make these rocker events happen on the cobalt simulator?
These are from the documentation that comes with the simulators.
Using Tungsten T Simulator
The Five Way Navigator is map to the following keys:
[Alt] + [Ctl] = Select
[Alt] + [Left Arrow] = Left
[Alt] + [Right Arrow] = Right
[Alt] + [Up Arrow] = Up
[Alt] + [Down Arrow] = Down

Using Tungsten T3 Simulator
The Five Way Navigator is map to the following keys:
[Alt] + [Enter] = Select
[Alt] + [Left Arrow] = Left
[Alt] + [Right Arrow] = Right
[Alt] + [Up Arrow] = Up
[Alt] + [Down Arrow] = Down

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: 5-way navigator key codes?

2004-09-30 Thread Eric Potter
geoff wrote:
Nothing there already looked.
- Original Message - 
From: Henk Jonas [EMAIL PROTECTED]
Newsgroups: palm-dev-forum
To: Palm Developer Forum [EMAIL PROTECTED]
Sent: Thursday, September 30, 2004 2:38 PM
Subject: Re: 5-way navigator key codes?


For Tungsten and Zire go to PalmOne, for Treo600 and all new devices go
to PalmSource, look for Rocker Events.
Henk
geoff wrote:

What are the 5 way navigator key codes? In chars.h it only says
vchrPageUp
and vchrPageDown but i don't see any left/right/ or select key
characters
which are on the 5-way. Thanks, Geoff

--
-
Henk Jonas
Palm OS ® certified developer
[EMAIL PROTECTED]  www.metaviewsoft.de/palmos
-
--
For information on using the Palm Developer Forums, or to unsubscribe,
please see http://www.palmos.com/dev/support/forums/

Look in PalmChars.h and PalmNavigator.h. You may need to get the most 
recent SDK from PalmOne if you don't allready have it.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: Create a PDB file outside of conduit?

2004-09-20 Thread Eric Potter
Grosch, Scott wrote:
In a windows application I want to create and save to disk a .pdb file that the user 
can later install on their handheld if desired.  I've got the CDK 6.1 installed, but 
it appears that I can only create a database during a sync.  I want to create one 
outside of a hot sync operation.  Is that possible?
There is a library that ships with Codewarrior that is called par. It is 
also available on the web. I've used it in a windows application and I 
had a good expirence with it.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: Palm Os Resource Editor

2004-09-16 Thread Eric Potter
There is talk that a future release of PODS / Palm resouce editor will 
include a header file generator. For right now, I am maintaining a 
header file by hand. It's not something that I would want to do for a 
large application. Hopefully I can get xrd2header.xsl working at some point.

This topic has been convered over in the tools forum.
Eric

Insano R.A. wrote:
to create the header files. But I have not used it.

So, what do you use? or better, what do you do? I work with CW 8, with
a resource header file create automatic
I tried to use PODS 1.0 with xrd2header.xsl, but doesn´t work, because
the instalation of Cygwin broke PODS.
Are you using the IDs on the source?
Reguards,
Rafael Augusto
Palm OS Programmer
Tamid Tecnologia

On Wed, 15 Sep 2004 10:58:06 -0500, Eric Potter [EMAIL PROTECTED] wrote:
Bryan Leong wrote:
I be try using Palm OS resource Editor to create my resource file but i cant assign a 
specified name for the object inside the file.
for example a button in a form
i want to name it OKButton and used this name in my coding.
i read the help file it said we assign on Object Identifier field but i cant find it.
Can anyone tell me how i can assign the name for a specified object by using Palm OS 
Resource Editor that come with PODS
thank you
In my expirence, you can't. At least not automatically. You can create
your own file of #defined names, but the resource editor won't do it for
you. There is a tool called xrd2header.xsl that can be plugged into PODS
to create the header files. But I have not used it.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: Palm Os Resource Editor

2004-09-15 Thread Eric Potter
Bryan Leong wrote:
I be try using Palm OS resource Editor to create my resource file but i cant assign a 
specified name for the object inside the file.
for example a button in a form
i want to name it OKButton and used this name in my coding.
i read the help file it said we assign on Object Identifier field but i cant find it.
Can anyone tell me how i can assign the name for a specified object by using Palm OS 
Resource Editor that come with PODS
thank you
In my expirence, you can't. At least not automatically. You can create 
your own file of #defined names, but the resource editor won't do it for 
you. There is a tool called xrd2header.xsl that can be plugged into PODS 
to create the header files. But I have not used it.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: Syntax coloring in CW 9

2004-09-15 Thread Eric Potter
Phil Lachmann wrote:
One of my projects does not show the syntax cloring for macros, palm keywords etc. I 
have the 'activate browser coloring' option checked and my other projects show the 
coloring. What option do I need to look at in my project to activate the coloring?
Thanks,
Phil.
Syntax coloring works better if on the Project Settings - Target - Build 
Extras dialog, you set Generate Browser Data From to Language Parser.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: Testing and Debugging?

2004-09-10 Thread Eric Potter
Pablo Wablo wrote:
Hello, 
I just started programming in Palm OS Garnet and I need to perform
certain tasks that require me to print lengthy information.. Problem
is, I only know of WinDrawChars() as of the moment and it certainly
won't fit in there. Is there a tool where I can display the
information (let's say read from a file)... I checked out Palm OS
Debugger but it doesn't seem to fit my need..

BTW. I'm writing Palm Native Object code and I use PODS 1 with Garnet Simulator.
I don't know if it works in PNO code, but if it does, I believe the 
TraceOutput statements in conjunction with the Reporter will do what 
your asking for. The allow you to send strings from your app to a text 
buffer which is displayed in the Reporter app.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


a68k files not being deleted with the app

2004-09-10 Thread Eric Potter
I noticed then when I delete my application from the launchers delete 
dialog, that the coresponding *_appl_a68k file still exists. Is this a 
problem? Why isn't it deleted.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Adding Dia support to a legacy Application (CodeWarrior)

2004-08-11 Thread Eric Potter
I'm trying to add DIA support to a legacy application. I downloaded the 
OS SDK (v5 r3). In code warrior, I change the system access paths to use 
the new files. When I try to compile, I get an error that says 
unidefined identifier 'FrmSetDIAPolicyAttr'. If I right-click on the 
keyword and choose 'Go to function definition...', it finds the header. 
But it still won't compile.

Does anybody know what I am doing wrong?
Eric
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: Adding Dia support to a legacy Application (CodeWarrior)

2004-08-11 Thread Eric Potter
Is there a way to install the new sdk without altering the old sdk?

Ben Combee wrote:
At 11:36 AM 8/11/2004, you wrote:
I'm trying to add DIA support to a legacy application. I downloaded 
the OS SDK (v5 r3). In code warrior, I change the system access paths 
to use the new files. When I try to compile, I get an error that says 
unidefined identifier 'FrmSetDIAPolicyAttr'. If I right-click on the 
keyword and choose 'Go to function definition...', it finds the 
header. But it still won't compile.

Does anybody know what I am doing wrong?

It is likely that you're using a precompiled header file and it needs to 
be rebuilt to use the new Palm OS SDK.  Look in the CW for Palm OS 
Support/Precompiled Headers folder for the projects.

-- Ben Combee, DTS technical lead, PalmSource, Inc.
   Combee on Palm OS weblog: http://palmos.combee.net/
   Palm OS Dev Fourm Archives: http://news.palmos.com/read/all_forums/

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: palm os versioning scheme

2004-08-03 Thread Eric Potter
Thanks for the info. I've got two follow on questions. 

1) Are the bug fixes described somewhere?

2) Does the same versioning scheme apply to HotSync?

thanks


-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


palm os versioning scheme

2004-07-23 Thread Eric Potter
I realize this is slightly offtopic, but how does palm handle there OS 
versioning scheme? How do they decide if something is a 0.1 release or a 
point 0.0.1 release? Is there a rule set?

Eric Potter
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


libprc and chained headers

2004-07-20 Thread Eric Potter
I created a desktop app to create pdb files for my palm application. To 
create the record I used the libprc library that comes with par. Libprc 
is a great library, but I do have one problem. When I create very large 
databases, the resulting pdb file has chained headers. We would like to 
aviod this. Is there a way to make libprc not use chained headers?

thanks
Eric
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


closing multiple dialogs and the event handler

2004-06-24 Thread Eric Potter
In my application, there is a case where I can have one modal dialog on 
top of another modal dialog. When I try to close both of them 
programatically, I get into a state where the form that is displayed 
does not have an event handler, even though it is the active form.

Is there a way to detect which function is the current event handler?
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: closing multiple dialogs and the event handler

2004-06-24 Thread Eric Potter
Prakash wrote:
Have you tried using FormReturnToForm??
Cheers,
Prakash
On Thu, 24 Jun 2004 08:07:43 -0500, Eric Potter [EMAIL PROTECTED] wrote:
In my application, there is a case where I can have one modal dialog on
top of another modal dialog. When I try to close both of them
programatically, I get into a state where the form that is displayed
does not have an event handler, even though it is the active form.
Is there a way to detect which function is the current event handler?
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Yes, I tried that. The correct form was displayed, but there was no 
event handler and so the app was unresponsive.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: temporily blocking the attention manager

2004-06-18 Thread Eric Potter
SLO Revo News wrote:
In my application, I have a need to insure the user doesn't exit the 
application while they are in the middle of entering a record.

A more accepted approach is generally to let the user exit any time they 
want and just save their partial record when they do. Look at the 
ROM-based apps--that's what they do.

I understand that it is a violation of the UI guidlines to block an 
exit, but I do have a case that involes critical and time sensitive 
data. It this case I need to block the user from leaving. I have made an 
attempt to make the time span exit is blocked as short as possible.

That being said, does anyone know how to block an exit via attention 
manager?

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


temporily blocking the attention manager

2004-06-17 Thread Eric Potter
In my application, I have a need to insure the user doesn't exit the 
application while they are in the middle of entering a record. So far I 
have able to block everything except exiting via the attention manager. 
Is there a way to temporarily restrict the user for accessing the 
attention manager? When i watched the events in the simulator, it looks 
like you can leave an application without ever getting an app stop if 
you leave from the attention manager, what else can I look for?

Eric
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


closeing dialog programatically

2004-06-15 Thread Eric Potter
What is the best way to close a form programatically? I am displaying a 
form with FrmDoDialog. If the user doesn't respond in a certain amount 
of time, I need to close the dialog. How can I do this.

thanks
Eric
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: Odd address problem with ErrTry

2004-06-08 Thread Eric Potter
Eric Potter wrote:
I found a bug in my code, where in certian senarios, when i get to an 
ErrTry, it throws the following error:

i:\banzai\arm\core\emul68k\src\emul68kcommon.c, Line:562, Odd address
In most casses, the line of code executes fine, but I one case it blows 
up. I researched the archive and found some other people that have had 
this problem, but no solutions have been posted. Has anyone figured this 
one out?

Eric Potter
I've been working on this for a while now and I have not found a 
solution. Has anyone used the ErrTry successfully in a large applictaion 
or is this a bug in the Palm API?

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: Palm OS Developer Suite 1.0 Alpha Available

2004-06-05 Thread Eric Potter
Ben Combee wrote:
PalmSource is pleased to announce the availability of the alpha-testing 
release of Palm OS Developer Suite (PODS), version 1.0.  This is a new 
collection of tools supporting software development for Palm OS Cobalt 
and Palm OS Garnet.

You can download this release from
http://www.palmos.com/dev/dl/dl_tools/dl_pods/
It is available as a single ZIP file (230MB) or as a split ZIP file 
(twelve 20MB parts).   There are separate source code downloads for 
components distributed under open source licenses.  This release is only 
intended to run on systems with Microsoft Windows 2000 and Microsoft 
Windows XP; other host operating systems, including older versions of 
Windows, are not supported at this time.

This release should not be installed over an existing PODS 0.1.0 or 
0.1.1 setup.  Please uninstall that version before installing this alpha 
release.  Projects created in older versions of PODS will need to be 
recreated.

Key Features of PODS 1.0:
- support for development for Palm OS Protein APIs (x86 and ARM), 68K, 
and PACE Native Objects
- based on the open-source Eclipse IDE, version 2.1.2 and Eclipse C/C++ 
Developer Tools, version 1.2.1.
- Managed Make support eliminates need to manually edit makefiles
- integrated debugging support for Palm OS Simulators, Palm OS Emulator 
(POSE), and most devices with serial or USB connectivity
- standalone Palm OS Resource Editor with support for XRD resource format
- integrated build environment and command-line build tools
- bundled SDKs and simulators for Palm OS Garnet (5.4 and earlier) and 
Palm OS Cobalt (6.0.1)

This is an alpha-testing release, covered under the Prototype Agreement 
of the PalmSource developer program.  We are planning on an official 1.0 
release later this summer, so please download and evaluate this software 
at your earliest opportunity.  There are known bugs listed in the 
release notes that will be fixed, but we are also interested in having 
you to report any problems you find with PODS to PalmSource using the 
bug reporting form at

http://www.palmos.com/dev/support/bugs/
Our highest priority is solving problems with the build tools, the Palm 
OS-specific preferences, and debugging.  Issues that are specific to the 
Eclipse environment outside the scope of our integration with 
PalmSource's tools may not be addressed before the 1.0 final release.  
All bug reports will be reviewed by PalmSource tools developers, but you 
will not get a direct response to your reports.

(This announcement has also been posted to the pno-forum, protein-forum, 
and tools-forum mailing lists.)
Is there any risk of the PODS install corrupting my Code Warrior 
instalation?

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Odd address problem with ErrTry

2004-06-04 Thread Eric Potter
I found a bug in my code, where in certian senarios, when i get to an 
ErrTry, it throws the following error:

i:\banzai\arm\core\emul68k\src\emul68kcommon.c, Line:562, Odd address
In most casses, the line of code executes fine, but I one case it blows 
up. I researched the archive and found some other people that have had 
this problem, but no solutions have been posted. Has anyone figured this 
one out?

Eric Potter
--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: blocking the carriage return when the keyboard is displayed.

2004-04-08 Thread Eric Potter
This is impossible. When the keyboard is displayed, it is like a modal 
dialog, no events are sent through the application event loop.

Caspar Heiden, vd wrote:
In AppEventLoop, after you've gotten an event with EvtGetEvent, but
before you call SysHandleEvent:
- check wether the event is a keyDownEvent
- if it is, check wether the key is the CR return (check docs / google)
If both tests are true, simply skip the rest of the loop, for instance
by using continue.
Good luck,

Caspar

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eric
Potter
Sent: Thursday, April 01, 2004 9:35 PM
To: Palm Developer Forum
Subject: blocking the carriage return when the keyboard is displayed.
Is it possible to block the carriage return character when the keyboard 
is displayed? I was looking at Keyboard.h and there are a bunch of 
functions that aren't documented, so I don't know what they do. I see 
there is a #define for the return key, but I don't know if or how I 
would use this definition.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


blocking the carriage return when the keyboard is displayed.

2004-04-01 Thread Eric Potter
Is it possible to block the carriage return character when the keyboard 
is displayed? I was looking at Keyboard.h and there are a bunch of 
functions that aren't documented, so I don't know what they do. I see 
there is a #define for the return key, but I don't know if or how I 
would use this definition.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: blocking the carriage return when the keyboard is displayed.

2004-04-01 Thread Eric Potter
Matt Graham wrote:
Eric Potter wrote:

Is it possible to block the carriage return character when the 
keyboard is displayed? I was looking at Keyboard.h and there are a 
bunch of functions that aren't documented, so I don't know what they 
do. I see there is a #define for the return key, but I don't know if 
or how I would use this definition.


Does setting the field as a single line field fix it for you?

No, I need to limit the field to exactly 3 lines.

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


NilEvents on Modal Dialogs

2004-03-29 Thread Eric Potter
Is there a way to modify how often you recieve NilEvents while a Modal 
Dialog is displayed?

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Has anyone been able to download the Cobalt simulator yet?

2004-02-13 Thread Eric Potter
If so, where?

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


SysNotifyRegister and memory leaks

2004-02-05 Thread Eric Potter
If I pass a data pointer to SysNotifyRegister, when does that memory get 
 freed? Do I need to get it and free it when I call SysNotifyUnregister 
or does SysNotifyRegister make a copy of it, thus allowing me to free it 
imediatley after I call SysNotifyRegister?

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


regionalized version of __DATE__

2004-01-29 Thread Eric Potter
Is there a slick way of getting a regionalized version of the __DATE__ 
macro? I am thinking that I am going to have to parse the string and 
convert it to DateType. Does anybody have any better ideas?

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


printing from a Palm app

2004-01-14 Thread Eric Potter
I'm looking into some printing options for my palm app. For bluetooth
printing, I am thinking about using PrintBoy. Are there any good
alternatives? 

I am also looking at useing a PP-50 thermal printer. Is there any
reason I should think about using something else?

Does anybody have any good tips on getting started with either of
these products?

Thanks

Eric

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


which devices can send sms messages?

2004-01-14 Thread Eric Potter
Is there a list somewhere of the devices that have the ablilty to send
sms messages?

If I had to guess I would say all of the treos, the kyeocra 7100, and
the bluetooth devices, but I don't know. 

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Memory filling tool

2003-12-18 Thread Eric Potter
Is there a tool out there somewhere that fills all of the memory, so
that there is no free memory left? I need something like this for my
testing.

Thanks

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


shared libriaries and accessing unused portions of the stack

2003-11-17 Thread Eric Potter
I have a rather large shared library. (40K size, 68 entry points).
When I compile it with in debug mode it runs fine, but when I compile
it in release mode, it crashed when I call certain functions. The
eroro message i get is that my application just read from an unused
portion of the stack. Since it works in debug mode, I believe the
problem is in the project setup. Does anybody have any idea what the
problem might be?

thanks

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


switching from small to smart code model

2003-11-04 Thread Eric Potter
I recently had to switch from a small code model to a smart code
model. When I did this, I started getting a whole bunch of 'illegal
single segment 32-bit reference to' errors. The code is for a shared
library. There seems to be on reference error for each entry in the
dispatch table. Is it possible to have a smart or large code model in
a shared library? If so, how do I get around all of the 32-bit
reference errors?

thanks

Eric Potter

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: green around bitmap

2003-10-23 Thread Eric Potter
I am using PilRC designer. I use the following line to define the bitmap:

BITMAP ErrorLarge256Bitmap.bmp  BPP 8  NOCOMPRESS TRANSPARENT 0 255 0
TRANSPARENTINDEX 0 DENSITY 2 NOCOLORTABLE

The problem is that I still see the green. Do I need to set the
TRANSPARENTINDEX to something like 000255000?

thanks



Markus Dresch [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 set the transparent rgb values to green?

 markus dresch (www.palmside.com)


 Eric Potter [EMAIL PROTECTED] schrieb im Newsbeitrag
 news:[EMAIL PROTECTED]
  OK, I copied the error bitmap from OS into a resource database. Then I
  opened that database with constructor and saved it as a rsrc file.
  Then I opened that rsrc file with PilRC designer and added that bitmap
  to my application. The problem is that when I display the bitmap in my
  application, the transparent part of the bitmap is now green. Any
  Ideas on how to correct this?
 
  thanks
 






-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


alert icons in OS5

2003-10-22 Thread Eric Potter
I know that in OS 4 and lower, you could get the bitmaps for the alert
forms, (error, notification, and so on) out of the System DB. But in
OS 5, I don't see a SystemDB. Does anyone know where these icons are
stored now?

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


green around bitmap

2003-10-22 Thread Eric Potter
OK, I copied the error bitmap from OS into a resource database. Then I
opened that database with constructor and saved it as a rsrc file.
Then I opened that rsrc file with PilRC designer and added that bitmap
to my application. The problem is that when I display the bitmap in my
application, the transparent part of the bitmap is now green. Any
Ideas on how to correct this?

thanks

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


problem beaming an app and a library from within the app.

2003-10-15 Thread Eric Potter
I am trying to write a function that means the current application and
it a shared library. Is this possible? First I send the app then I
send the library. When I run the code, the recieving device asks if
you want to except the app, but it never says anything about the
library. Afterwards, the app is present on the recieving device, but
not the library. Any ideas? Thanks




static Err WriteDBData(const void* dataP, UInt32* sizeP, void*
userDataP)
{
Err err;

// Try to send as many bytes as were requested by the caller
*sizeP = ExgSend((ExgSocketPtr)userDataP, (void*)dataP,
*sizeP, err);

return err;
}

//
 
static Err SendDatabases ()
{
ExgSocketType   exgSocket;
Err err;

UInt16 cardNo = 0;
LocalID dbID;
Char *descriptionP = Beamer Test application;
DmSearchStateType searchState;

// Create exgSocket structure
MemSet(exgSocket, sizeof(exgSocket), 0);
exgSocket.description = descriptionP;
exgSocket.name = BeamerTest.prc;
exgSocket.target = sysFileCLauncher;
exgSocket.count = 2;

// Start and exchange put operation
err = ExgPut(exgSocket);

if (err)
{
return err;
}


SysCurAppDatabase(cardNo, dbID);
dbID = DmFindDatabase(0, BeamerTest-Beam);
err = ExgDBWrite(WriteDBData, exgSocket, NULL, dbID, cardNo);


err = DmGetNextDatabaseByTypeCreator(true, searchState,
sysFileTLibrary, '', true, cardNo, dbID);

if (dbID == 0)
{
err = DmGetLastErr();
FrmAlert(LibraryNotFoundAlert);
}
else
{
err = ExgDBWrite(WriteDBData, exgSocket, NULL, dbID,
cardNo);
}

if (err)
{
return err;
}

// Disconnect Exg and pass error
err = ExgDisconnect(exgSocket, err);

return err;

}//end SendDatabase

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


T3 documentation

2003-10-08 Thread Eric Potter
Where can I get documentation for developing 320x480 and 480x320 form
for the T3?

thanks

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


MemPtrNew for a class doesn't call the contructor

2003-09-16 Thread Eric Potter
Is there a was to get MemPtrNew to call the contructor when you craete
a new class?

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: MemPtrNew for a class doesn't call the contructor

2003-09-16 Thread Eric Potter
On Tue, 16 Sep 2003 10:56:35 -0700, Dave Carrigan [EMAIL PROTECTED]
wrote:


On Tue, Sep 16, 2003 at 12:54:49PM -0500, Eric Potter wrote:
 Is there a was to get MemPtrNew to call the contructor when you craete
 a new class?

Use the new operator; that's what it's for.

When I try and use the new operator, I get a Link Error saying, 
'operator new(unsigned long)' referenced from 'MyClass::MyFunc' is
undefined.

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


2 rcp files in one project

2003-09-16 Thread Eric Potter
Is it possible to have use 2 rcp files in one project? If so, is there
any thing special I need to do to access bitmaps in the seconardy rcp
file?

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: MemPtrNew for a class doesn't call the contructor

2003-09-16 Thread Eric Potter
On Tue, 16 Sep 2003 14:22:29 -0700, Dave Carrigan [EMAIL PROTECTED]
wrote:


On Tue, Sep 16, 2003 at 04:10:33PM -0500, Eric Potter wrote:
 When I try and use the new operator, I get a Link Error saying, 
 'operator new(unsigned long)' referenced from 'MyClass::MyFunc' is
 undefined.

What compiler are you using, and if it's prc-tools, what does your
linker command look like.

I am using CodeWarrior.


-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


link error in a c++ shared library

2003-09-08 Thread Eric Potter
I have some code that compiled fine in a standard c++ application, but
when I moved it to a shared library, I got a link error that says:

Cursor.cpp: 'operator delete(void*)' reference from 'Entry::~Entry()'
is undefined.

Why is this happening?

thanks

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


problems with shared libraries and the bundle bit

2003-09-02 Thread Eric Potter
I have a shared library that I want to get beamed with my application.
The app and the library have the same creator ID and I set the bundle
bit on the library. But when I beam my app from the launcher the
library is not sent. Has anyone had problems with this in the past?
Any advice?


thanks

Eric Potter

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


determining if you've read past the end of a va_list

2003-09-02 Thread Eric Potter
Is it possible to determine if you've read past the end of a va_list?
As far as I can tell, when you go past the end of the list, va_arg
returns a pointer that is not NULL, but it is bogus. When this pointer
is passed to one of the string api's, the emulator throws a bus error.
The value of the pointer is 03FD, but I assume that it is not safe
to check against that.

I've read in the archives that there is no good way to validate a
pointer once it's been allocated. 

Is there any way to validate the result of va_arg?





-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Automated Testing

2003-08-26 Thread Eric Potter
Are there any automated testing products out there that are less
expensize than TestQuest Pro but more mature than AutoEmul.

Thanks

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: distinguish between Release and Debug at compile time

2003-08-21 Thread Eric Potter
Is there a way in code warrior to set an enviroment setting that can
be controled independatntly of the Release/Debug setting?

For example, can I define boolean vairable in the compiler that be
accessed by the code? That way I can change what code gets compiled in
without actually changing the code.


On Wed, 20 Aug 2003 16:11:41 -0500, Ben Combee
[EMAIL PROTECTED] wrote:


At 03:30 PM 8/20/2003, Eric Potter wrote:
Is the a way to tell wheter the build is a debug or a release build at
compile time?

I have some code that I want to conditionally compile out for release
builds, but I need the code in there for debug builds.

http://www.escribe.com/computing/pcpqa/m69565.html


-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: distinguish between Release and Debug at compile time

2003-08-21 Thread Eric Potter
Thanks for the tip, but I need something independant of the target
name. I am trying to toggle some logging functionality.  I may want to
have logging in a release build or leave it out. So the control is
independant of release or debug. 


On Thu, 21 Aug 2003 09:54:02 -0400, Regis St-Gelais
[EMAIL PROTECTED] wrote:


you can use

#if __ide_target(Name of your target)
.
#else
.
#endif


-- 
Regis St-Gelais, P. Eng. / ing.
Software Development / Développement informatique
Technical Support / Support technique
Laubrass inc.
www.laubrass.com
[EMAIL PROTECTED]
(remove / enlever 'NOSPAM')


-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


  1   2   >