POL (Object Library for Palm OS) tutorial?

2007-04-13 Thread Confirmation from [EMAIL PROTECTED]
Howdy, Could someone please recommend me any POL-tutorial-related resources? I have googled POL tutorial like crazy but still couldn't find one. Well, I did find one,http://www.aqpoint.com/pol, but the website is completely down now. If you had downloaded all POL examples from that site, could

Re: GETUPTIMEMS

2007-02-05 Thread Carmine [EMAIL PROTECTED]
sTicksPerSecond returns 100 on all known devices. 2) TimGetTicks returns the number of ticks (divide by SysTicksPerSecond to get time in seconds) since the last *reset*. The tick count does not advance while the device is in sleep mode. - Original Message - From: "Sruthi" <

re: How to create a package that installs the Tungsten E2 driver?

2007-01-17 Thread [EMAIL PROTECTED]
Did I ask a tough question :-P? Just to clarify, I don't need help with Visual Studio, I just need to know what files I need to put where, and what registry entries I need to create if any to install this Tungsten E2. Even describing how I can use windows installer to install the palm handheld

How to create a package that installs the Tungsten E2 driver?

2007-01-16 Thread [EMAIL PROTECTED]
I'm trying to automate the install of the hotsync application as well as my application, and I have all of that working, except for the part that installs the Palm USB driver for the Tungsten E2 handheld device.I can see that the driver is the PalmDevC.dll file, and I think the inf file is P

Re: string List

2006-07-31 Thread [EMAIL PROTECTED]
It's not really clear what you want to do. I assume that you want to fill a list you can refer to the knowledge base: http://kb.palmsource.com Answer ID:222 if you want an actual sample code running, tyr answer ID:306 -- For information on using the PalmSource Developer Forums, or to unsubscribe

Echo problem

2006-07-30 Thread [EMAIL PROTECTED]
is there anyway to lower the echo when recording and playing back? because when i tried play my voice immediately when recording, it was very very noisy due to the echo. Thanks, Emilio Young -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://ww

Copyrights issue

2006-07-27 Thread [EMAIL PROTECTED]
Where can I read about the copyrights regarding the codes i can use or not? for example, the sample codes provided by PODS, can we like use them in our application? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/foru

re: Noise sndstreamcallback

2006-07-27 Thread [EMAIL PROTECTED]
I use variable-sized buffers, and I some how fixed the problem by assigning an smaller buffer size for the garbage data not to be played. Thanks, Emilio Young -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Noise sndstreamcallback

2006-07-25 Thread [EMAIL PROTECTED]
Does anyone know how to eliminate the noise in the sndstreamcallback function. My application can record and play at the same time, however, there is lots of noise. my buffer is already initialized to zero but still it produces noise. how can i eliminate that? Thanks, Emilio Young -- For info

Receiving IP Address

2006-07-25 Thread [EMAIL PROTECTED]
Hi, I have this problem with my NetLibReceive, i'm not sure if it is the netlibreceive problem or the netlibsend, i used the parameter below for my netlibreceive: (NetSocketAddrINType *)&netLib.ClientAddr but after i reeive a message then i try to print the ip address using NetLibAddrINToA funct

Re: sync problem

2006-07-24 Thread [EMAIL PROTECTED]
Yes :) That was exactly the cause of my synchronization problem. thanks a lot. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

sync problem

2006-07-24 Thread [EMAIL PROTECTED]
i created an application and when i tried installing it on the device using hotsync, it hangs up on the cleaning up process. it shows cleaning up, please wait.. and it shows it forever. what could possibly cause this problem? Thanks, Emilio Young -- For information on using the PalmSource Dev

Creating static library (help...)

2006-07-21 Thread [EMAIL PROTECTED]
It may sound stupid, but i have created a static library where it uses SndStreamCreateExtended function. I really dnt know why when i use the same code in my application it works, but when i put it into my static library, then use the library in my application to access the sound device it does

Re: netlib non-blocking blocks

2006-07-18 Thread [EMAIL PROTECTED]
Thanks, at least i have an idea what is wrong with my code. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: socket progrmming using netlib

2006-07-18 Thread [EMAIL PROTECTED]
i've checked those code... my problem is for the socket that i open, i can only receive (server), send(client). i cannot use the socket for example on the server, to send anymore. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/d

