Re: creating kernel-level drivers to read the z22 processor serial number

2009-03-27 Thread Guilherme Campos Hazan
Z22 have sold thousands of devices and we have lots of customers that still use it. Anyway, i adopted an alternative solution to my problem. thanks anyway. -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: creating kernel-level drivers to read the z22 processor serial number

2009-03-27 Thread Ryan Rix
v-forum... > >>I am - but that doesn't work on Z22. > >> > > > > Not all devices have a serial number. > > I don't recall if the Z22 does. > > > > There are 2 way to get the serial number depending on the device type. > > > > 1- Ch

Re: creating kernel-level drivers to read the z22 processor serial number

2009-03-27 Thread Dmitry Grinberg
Campos Hazan" a écrit dans le message de > news: 187...@palm-dev-forum... >>I am - but that doesn't work on Z22. >> > > Not all devices have a serial number. > I don't recall if the Z22 does. > > There are 2 way to get the serial number depending on

Re: creating kernel-level drivers to read the z22 processor serial number

2009-03-27 Thread Regis St-Gelais
"Guilherme Campos Hazan" a écrit dans le message de news: 187...@palm-dev-forum... >I am - but that doesn't work on Z22. > Not all devices have a serial number. I don't recall if the Z22 does. There are 2 way to get the serial number depending on the device type.

Re: creating kernel-level drivers to read the z22 processor serial number

2009-03-26 Thread Ryan Rix
I've used it. On Thu, Mar 26, 2009 at 1:06 PM, Guilherme Campos Hazan < gu...@superwaba.com.br> wrote: > I am - but that doesn't work on Z22. > -- > For information on using the ACCESS Developer Forums, or to unsubscribe, > please see http://www.access-company.com/developers/forums/ > -- Than

Re: creating kernel-level drivers to read the z22 processor serial number

2009-03-26 Thread Guilherme Campos Hazan
I am - but that doesn't work on Z22. -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: creating kernel-level drivers to read the z22 processor serial number

2009-03-26 Thread Regis St-Gelais
"Guilherme Campos Hazan" a écrit dans le message de news: 187...@palm-dev-forum... > Hi, > > I want to find the serial number for Zire 22 (aka Z22). A guy from this > forum told it is possible using a kernel level driver and reading the > information directly from th

creating kernel-level drivers to read the z22 processor serial number

2009-03-26 Thread Guilherme Campos Hazan
Hi, I want to find the serial number for Zire 22 (aka Z22). A guy from this forum told it is possible using a kernel level driver and reading the information directly from the nand chip. I already searched old messages, and in this message http://news.palmos.com/read/messages?id=4146#4146

Re: Serial Number

2008-05-28 Thread Dave Lippincott
Visual Basic apps won't run on the Palm so you will not be able to use VB to get anything from any model Palm. If you have something else in mind like using it for a conduit or some other details you can share, someone might be able to find an answer for you. -- For information on using the A

Re: retrieving the serial number of Treo 6xx devices without HsGetVersionString

2006-05-25 Thread Aaron Ardiri
On 5/25/06, Guilherme C. Hazan <[EMAIL PROTECTED]> wrote: Because i'm using a third-party tool that doesnt support calls to HS. And there's no way to bypass it. a long stretch, but - can you use function pointers? if so, compile the HS code using gcc, store the result in an UInt8 array and use

Re: retrieving the serial number of Treo 6xx devices without HsGetVersionString

2006-05-25 Thread Jeff Loucks
Referring to the info below, is there any way to hand jam the trap code into whatever environment you are using? #define m68kTrapInstr 0x4E40 #define sysDispatchTrapNum 15 #define sysTrapOEMDispatch 0xA349 #define sysTrapHsSelector sysTrapOEMDispatch #define hsVerStrS

Re: retrieving the serial number of Treo 6xx devices without HsGetVersionString

2006-05-25 Thread Guilherme C. Hazan
Because i'm using a third-party tool that doesnt support calls to HS. And there's no way to bypass it. guich -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: retrieving the serial number of Treo 6xx devices without HsGetVersionString

