[PythonCE] wxWidgets Example

2006-05-15 Thread Alex Mandel
Does anyone have a wxWidgets for CE example that they could send me or point to online. I'm trying to develop some applications with BOA IDE and there is information about putting it on WinCE but I can't find any examples. I'm trying to avoid learning a whole new interface system (Tkinter) ju

[PythonCE] Timestamp

2006-07-18 Thread Alex Mandel
So I was looking at an old post where someone used Python 2.3.2 (#0, Dec 11 2003, 12:46:49) [MSC v.1200 32 bit (Unknown)] on Pocket PC >>> >>> import time >>> >>> clock=time.clock() >>> >>> local=time.localtime(clock) >>> >>> local (2004, 2, 27, 10, 14, 41, 4, -1, -1) When I tried to repeat t

Re: [PythonCE] Timestamp

2006-07-18 Thread Alex Mandel
Alex Mandel wrote: > So I was looking at an old post where someone used > > Python 2.3.2 (#0, Dec 11 2003, 12:46:49) [MSC v.1200 32 bit (Unknown)] on > Pocket PC > >>> >>> import time > >>> >>> clock=time.clock() > >>> >>&

[PythonCE] File association image for .py

2006-07-20 Thread Alex Mandel
I know it's a little trivial but it's the kind of thing that end users really like. Anyone know how to add a registry entry so the .py files get a nice python icon in the File Explorer. I'm assuming that it can be done in the PythonCE.inf for the CAB but I don't know the syntax. If someone know

Re: [PythonCE] File association image for .py

2006-07-24 Thread Alex Mandel
Luke Dunstan wrote: > - Original Message - > From: "Alex Mandel" <[EMAIL PROTECTED]> > To: > Sent: Friday, July 21, 2006 5:13 AM > Subject: [PythonCE] File association image for .py > > >> I know it's a little trivial but it's the

Re: [PythonCE] File association image for .py

2006-07-24 Thread Alex Mandel
Slight Error in my last Post: > > The correct syntax for the inf file is(All as one Line): > HKCR,Python.File,DefaultIcon,0x0002,"\Program > Files\Python24\python.exe,0"; DefaultIcon = "\Program > Files\Python24\python.exe,0" > Correct Line is: HKCR,Python.File\DefaultIcon,,0x0002,"\Pr

Re: [PythonCE] reading GPS?

2008-07-08 Thread Alex Mandel
Justin Mitchell wrote: Any suggestions on where to get started on reading GPS coordinates? Would these be read through the serial interface? I have a Motorola Q9C Smartphone. Justin Yes, do a search through the history of this list for ceserial to get the python wrapper around the com por

[PythonCE] Ceserial license

2008-07-09 Thread Alex Mandel
Benjamin, I've been using your ceserial module and wanted to clarify the license before I started publishing modifications to it. Notably I ported over the readline ability from pyserial into ceserial. I also was curious if you wanted to start an online project (maybe sourceforge) to host th

Re: [PythonCE] reading GPS?

2008-07-09 Thread Alex Mandel
Justin Mitchell wrote: Alex Mandel wrote: Justin Mitchell wrote: Any suggestions on where to get started on reading GPS coordinates? Would these be read through the serial interface? I have a Motorola Q9C Smartphone. Justin Yes, do a search through the history of this list for ceserial

Re: [PythonCE] Ceserial license

2008-07-09 Thread Alex Mandel
. Thanks, Ben McBride P.S. Feel free to post this email to the mailing list for posterity sake. On Wed, Jul 9, 2008 at 1:31 PM, Alex Mandel <[EMAIL PROTECTED]> wrote: > > Benjamin, > > > > I've been using your ceserial module and wanted to clarify the license > &g

Re: [PythonCE] Python CE on a Intel XScale industrial device.

2008-07-28 Thread Alex Mandel
The confusion about activesync is that if the program had been compiled for multiple architectures then the processor specific cabs would all be inside the exe installer and activesync would select the appropriate one for the particular device. It sounds like you're going to need to figure out

[PythonCE] [Fwd: Re: Bluetooth examples?]

2009-05-24 Thread Alex Mandel
Looks like I forgot to send to the list Original Message As far as I remember on PPC it's treated as a serial device, and if you trigger to open that device (Usually COM7) it will use the built-in discovery and connect tools. So this code should work, I'm pretty sure I used it w

Re: [PythonCE] packaging app into cab's

2009-06-11 Thread Alex Mandel
Give me a few minutes to find it but I wrote some scripts to make this easier. The basics I have a python app with gui that lets you pick whatever files you want, then builds the ini for the pocket pc sdk cab builder(from microsoft), builds a cab. Then you take that cab and modify an NSIS script th

Re: [PythonCE] packaging app into cab's

2009-06-11 Thread Alex Mandel
on), I'm probably missing that statement from most of the files. I'll be more than happy to seed projects if people want to improve the code, it hasn't been worked on for 1 year and probably won't be since it's from an old job. Alex Alex Mandel wrote: > Give me a fe