Re: netlib non-blocking blocks

2006-07-18 Thread [EMAIL PROTECTED]
Hi Jeff, Regarding the code, i initialized using the code below for a UDP server: after loading the net lib NetLibP->MasterSocket = NetLibSocketOpen (NetLibP->AppNetRefnum, netSocketAddrINET, netSocketTypeDatagram, netSocketProtoIPUDP,

socket progrmming using netlib

2006-07-17 Thread [EMAIL PROTECTED]
to send and receive using netlib, is it required to open two sockets one for sending and one for receiving? or only one socket is enough? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

netlib non-blocking blocks

2006-07-17 Thread [EMAIL PROTECTED]
Hi, I have got this code below from Jeff Loucks on how to set my connection to a nonblocking state. Int16 SetSocketBlocking(NetSocketRef s, Boolean fBlocking) { // Blocking flag Int16 option = fBlocking ? 0 : 1; // Set socket blocking or nonBlocking return

Re: Urgent: MemMove in SndsStreamCallBack

2006-07-16 Thread [EMAIL PROTECTED]
yes the callback works prior to the tranmission. I just want to hightlight that i have a compression embeded in my application which requires 4096 buffer size. however the actual buffer size used in the callback function when i print it is only 512 bytes and even goes lower to 256 bytes. -- F

Re: Urgent: MemMove in SndsStreamCallBack

2006-07-16 Thread [EMAIL PROTECTED]
Hi Mr. Aaron Ardiri, Thank you for your help and reply. I don't know why, but putting it directly into the netlibreceive worked this time. but i have some issues, will this method fill the memory? because everytime i stop my application it hangs, which i think is due to limited memory. it would

RE: Voice Compression

2006-07-08 Thread [EMAIL PROTECTED]
yes i'm just looking for the codec and not the encryption anymore. Are there available codec where i can access? it would be really helpful. Thank you -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Vocie Compression

2006-07-08 Thread [EMAIL PROTECTED]
How do I access them? is it with the Palm SDK? or do i have to download an external library? tnx for the reply -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Vocie Compression

2006-07-08 Thread [EMAIL PROTECTED]
Does anybod knows if there is an available library for voice compression for palm? Thank you, -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

r9 and r10 for ARM

2006-06-22 Thread [EMAIL PROTECTED]
I have got this code that uses asembly language... the code is below.. i'm not sure, i think it was posted here before the code: asm { mov r1, r9 str r1, [ptrR9] mov r1, r10 str r1, [ptrR10] } my problem is i c

Question regarding ARM

2006-06-18 Thread [EMAIL PROTECTED]
I just want to know if it is possible to have two arm thread running at the same time?:) Thanks... -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: netlib non-blocking

2006-06-13 Thread [EMAIL PROTECTED]
Yes, that helped. thank you -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

netlib non-blocking

2006-06-12 Thread [EMAIL PROTECTED]
CAn somebody tell me how to use the function NetLibSocketOptionSet to make a non-blocking connection. Do we have to register this or it is used simply by calling this function? and i don't understand how to fill the two parameters void *optValueP, UInt16 optValueLen. Could somebody provide

Help...

2006-06-10 Thread [EMAIL PROTECTED]
Hi, Can somebody tell me how to use cache? is there any function provided by the API for caching? Thanks -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

streaming audio

2006-05-27 Thread [EMAIL PROTECTED]
Hi, Currently I'm trying to stream an audio file through the network. What i do is after i receive the voice block i write it to a default file then using VFSFileSeek i move the pointer to the previous position to play it back in soundCallBackFunction. however the result is a very choppy voice.

Using SoundMgr

2006-05-14 Thread [EMAIL PROTECTED]
Hi, Can somebody give me some tip on using the SndStreamCreateExtended. I want to simultaneously play and record voice. What is the best way of doing that. is it to create two different stream reference or is there a way of changing the te sndInput to sndouput? i was also thinking to stop and s

Interrupting SndPlaySmf on Treo 650

2005-08-30 Thread [EMAIL PROTECTED]
My application reads data from network on Notifications and inform the user about the same by vibration and playback of midi. But Treo 650 is in standby more (sleep mode) and if the SndPlaySmf plays a midi file, I'm unable to interrupt this long playback and i've to wait for entire midi playback

Using an Application Framework with PODS

2004-12-27 Thread [EMAIL PROTECTED]
Hi there, Does anyone have experience in using a C++ Application Framework - e.g. Bear River's Palm Application Framework (PAF) or ZenPlus / Teenee by Class Action - with the Palm OS Developer Suite? Thanks and best reagrds, Philipp -- For information on using the Palm Developer Forums, or to

How to know the details of cradle connection and detaching

2004-07-06 Thread [EMAIL PROTECTED]
Hi All, I'm making use of sysNotifyLateWakeupEvent for knowing Start-UP. This notification is coming only, (upto now) when the device is switched-on( Which is the desired feature for us) but we are still not very sure that this notification is for Start-UP only, If this notification also com

Re: How to know the details of cradle connection and detaching

2004-07-03 Thread [EMAIL PROTECTED]
Hi Jeffry, Thanks for the reply. Can you please explain the details given in the below mail. I could not follow it. Thanks and regards, Praveen - Original Message - From: "Jeffry Loucks" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]>