2006-05-24 Thread Jeff Loucks
And why can you not use HS routines? If you are building a cross platform app, simply check before invoking HS routines. On 5/24/06, Guilherme C. Hazan <[EMAIL PROTECTED]> wrote: Hi, I found the given code to retrieve the Treo 600/650 serial number: char bufP2[32]; bufP2[

retrieving the serial number of Treo 6xx devices without HsGetVersionString

2006-05-24 Thread Guilherme C. Hazan
Hi, I found the given code to retrieve the Treo 600/650 serial number: char bufP2[32]; bufP2[0] = 0; HsGetVersionString(1/*hsVerStrSerialNo*/, bufP2, &bufLen); Unfortunately, i cannot use HsXXX functions. Are there any other ways to get the serial number on these dev

Re: palm serial number

2006-05-09 Thread Jeff Loucks
If you don't really care what the number is, so long as it is unique to the device, you can look first for a serial number from ROM, next for Bluetooth or WiFi device id, then phone IMEI or ESN, maybe an embedded flash device serial number, and as a last resort, an assigned id. If you p

Re: palm serial number

2006-05-09 Thread Del Ventruella
raced by a representative of the OS development group itself.) I've read the PC information on-line, which largely insists that device specific serial number checks shouldn't be used because PC hardware can change (even hard drives), while the user may merely have upgraded. (Probably not an

Re: palm serial number

2006-05-09 Thread Douglas Handy
sHe, >hmm, haven't searched yet but does all treo have this IMEI? and is it unique? Check the archives for discussions of this. But among other things, realize you can only read the IMEI or ESN number of the phone while the phone module is powered up and initialized. So while the user intentio

Re: palm serial number

2006-05-08 Thread Jeff Loucks
Check the forums for several previous replies concerning Treos and IMEI/ESN. Generally, GSM phones have an IMEI, while CDMA will have an ESN. I've posted code to extract each, depending on the phone type. On 5/8/06, she <[EMAIL PROTECTED]> wrote: hmm, haven't searched yet but does all treo have

Re: palm serial number

2006-05-08 Thread she
hmm, haven't searched yet but does all treo have this IMEI? and is it unique? thank you so much for all your inputs. very much appreciated... sHe -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: palm serial number

2006-05-08 Thread Jim Cooper
Your best bet is to assign one yourself Cheers, Jim Cooper _ Jim Cooper[EMAIL PROTECTED] Skype : jim.cooper Tabdee Ltdhttp://www.tabdee.ltd.uk TurboSync - Connecting Delphi to your Palm _

Re: palm serial number

2006-05-08 Thread Thomas Damme
she schrieb: how do i get programmatically the serial number of a certain unit? is it the same as the ROM serail number? do all palm units have serial numbers? i'd like to get a unique identifier for each palm unit. thanks a lot! sHe We use the ROM-number although its not availiable o

Re: palm serial number

2006-05-08 Thread Neil Whitworth
she wrote: how do i get programmatically the serial number of a certain unit? is it the same as the ROM serail number? do all palm units have serial numbers? i'd like to get a unique identifier for each palm unit. thanks a lot! sHe There is no single unique identifying number on all

palm serial number

2006-05-07 Thread she
how do i get programmatically the serial number of a certain unit? is it the same as the ROM serail number? do all palm units have serial numbers? i'd like to get a unique identifier for each palm unit. thanks a lot! sHe -- For information on using the PalmSource Developer Forums,

Blank Serial Number on Treo 600

2005-08-09 Thread David Birdsall
ened on a very small percentage of Treo 600 devices - these devices still report a serial number in the Phone Info application. Now, I only make this call if the following condition is true: if ( errNone == ::SysLibFind( phnLibGSMName, &libRef ) || errNone == ::SysLibFind( phnLibCDMAName, &a

Re: Is there a ROM Serial Number in all recent Palm devices?

2005-06-17 Thread Douglas Handy
Jenni, >Is there any Palm device that runs Palm OS 5.x and does not have a ROM >Serial Number? Thanks a lot in advance. Yes, for example the Tungsten E does not, and I think had higher sales than any other palmOne device in history. Also, the Zire 21 and 31 are both OS5 and don't ha

Is there a ROM Serial Number in all recent Palm devices?

2005-06-17 Thread Jennifer Fell
Is there any Palm device that runs Palm OS 5.x and does not have a ROM Serial Number? Thanks a lot in advance. Regards, Jenni -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: serial number TungstenE

2005-02-14 Thread John Spence
Hi Ben, I, too, am looking for a unique identifier for my Treo600 unit. I do not believe it supports the ROM Serial number either, but can you confirm that? Also, as I am a newbie at Palm issues, what is an SD card? How would I go about accessing that identifier or the HotSync User ID

Re: serial number TungstenE

2005-02-11 Thread Cory Pratt
Stefano D'Urso wrote: > hi everybody > > i got a problem: i need something unique on my TungstenE to retrieve. the > problem is in fact that it is not possible to retrieve the serial number > on TungstenE... is there something i can use?? > > thanks > > stefa

Re: serial number TungstenE

2005-02-11 Thread Ben Combee
At 02:52 AM 2/11/2005, you wrote: hi everybody i got a problem: i need something unique on my TungstenE to retrieve. the problem is in fact that it is not possible to retrieve the serial number on TungstenE... is there something i can use?? There is no unique ID on the Tungsten E device. The best

Re: serial number TungstenE

2005-02-11 Thread vibodh johari
bodh - Original Message - From: "Douglas Handy" <[EMAIL PROTECTED]> To: "Palm Developer Forum" Sent: Friday, February 11, 2005 2:28 PM Subject: Re: serial number TungstenE > Stefano, > > >i got a problem: i need something unique on my TungstenE to retr

Re: serial number TungstenE

2005-02-11 Thread Douglas Handy
Stefano, >i got a problem: i need something unique on my TungstenE to retrieve. the >problem is in fact that it is not possible to retrieve the serial number on >TungstenE... is there something i can use?? No. The TE, like many devices (especially low end) has no serial number nor

serial number TungstenE

2005-02-11 Thread Stefano D'Urso
hi everybody i got a problem: i need something unique on my TungstenE to retrieve. the problem is in fact that it is not possible to retrieve the serial number on TungstenE... is there something i can use?? thanks stefano -- For information on using the Palm Developer Forums, or to

Re: Serial Number on Treo devices (Programmatically)

2004-12-16 Thread Manpreet Singh
I was tackling with the same issue some time back and here is the complete solution -- // Treo 600 related code names #define Treo600ComID 'hspr' #define Treo600DevID 'H101' #define Treo600ComIDSim 'hspr' #define Treo600DevIDSim 'H201' if(Treo600Test()) {

serial number for tungsten E

2004-12-14 Thread Stefano D'Urso
hi, i know that it is not possible to retrieve serial number from Tungsten E... how can i retrieve something unique from Tungsten E?? please help me! stefano -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: serial number for tungsten E

2004-12-14 Thread Douglas Handy
Stefano, >hi, i know that it is not possible to retrieve serial number from Tungsten >E... how can i retrieve something unique from Tungsten E?? please help me! Require a SD card to be present, and use its serial number. Obviously, that is not a desirable situation since you then can&#x

RE: Serial Number on Treo devices (Programmatically)

2004-12-09 Thread Anand Sinha
This function looks like Handspring-specific function (Hs). So, when I am writing code that runs on all Palm devices, what checks should I perform before calling this function. For example: if (this_device_is_hs_device) { HsGetVersionString(hsVerStrSerialNo, versionStr, NULL); } else {

RE: Serial Number on Treo devices (Programmatically)

2004-12-09 Thread Hays, Jonathan \(GE Infrastructure\)
-Jon --- Jonathan Hays Palm OS Certified Developer http://hazelware.luggle.com --- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Anand Sinha Sent: Wednesday, December 08, 2004 1:14 PM To: Palm Developer Forum Subject: Serial N

Serial Number on Treo devices (Programmatically)

2004-12-08 Thread Anand Sinha
Palm advertises an API call "SysGetROMToken" to get the Serial Number. However, this does not return a proper value on Treo devices. Treo devices do have a serial number (though may not be Flash-ROM based). The following site mentions how to get the serial number non-programatica

How can i read the SD Card Serial Number?

2004-07-22 Thread Xu Xiaoning
How can i read the SD Card Serial Number? thanks first. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: RES: Serial number or unique ID

2004-07-02 Thread Tony Yat-Tung Cheung
devices don´t have the serial number? -Mensagem original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] nome de Dave Lippincott Enviada em: quinta-feira, 1 de julho de 2004 13:23 Para: Palm Developer Forum Assunto: Re: Serial number or unique ID Your answer is in the knowledgebase: http

Re: Serial number or unique ID

2004-07-01 Thread Dave Lippincott
Again, its in the Knowledgebase: http://makeashorterlink.com/?O266453B8 - Original Message - From: "Alexandre Teodoro Guimarães" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Thursday, July 01, 2004 12:36 PM Subject: RES: Seria

RES: Serial number or unique ID

2004-07-01 Thread Alexandre Teodoro Guimarães
so don´t have a secure way to have a unique number for every palm? some devices don´t have the serial number? -Mensagem original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] nome de Dave Lippincott Enviada em: quinta-feira, 1 de julho de 2004 13:23 Para: Palm Developer Forum

Re: Serial number or unique ID

2004-07-01 Thread Dave Lippincott
Your answer is in the knowledgebase: http://makeashorterlink.com/?D29C412B8 http://makeashorterlink.com/?T1BC522B8 not all devices have a app readable serial number. - Original Message - From: "Alexandre Teodoro Guimaraes" <[EMAIL PROTECTED]> To: "Palm Dev

RES: Serial number or unique ID

2004-07-01 Thread Alexandre Teodoro Guimaraes
julho de 2004 11:11 Para: Palm Developer Forum Assunto: Serial number or unique ID Anyone know how I can get a serial number or unique ID for every palm? I to make some kind of key, that do not work in every palm. One key for one palm cannot work in another. tanks guys. Alexandre -- For information

Serial number or unique ID

2004-07-01 Thread Alexandre Teodoro Guimaraes
Anyone know how I can get a serial number or unique ID for every palm? I to make some kind of key, that do not work in every palm. One key for one palm cannot work in another. tanks guys. Alexandre -- For information on using the Palm Developer Forums, or to unsubscribe, please see http

Re: Retrieving Rom Serial Number

2004-06-10 Thread Petr Stetina
Hi David, I can confirm its quality and I agree that people have to read them carefully before they send question to the forum but there is another question related to manuals: what do you think about update them in terms of (for example): - low level USB communication - low level card routines

Re: Retrieving Rom Serial Number

2004-06-09 Thread David Fedor
mCustomAlert(AboutAlert, serialnumber,"", ""); In order to find out if it'll work or not, it'd be very useful to at least check the error code returned! The docs for SysGetROMToken are quite clear on the THREE things you check, so you can tell whether or not the devi

Re: Retrieving Rom Serial Number

2004-06-09 Thread Kristian Austad
e(serienummer, bufP, 12); FrmCustomAlert(AboutAlert, serialnumber,"", ""); Kristian "pragna patel" <[EMAIL PROTECTED]> skrev i melding news:[EMAIL PROTECTED] > Hi, > I am working in palmOS,m500. > I want to retrieve ROM serial number,for that i tried > with SysGet

Re: Retrieving Rom Serial Number

2004-06-08 Thread Dave Lippincott
65535 is not a valid error. Its 0x. You don't mention what is returning the value. I assume its SysGetROMToken. Please read about SysGetROMToken in the SDK docs. It clearly states that if the first byte of the returned value is 0xFF, there is no serial number available. While the

Re: Retrieving Rom Serial Number

2004-06-07 Thread pragna patel
ttp://www.nuprograms.com > > > "pragna patel" <[EMAIL PROTECTED]> wrote in > message > news:[EMAIL PROTECTED] > > Hi, > > I am working in palmOS,m500. > > I want to retrieve ROM serial number,for that i > tried > > with SysGetROMTo

Re: Retrieving Rom Serial Number

2004-06-07 Thread Tim Kostka
Have you tried cutting/pasting the DrawSerialNumOrMessage function they point to into your code? -- Tim Kostka http://www.nuprograms.com "pragna patel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > I am working in palmOS,m500. > I want to retri

Re: Retrieving Rom Serial Number

2004-06-07 Thread pragna patel
Hi, I have tried to retrieve the Rom serial number for palmos 4.1(m500) using SysGetRomToken function,but i am not able to get the rom serial number,i am getting the rom serial number using same function in palmIIIc. so if anybody know about it,please write me back. Thanks & Regards. Pr

Re: Retrieving Rom Serial Number

2004-06-07 Thread Dave Lippincott
KB articles: http://makeashorterlink.com/?B28363F78 http://makeashorterlink.com/?G19362F78 - Original Message - From: "pragna patel" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Monday, June 07, 2004 2:15 AM Subject: Retrievin

Retrieving Rom Serial Number

2004-06-06 Thread pragna patel
Hi, I am working in palmOS,m500. I want to retrieve ROM serial number,for that i tried with SysGetROMToken function,but i am not able to get it,can anybody help me out. Thanks Pragna __ Do you Yahoo!? Friends. Fun. Try the all-new

Re: Palm OS Serial Number

2004-01-13 Thread Regis St-Gelais
"Régis Daniel de Oliveira" <[EMAIL PROTECTED]> a écrit dans le message de news:[EMAIL PROTECTED] > Do have any example that i can use to get the device/HAL id's or CPU id's? > Try http://homepage.mac.com/alvinmok/palm/codenames.html There is an app and source there to get those id's -- Regis St-

Re: Palm OS Serial Number

2003-11-20 Thread Régis Daniel de Oliveira
agem news:[EMAIL PROTECTED] > > I need to develop a way to identify uniquely all palms that are in use im my > > company. I tried to get the Rom Serial Number, but it is not present on Palm > > M100 Series (M100, M130, M150 (Zire), ... etc...) Does anybody have any idea > > t

Re: Palm OS Serial Number

2003-11-20 Thread Aaron Ardiri
> I need to develop a way to identify uniquely all palms that are in use im my > company. I tried to get the Rom Serial Number, but it is not present on Palm > M100 Series (M100, M130, M150 (Zire), ... etc...) Does anybody have any idea > that i can use to make the palm uniquel

Re: Palm OS Serial Number

2003-11-19 Thread Ben Combee
At 04:36 PM 11/19/2003, Régis Daniel de Oliveira wrote: Hy all. I need to develop a way to identify uniquely all palms that are in use im my company. I tried to get the Rom Serial Number, but it is not present on Palm M100 Series (M100, M130, M150 (Zire), ... etc...) Does anybody have any idea

Palm OS Serial Number

2003-11-19 Thread Régis Daniel de Oliveira
Hy all. I need to develop a way to identify uniquely all palms that are in use im my company. I tried to get the Rom Serial Number, but it is not present on Palm M100 Series (M100, M130, M150 (Zire), ... etc...) Does anybody have any idea that i can use to make the palm uniquely identified

Re: Using the SysGetRomToken function to retrieve the serial number

2003-07-28 Thread Chris Olson
27;):(checkSum - 10 +'A')); StrNCat(Output, checksumStr, 2); } else { //there's no serial number // Output a status message if the caller provided one StrCopy(Output, noNumberMessage); } return(O

Re: Using the SysGetRomToken function to retrieve the serial number

2003-07-27 Thread Gary Globus
ufP) && ((UInt8) *bufP != 0xff)) { //there's a valid serial number // Calculate the checksum: Start with zero add each digit. // then rotate the result onebit to the left and repeat. checkSum = 0; count1

Re: Using the SysGetRomToken function to retrieve the serial number

2003-07-27 Thread Gary Globus
Could I get you to send me a snipit of code that works for you. Maybe I'm not using it correctly at all. Thanks, glg --- At 01:55 PM 7/25/03 -0400, you wrote: Use it all the time without problems. How are you using it? Although, not all units have an electronic serial number.

Re: Using the SysGetRomToken function to retrieve the serial number

2003-07-25 Thread Dave Lippincott
Use it all the time without problems. How are you using it? Although, not all units have an electronic serial number. Only units with Flash ROM. Could that be the problem? - Original Message - From: "Gary Globus" <[EMAIL PROTECTED]> To: "Palm Developer Forum"

Using the SysGetRomToken function to retrieve the serial number

2003-07-25 Thread Gary Globus
function successfully to retrieve the serial number or is there a better way to get this say in assembler code? If anyone has used it successfully I'd appreciate a snippet of the code so I can see what it is that I am doing wrong. -- For information on using the Palm Developer Forums,

RE: CW Demo serial number

2002-05-28 Thread Ben Combee
In article <87402@palm-dev-forum>, [EMAIL PROTECTED] says... > > Hello, I'm trying to install Code Warrior Demo version, but I don't know the > serial product number. Please, help me... Contact [EMAIL PROTECTED] to get a demo serial number, if you did not

RE: ROM Serial number

2002-02-25 Thread Scott Johnson
> From: Keith Bray [mailto:[EMAIL PROTECTED]] > Anyone know if Handspring Visors have a unique ROM serial number Handspring Visors do not, nor the Palm m100-series. -slj- -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/de

ROM Serial number

2002-02-25 Thread Keith Bray
Anyone know if Handspring Visors have a unique ROM serial number retrievable via the Palm OS system call SysGetROMToken(0, sysROMTokenSnum, (UInt8 **)&serbuf, &size); The palm IIIc and m505 definitely have this, but I don't have a Handspring Visor and can't find

Re: Palm Serial Number

2002-02-20 Thread Aaron Ardiri
On Wed, 20 Feb 2002, quennie wrote: > Hi..all i'm going to retrieve the palm serial number programmatically. i > found the code from the falch.net help file and it compiles smoothly. But > when i run the program, it gives me the error: "The application just wrote &

Re: Palm Serial Number

2002-02-20 Thread Dave Lippincott
http://oasis.palm.com/dev/kb/papers/2169.cfm - Original Message - From: "quennie" <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Wednesday, February 20, 2002 4:58 AM Subject: Re: Palm Serial Number &

Re: Palm Serial Number

2002-02-20 Thread quennie
Sorry for repeating the message. I do surf some web and understand that not all palm devices have the serial number. I got this error may be due to the palm device does not have the serial number (i've tried oredi by simply retrieving the number from the palm device). In this case, the co

Re: Palm Serial Number

2002-02-20 Thread quennie
In addition to this, i would like to mention that the program is stop at retrieving a palm serial number: retval = SysGetROMToken (0, sysROMTokenSnum,(UInt8**) &bufP, bufLen); any idea?? "quennie" <[EMAIL PROTECTED]> wrote in message news:77265@palm-dev-forum... > >

Palm Serial Number

2002-02-20 Thread quennie
Hi..all i'm going to retrieve the palm serial number programmatically. i found the code from the falch.net help file and it compiles smoothly. But when i run the program, it gives me the error: "The application just wrote to memory location 0x00084A52, which is in the storage heap

Re: 12-digit serial number (ROM)

2001-09-25 Thread Young S. Cho
Only the Palm OS devices that use flash ROMs have serial numbers. The m100/III/IIIe & Visors do not have flashable ROM - as such no serial number. "Leonardo Gomes Holanda" <[EMAIL PROTECTED]> wrote in message news:62965@palm-dev-forum... According to Palm OS ® Programmer&

Re: 12-digit serial number (ROM)

2001-09-20 Thread Dave Lippincott
http://oasis.palm.com/dev/kb/faq/2389.cfm http://oasis.palm.com/dev/kb/papers/2169.cfm - Original Message - From: "Leonardo Gomes Holanda" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Thursday, September 20, 2001 12:44 PM Subj

Re: 12-digit serial number (ROM)

2001-09-20 Thread Bradly J. Barton
The ones that work have a 12 digit serial number. The ones that do not work do not have it. Also included in the list of the ones that will not are all of the Handspring devices (I may be incorrect, one of the new ones may have it). Unless you have a compelling reason to require that unique

12-digit serial number (ROM)

2001-09-20 Thread Leonardo Gomes Holanda
According to Palm OS ® Programmer's Companion Volume I: "Some Palm T devices, beginning with the Palm III product, hold a 12-digit serial number that identifies the device uniquely. (Earlier devices do not have this identifier.)" I have tested to retrieve this serial number

Re: How to get serial number of Palm

2001-07-11 Thread Jim Cooper
> you will have the serial Number. Except that it won't necessarily work - not all PalmOS devices have a serial number. This topic has been discussed many times. Search the newsgroups and the knowledgebase at www.palmos.com and you will find definitive answers to this question. Che

RE: How to get serial number of Palm

2001-07-10 Thread kunal Taneja
you will have the serial Number. cheers kunal -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

How to get serial number of Palm

2001-07-10 Thread Tan Kuan Eeik
Does anyone know how to retrieve the serial number of a Palm? Thanks. Regards, Tan Kuan Eeik [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: ROM Serial Number and OS upgrades

2001-03-30 Thread Jim Schram
At 10:30 AM -0500 3/30/01, DeAnna Davidson wrote: >I don't see it listed anywhere and I'm curious - does the ROM serial >number get changed when a device is upgraded to a new OS? Nope. The serial number, if any, lives in a separate area of the ROM. Regards, Jim Schram Palm Inco

ROM Serial Number and OS upgrades

2001-03-30 Thread DeAnna Davidson
I don't see it listed anywhere and I'm curious - does the ROM serial number get changed when a device is upgraded to a new OS? DeAnna Davidson Lead Software Engineer ibrite, Inc. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm

Re: Possible to get the serial number of one Handeld ??

2001-03-14 Thread Jim Cooper
> I was just wondering if there is a possibility to identify each handeld by > getting it's serial number or something else and to can get this information This subject has been discussed many times, so you may want to search the archives and have a look at the options. FWIW, you

Possible to get the serial number of one Handeld ??

2001-03-13 Thread Fabrice Meichtry
Hello, I was just wondering if there is a possibility to identify each handeld by getting it's serial number or something else and to can get this information ? Any Idea.. ?? Thx.. Fabrice -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: SysGetROMToken serial number-text buffer not \0 terminated.

2001-01-25 Thread DANIEL FRANCO
Richard Burmeister wrote: > > > From: DANIEL FRANCO > > > > for(x=0;x(size;x++)data[x]= *(datap+x); > > data[x]= 0; > > > > You might want to try > for(x=0;x > -- > For information on using the Palm Developer Forums, or to unsubscribe, please see >http://www.palmos.com/dev/tech/support/forums

RE: SysGetROMToken serial number-text buffer not \0 terminated.

2001-01-25 Thread Richard Burmeister
> From: DANIEL FRANCO > > for(x=0;x(size;x++)data[x]= *(datap+x); > data[x]= 0; > You might want to try for(x=0;xhttp://www.palmos.com/dev/tech/support/forums/

Re: SysGetROMToken serial number-text buffer not \0 terminated.

2001-01-25 Thread DANIEL FRANCO
"Colla, Dr. Thomas J." wrote: > > Hello, > > is there anybody who knows why SysGetROMToken returns a buffer that is NOT > terminated by '\0'? > I would like to use this "string" to allow access to an application (and > therefore need something like > StrCompare) and - otherwise - display an alle

Re: SysGetROMToken serial number-text buffer not \0 terminated.

2001-01-23 Thread DIAMOND JEFF
I've actually found that as a general rule, the "Pascal array" form actually works out muc, much easier for many programming situations, even if you do have to pass around a length. For one thing, any function which normally operates on a string would also work on an arbitrary string segment.

Re: SysGetROMToken serial number-text buffer not \0 terminated.

2001-01-22 Thread Aaron Ardiri
> Hello, > > is there anybody who knows why SysGetROMToken returns a buffer that is NOT > terminated by '\0'? > I would like to use this "string" to allow access to an application (and > therefore need something like > StrCompare) and - otherwise - display an allert containing this number. Both >

RE: SysGetROMToken serial number-text buffer not \0 terminated.

2001-01-22 Thread Richard Burmeister
> From Colla, Dr. Thomas J. > string. Unfortunatelly, Char *serNum; StrNCopy(serNum, buffer, > serialNumberLength) doesn't work (why?) > Is there a work-around or should I read the Reference once again? You might want to take another look at the Palm OS Reference. You pass a pointer to a text b

SysGetROMToken serial number-text buffer not \0 terminated.

2001-01-22 Thread Colla, Dr. Thomas J.
Hello, is there anybody who knows why SysGetROMToken returns a buffer that is NOT terminated by '\0'? I would like to use this "string" to allow access to an application (and therefore need something like StrCompare) and - otherwise - display an allert containing this number. Both functions need

RE: Rom Serial Number

2000-10-23 Thread Scott Johnson (Bellevue)
> From: David Fedor [mailto:[EMAIL PROTECTED]] > (Yes, I'm back in email contact again after 2+ weeks, be easy on me.) This is good news and bad news. Bad only because I hoped you were able to cash in your stock options and call in rich. :-) -slj- -- For information on using the Palm Develo

RE: Rom Serial Number

2000-10-23 Thread David Fedor
>> I want to know if it's possible to obtain the rom Serial Number of >> [devices that have no flash rom]. > >No. If there's no flash, there's no serial number. Well, only sort of. Currently that's a true statement. In the future there's nothin

RE: Rom Serial Number

2000-10-23 Thread Scott Johnson (Bellevue)
> From: Federico Vaggi [mailto:[EMAIL PROTECTED]] > I want to know if it's possible to obtain the rom Serial Number of > [devices that have no flash rom]. No. If there's no flash, there's no serial number. -slj- -- For information on using the Palm Developer F

Rom Serial Number

2000-10-23 Thread Federico Vaggi
Hi, I ´m Federico. I´m from Argentina. I beg your pardon is my english is not so good . I have a problem. I´m developing an aplication that reads the Rom Serial number. I use the Metrowerks Code Warrior as the developing platform. This platform has an especial fuction that retrieve the Rom

RE: Serial Number Clarified

2000-08-18 Thread Nesse, Rustin
>I need to determine the serial number of the Palm device being >used on a >given desktop from within Visual Basic. Once I know the serial number I >will then proceed with other programming that will be passed to the >device through a conduit. > >Thanks, >RichardG

Serial Number Clarified

2000-08-18 Thread Palm Project
I need to determine the serial number of the Palm device being used on a given desktop from within Visual Basic. Once I know the serial number I will then proceed with other programming that will be passed to the device through a conduit. Thanks, RichardG -- For information on using the Palm

RE: Serial Number

2000-08-18 Thread Nesse, Rustin
>Heloo there ! >Can anyone tell me how to reteive a Palm III or greater serial number >from within Visual Basic? > >Thanks, >RichardG You could write a Palm app that retrieved the serial, stored it in a database, then synced it to the desktop into a .txt file format. Then you

Re: Serial Number

2000-08-18 Thread Dave Lippincott
Visual Basic apps won't run on the Palm so you will not be able to use VB to get anything from any model Palm. If you have something else in mind like using it for a conduit or some other details you can share, someone might be able to find an answer for you. -- For information on using the P

Serial Number

2000-08-18 Thread Palm Project
Heloo there ! Can anyone tell me how to reteive a Palm III or greater serial number from within Visual Basic? Thanks, RichardG -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: Serial Number

2000-07-26 Thread Damian
ll me; > > > >How do I use %deviceid? > > > >-Ray > > > > > > > > > > > >Ben Hamby wrote in message <18862@palm-dev-forum>... > > > > > >Also, if your app is working solely as a PQA and you just need an > > &g

  1   2   >