How to know the details of cradle connection and detaching

2004-06-29 Thread [EMAIL PROTECTED]
Hi All, The sysExternalConnectorAttachEvent is broadcast when a USB cradle, RS-232 cradle or peripheral, a power cable, or a modem is attached to the universal connector. This notification is broadcast only on devices that have the universal connector. The notifyDetailsP field points to a UInt16

(newbie) equivalent of dll for Palm?

2004-06-22 Thread [EMAIL PROTECTED]
Hi I am trying to figure out how to build a dll kind of thing for Palm. We want to do out own I18N instead of using overlay, so our goal is to build an executible .prc and several language specific prc that just contains those strings (which we store in a header file). Is this something that sounds

programmatically create overlay database?

2004-06-21 Thread [EMAIL PROTECTED]
To be platform-independent, our project has been storing strings in a header file, instead of in the resource file (.rsrc, etc... Now to I18N it, if we still wants to keep those strings in the header file, then we can't use the Prc2ovl tool to generate overlay, instead we have to programmatically c

Can't edit overlay resources with Constructor, please help!

2004-06-21 Thread [EMAIL PROTECTED]
Hi guys, I am new to Palm and all these overlay stuff. I have done a lot of readings these days about them and are trying them out. I am trying to follow the overlay instructions and am using Constructor 1.9 that comes with the SDK. I created the overlays successfully with Prc2Ovl. Then I am tryin

RE: Multi Threading in Palm OS!

2004-06-09 Thread [EMAIL PROTECTED]
PROTECTED] Date: Wed, 9 Jun 2004 12:47:36 -0400 To: [EMAIL PROTECTED] Subject: Multi Threading in Palm OS! Hi guys, Can any one here tell me how should I proceed to be able to implement multi threading in my palm application? Do we have any sample apps available? I have also got problem with

Setting Timer

2004-05-18 Thread [EMAIL PROTECTED]
Hi, I want to set a timer in my application with certain time.Can any one please tell me, how do i set the timer in a Palm based application. I also want to know, whether can i generate an event or notification by setting certain amount of time. Thanks in advance, Praveen ---

Code generation option in codewarrior 9

2004-04-30 Thread [EMAIL PROTECTED]
Hi All, Is it possible to get assembly language code generated by CW 9 compiler ..?? Regards, Pravin Tamkhane mail2web - Check your email from the web at http://mail2web.com/ . -- For information on using the Palm Developer

Receive a sms and run an application

2004-03-26 Thread [EMAIL PROTECTED]
Hello, I need to run an app in my Palm Tungsten W when a PC need it, someone said me that I can register my app and when it receives a determinate sms, it runs my app. How can I do it? How can I register it? Thanks and sorry if my English isn´t very good. -- For information on using the Palm

Problem with sclExitEvent

2004-03-26 Thread [EMAIL PROTECTED]
I am writing code to scroll images + text under Palm 6.0 Here, everytime sclExitEvent is fired, the pEvent->data.sclExit.value and pEvent->data.sclExit.newValue are always same.I initialized scrollbar in following way SclSetScrollBar(pScrollBar,value, 0, 50, 100); where value is int32_t in range

Sms Event

2004-03-16 Thread [EMAIL PROTECTED]
Hello, Which is the event generated when a income sms arrive to my Palm? Sorry for my English -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Problem with simulator

2004-02-25 Thread [EMAIL PROTECTED]
Hello! I´ve developed an app to a Tungsten W and It´s work correct. Now I want to execute this app in Palm simulator PalmOS 5.0 and it doesn´t work. I can´t write into a field text. What´s the matter? I need help!! -- For information on using the Palm Developer Forums, or to unsubscribe, plea

Re: Dave Lippincott, please = :o)

2004-01-21 Thread [EMAIL PROTECTED]
On Tue, 20 Jan 2004, R Luna wrote: > Thank's > I developer in CW 7, > I'm back with this, in the version 7 I execute only strcopy and it's ok > but now i need MemHandleNew(), > MemHandleLock() > StrCopy > MemHandleResize() > MemHandleUnLock() This hasn't changed since version 7 of Codewarrior -

Controls with colors

2004-01-16 Thread [EMAIL PROTECTED]
Could say me anybody how can I change the color of buttons, menu´s tab...? I use CodeWarrior 9.0 and a Tungsten W Thanks for all -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

retrieving previously stored compressed bitmap?

2004-01-08 Thread [EMAIL PROTECTED]
Hi all, I have been trying to do the following (in OS5): 1. compress and save an offscreen window's bitmap to an existing record in the storage heap. 2. read the bitmap at a later date. Part 1 seemed simple. I did something like this: void Save (WinHandle srcWinH, UInt16 index) { BitmapType

CW 9.2/Palm OS 68K Linker crashes

2004-01-06 Thread [EMAIL PROTECTED]
Hi all I have an extremely irritating issue with CW 9.2 crashing every 3rd or 4th compilation attempt with the following error CodeWarrior Plugin Error Palm OS 68K Linker encountered an unhandled exception 0xc0005 at address 0x0041c384 (The memory at address 0x0084 could not be read) L

Books abou Palm Programming

2003-12-10 Thread [EMAIL PROTECTED]
Hello!! Could you said me which books you use to developping palm applications? Thanks -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Pilrc designer - registration key

2003-12-10 Thread [EMAIL PROTECTED]
On Tue, 09 Dec 2003, Ben Combee wrote: > The registration key for CW's bundled version should be installed into your > registry during CW 9.0 installation. However, if you install under one > user and use the app with another, PilRC Designer won't see the > registration as it's stored in the H

Re: Pilrc designer - registration key

2003-12-09 Thread [EMAIL PROTECTED]
On Tue, 09 Dec 2003, Palm Dev Forum wrote: > If they Pilrc uses the Windows Installer (Visual Studio Installer when > distributed with Visual Studio) which uses .msi files, you can use the > allusers=1 command line parameter on the setup command line while logged > in as administrator. > > ht

Re: Pilrc designer - registration key

2003-12-09 Thread [EMAIL PROTECTED]
On Tue, 09 Dec 2003, Philippe Fischer wrote: > Hi, > I had a similar Problem with Pilrc. It happened because I've installed CW as > admin and tried to work with it as normal user. The Pilrc installer stores > the registration key in the windows registry so they are only available to > the user who

Pilrc designer - registration key

2003-12-09 Thread [EMAIL PROTECTED]
Hi In my version 9.2 of codewarrior when I launch Pilrc Designer (either from the menu or directly from the executable screen) it keeps asking me for my registration details and won't let me enter the application. I even tried entering the details I had from a purchased version of Developer Studi

Doubts about Light Screen and Menus

2003-12-04 Thread [EMAIL PROTECTED]
screen? 3.- How can my program disable/enable a menu in runtime execution? Thank you for everything. [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Anyone try Borland C++ BuilderX w/ Palm SDK ?

2003-10-23 Thread [EMAIL PROTECTED]
On Thu, 23 Oct 2003, Eccles Kwong wrote: > > BCBX supports Linux now but I dont know if it will support the PalmOS > > SDK when it comes out for BCBX. I dont see why it wouldnt as long as > > the sdk works on GCC. I wonder if they have any plans for an OWL style class library for the Palms - now

Re: Anyone try Borland C++ BuilderX w/ Palm SDK ?

2003-10-22 Thread [EMAIL PROTECTED]
On Wed, 22 Oct 2003, Layne Lund wrote: > BCB is meant for Windows programming on an x86 machine. It doesn't compile > executable code that can run on an Palm device. They use completely different > processors with different instruction sets. Your choices for Palm development (in > C/C++) are

read from usb port

2003-10-15 Thread [EMAIL PROTECTED]
Hi. I use the code warrior 6.0. palmos version is 3.0. I have a program. its receive the string from serial port. I bought a tungsten|E. it has not serial port. it has a USB port. i want to read from the usb port via my program . i used to SerOpen(

Conduit question

2003-10-13 Thread [EMAIL PROTECTED]
Normally COnduits are programmed in Java or C++. Can you program it on another language? Also, are all conduit multiplataform? meaning that if i program one on java it can syn with a palm and a Mac or a plam and a PC with out any modifications? -- For information on using the Palm Developer For

Re: HELP!!!-PROJECT!!

2003-09-25 Thread [EMAIL PROTECTED]
no problem if its form another country...but the text has to be in Spanish -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: HELP!!!-PROJECT!!

2003-09-25 Thread [EMAIL PROTECTED]
No, no problem. The project is basically the construction of a Student Agenda on Palm OS. That syncs with a Internet web page we already have. We have been trying to do this but we can't even build the application. Uhmm please contact me at [EMAIL PROTECTED] The project has , personal links,

HELP!!!-PROJECT!!

2003-09-25 Thread [EMAIL PROTECTED]
I need some one who can develop a small application, conduit included for next week!! We have been cracking our heads with it and can't seem to do it!!! and now we are desperate!!! I know this is not a news group for jobs but you ARE developers so should know!! Please let me know!! [

about handspring 8M module card

2003-09-10 Thread [EMAIL PROTECTED]
how read/write handspring 8M module card. please give me a Example. thank you! MSN:[EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

palm phone reset

2003-09-05 Thread [EMAIL PROTECTED]
Hi all, Could you tel me why Samsung I330 is reset when alarm pending cancel but Treo 270 work right. Help me. Please, point me any thing example, source code... about dial phone and alarm phone. Thanks, Duc mail2web - Chec

Re: MMS Messaging

2003-07-14 Thread [EMAIL PROTECTED]
the network provider will alter the content. For more information about the MMS visit www.openmobilealliance.com cheers Balaji S Original Message: - From: gok [EMAIL PROTECTED] Date: Mon, 14 Jul 2003 12:08:59 +0100 To: [EMAIL PROTECTED] Subject: Re: MMS Messaging > Forgive me

RE: MMS Messaging

2003-07-14 Thread [EMAIL PROTECTED]
... etc. But you have to write your application to display or play such data. cheers, Balaji S Original Message: - From: gok [EMAIL PROTECTED] Date: Mon, 14 Jul 2003 08:45:45 +0100 To: [EMAIL PROTECTED] Subject: MMS Messaging Forgive me if I'm asking a silly question but Ca

Re: WinPalette

2003-06-08 Thread [EMAIL PROTECTED]
If yes how to initialize colortableP? thanks. -- Initial Header --- From : [EMAIL PROTECTED] To : "Palm Developer Forum" <[EMAIL PROTECTED]> Cc : Date : Fri, 6 Jun 2003 15:43:44 +0200 Subject : Re: WinPalette > how can I use m

WinPalette

2003-06-06 Thread [EMAIL PROTECTED]
Hi, how can I use my own palette to Draw a bitmaps( from table) I have to use Winpalette but the image always takes the default palette. thanks. ** SPECIAL ADSL ** L'ADSL à partir de 15,95 EUR/mois et le modem ADSL offert ? C'est en exclusivité chez Tiscali ! Pour profiter de

Convert Bitmap Pc to Palm bitmap field

2003-05-29 Thread [EMAIL PROTECTED]
Hi, I'm looking for a possibility to convert a bitmap Pc to Palm bitmap field !!! is this function available on CDK 4.03 ? thanks. ** SPECIAL ADSL ** L'ADSL à partir de 15,95 EUR/mois et le modem ADSL offert ? C'est en exclusivité chez Tiscali ! Pour profiter de cette offre,

Convert Bitmap Pc to Palm bitmap field

2003-05-27 Thread [EMAIL PROTECTED]
Hi, I'm looking for a possibility to convert a bitmap Pc to Palm bitmap field !!! is this function available on CDK 4 ? thanks. ** SPECIAL ADSL ** L'ADSL à partir de 15,95 EUR/mois et le modem ADSL offert ? C'est en exclusivité chez Tiscali ! Pour profiter de cette offre, cli

Need help with debugging on device via USB

2003-04-01 Thread [EMAIL PROTECTED]
I am currently trying to debug some ARM code on a TT using my USB cradle. Unfortunately, I do not seem able to get Codewarrior/Palm Debugger and the device to talk to each other. I followed the instructions contained in Palm Dev Tools Manual, i.e.: disabled Hotsync Manager, restarted PC, starte

Help with HwrIRQ6Handler error

2003-03-26 Thread [EMAIL PROTECTED]
I am writing an application which, when run through POSE, gives me the following error: 'Starter (1.0) called Palm OS routine #0xA256 (HwrIRQ6Handler). This routine does not exist in this version of the Palm OS.' I have no idea what this is, and in my program am in no way touching IRQs or anythin

Sync Question-Help!

2003-03-09 Thread [EMAIL PROTECTED]
Hi, Im am new here in the world of programming in Palm. I am currently working on a project, for my University. I’m trying to perform a Sync between a Palm and a server (specifically a page that we are also creating). This sync needs to be performed from the LAN in our campus and from the student

Re: Datebook crashes (occasionally)

2003-03-04 Thread wiwawuschel2003 &lt;[EMAIL PROTECTED]>
e variable used for this is NumAppts (default set to 11=DayEndHour-DayStartHour+1). The value depends on the system's preferences. I hope the second error is just a follow-up. Michael --- In [EMAIL PROTECTED], "Chris Antos" <[EMAIL PROTECTED]> wrote: > The full source fo

Re: Multithreading in Palm OS 5

2003-02-28 Thread Johnson &lt;[EMAIL PROTECTED]>
Thank you for your reply. But I am a bit confused. Does you mean that this kind of application cannot be realised directly on the Palm OS platform, but have to dig into the ground like dealing with the drivers or even some of the hardware. Thanks --- In [EMAIL PROTECTED], "Aaron A

Re: Serial comm delays in OS 5

2003-02-27 Thread Craig Curry &lt;[EMAIL PROTECTED]>
I have found the same problem on an application that I am working on. It works fine on pre-OS5s but fails on the Tungsten. I have talk to Palm directly and indirectly and have not received any helpful information. My application is a real time app and must be able to process serial information

Re: Serial comm delays in OS 5

2003-02-26 Thread ritmanik &lt;[EMAIL PROTECTED]>
Just something to keep in mind if you are not able to call SrmReceiveCheck() before SrmReceive() like I am. --- In [EMAIL PROTECTED], "Rob Larson" <[EMAIL PROTECTED]> wrote: > My guess is that the Uart is buffering the characters in its FIFO. > > Instead of the SrmRece

Re: HighDensity drawing examples with offscreen bitmaps?

2003-02-26 Thread jeffreyrdiamond &lt;[EMAIL PROTECTED]>
Ken, thanks to the very helpful ideas. A key assumption I had been making about my problem was incorrect. Turns out this was an OS-HEAP MEMORY limitation problem, but NOT a 64K barrier problem nor a 16-bit color problem (both red herrings for me). I had been trying to allocate a 320 x 320 x 16 b

Re: Add string into a noneditable table cell

2003-02-25 Thread ritmanik &lt;[EMAIL PROTECTED]>
If you use a custom draw procedure, I beleive that drawing the text onto the screen is your responsibility, the OS does not handle this for you. To draw the text, use WinDrawChars() before the string memory is released. See below. Parameters x and y will be passed into your CustomDrawProcedu

Re: HighDensity drawing examples with offscreen bitmaps?

2003-02-25 Thread jeffreyrdiamond &lt;[EMAIL PROTECTED]>
creen VRAM, use some pages for your buffers, and no allocation or heap usage needed. --- In [EMAIL PROTECTED], "jeffreyrdiamond <[EMAIL PROTECTED]>" <[EMAIL PROTECTED]> wrote: > Ken, I am getting desperate! How did you get around the 64K problem? > If I use WinCreateOffsc

Re: HighDensity drawing examples with offscreen bitmaps?

2003-02-25 Thread jeffreyrdiamond &lt;[EMAIL PROTECTED]>
AIL PROTECTED], kcorey <[EMAIL PROTECTED]> wrote: > On Wed, 2003-01-08 at 20:03, Danny Wong wrote: > > when you create your offscreen bitmap you need to pass in the screen format > > as "nativeFormat" and not "screenFormat". Try that it works for me. > > Wel

Re: bitmap palette

2003-02-17 Thread g3BEPA &lt;[EMAIL PROTECTED]>
You cant. Use pilRC. After that if you need better performance strip the colortable from the .r file and set it manualy when starting the app. --- In [EMAIL PROTECTED], "Chris Apers" <[EMAIL PROTECTED]> wrote: > Hi, > > Is it possible to create a bitmap with

Re: 802.11b on tungsten?

2003-02-07 Thread [EMAIL PROTECTED]
Thus spake Dave Lippincott in news:112540@palm-dev-forum: > > Socket has announced a 802.11b SDIO card to be shipping 1Q/03 > (expected by March?). I haven't heard if there will be OS5 > drivers available. Or would a bluetooth network access point work? Socket's will likely be PPC only. Sandisk

Re: about rectangle button?

2003-02-06 Thread g3BEPA &lt;[EMAIL PROTECTED]>
try this: controlP->attr.frame = rectangleButtonFrame --- In [EMAIL PROTECTED], "Susan" <[EMAIL PROTECTED]> wrote: > I want to draw a rectangle button,but it is a button with rounded corners.I > want to get rid of these corners.what can i do? > > Is there an

error

2003-02-05 Thread g3BEPA &lt;[EMAIL PROTECTED]>
error -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: BitmapTypeV3 problem

2003-02-05 Thread g3bepa &lt;[EMAIL PROTECTED]>
Hi, you need to call both BmpDelete(bmpV2) and BmpDelete(bmpV3) to free the headers you've created with BmpCreate and BmpCreateBitmapV3. If you delete only one of them you will delete its header and bmpbits but you will still have the other header (structure). --- In [EMAIL PROTECTED],

Re: WinCopyRectangle problem

2003-02-05 Thread g3bepa &lt;[EMAIL PROTECTED]>
It performs an illegal operation... ?!? That usualy means there is error in my code. --- In [EMAIL PROTECTED], "Markus Dresch" <[EMAIL PROTECTED]> wrote: > actually i use some similar code and it works. the only difference is that i > use a normal BitmapType as a resul

Re: BitmapTypeV3 problem

2003-02-05 Thread g3bepa &lt;[EMAIL PROTECTED]>
thanx a lot! I'll try it. --- In [EMAIL PROTECTED], "Aaron Ardiri" <[EMAIL PROTECTED]> wrote: > > MemHandle h = DmGetResource(bitmapRsc, BmpId); > > BitmapPtr bitmapP = (BitmapPtr)MemHandleLock(h); > > > > BitmapTypeV3 *bmpV3P = BmpCreateBitmapV3(bi

Re: WinCopyRectangle problem

2003-02-05 Thread g3bepa &lt;[EMAIL PROTECTED]>
Again crash! unlock doesn't help. Even changed the bitmap resource to be double density and again crash. --- In [EMAIL PROTECTED], "Markus Dresch" <[EMAIL PROTECTED]> wrote: > > > > MemHandle h = DmGetResource(bitmapRsc, BmpId); > > > > B

Re: WinCopyRectangle problem

2003-02-05 Thread g3bepa &lt;[EMAIL PROTECTED]>
it is not compressed! but it still crashes. --- In [EMAIL PROTECTED], "Markus Dresch" <[EMAIL PROTECTED]> wrote: > is your bitmap compressed? you may not pass a compressed bitmap to > BmpCreateBitmapV3. > if it is compressed, you can try BmpCompress(bitmapP, > BitmapC

Re: WinCopyRectangle problem

2003-02-05 Thread g3bepa &lt;[EMAIL PROTECTED]>
apP), NULL); WinDrawBitmap((BitmapPtr)bmpV3P, (x + shift)/2, y/2); And the simulator crashes! --- In [EMAIL PROTECTED], "Aaron Ardiri" <[EMAIL PROTECTED]> wrote: > > Hi group, > > I am trying to CopyRectangle from offscreen to the > > screen on os5 in hi-res

Re: Constructor resource maximum

2003-02-03 Thread jwoodruff_sw &lt;[EMAIL PROTECTED]>
> You can't overcome this limit easily by using multiple .rsrc files, since > the Mac OS 68K linker in CodeWarrior uses a Mac OS application as a > temporary file that gets transformed by PalmRez into the final PRC file. > > With CW for Palm OS V9, you can use the Palm OS 68K linker. It u

Cursor lost on return to DateBook.

2003-01-31 Thread nybxvc &lt;[EMAIL PROTECTED]>
Hi! Who knows where to get the standard programs' code? Or how to launch an own appl as subroutine of e.g. DateBook? Over a button I can open my keyboard appl while DateBook is open. WWhen I return the text is even entered into DateBook, only by generating a new line. It is not appended where th

Need Hack Example! (keyboard replacement)

2003-01-31 Thread nybxvc &lt;[EMAIL PROTECTED]>
Hi, I don't grasp the page 'how to make a hack' which I found when I tried to learn how to make my own keyboard replacement. With Codewarrior I have it well done as stand alone appl but how can I make it pop up by pressing abc from somewhere? I know how for OS 5 but not up to 4.1 Who can give m

Re: All the processor time is taken by the Emulator

2003-01-30 Thread venkimohanraj &lt;[EMAIL PROTECTED]>
Hi check EvtGetEvent() method in your application. Try increasing the time out value. This might help. --- In [EMAIL PROTECTED], "Matthew Henry" <[EMAIL PROTECTED]> wrote: > I posted this earlier, but for some reason it didn't seem to get posted: > ---

Re: simplest way to grab screenshots

2003-01-29 Thread [EMAIL PROTECTED]
Thus spake Aaron Ardiri in news:17@palm-dev-forum: > >> If I remember, alt prints the active window while the alt-less >> prt scr prints the entire screen... or something like that > > [ctrl] Either PrtScr or Ctrl-PrtScr will work for the entire screen. Toby -- NP: Live - Throwing Copp

Re: simplest way to grab screenshots

2003-01-29 Thread [EMAIL PROTECTED]
Thus spake David Janssens in news:111084@palm-dev-forum: > > Hello, > > Does anyone know what's the easiest way to grab screenshots under > OS5 (high density)? >From the device, there's at least Screenshot5 from LinkeSoft (no affiliation other than being a satisfied customer). I'd guess there

Re: File stream ???

2003-01-29 Thread orneinar &lt;[EMAIL PROTECTED]>
> > I would like to save informations for my app on my palm. > I would like to use FileOpen, FileRead and FileWrite to do that, but it > looks like > the datas are not persistant when I quit my application. > > When I restart my app, and do an FileOpen and FileRead, I don't read the > datas >

How callback in SysNotifyRegister

2003-01-22 Thread nybxvc &lt;[EMAIL PROTECTED]>
How to pass a pointer to a callback function? The function is my keyboard replacement code. And can this code be in the same app where the lines below are (and made start it on tapping on the silkscreen abc-button while e.g. Memopad runs)? Now I have to replace the first NULL to avoid the start

Re: Dynamic List Creation - pitfall and solution - similar problem

2003-01-19 Thread venkimohanraj &lt;[EMAIL PROTECTED]>
lly should I use the trigger ID or the list ID (for FrmSetObjectPosition) to display the trigger to the user. Does anyone have any code snippet for Dynamic popup list. Thanks Venkatesh --- In [EMAIL PROTECTED], "Aaron Ardiri" <[EMAIL PROTECTED]> wrote: > > > &

  1   2   >