Re: [PythonCE] wxPython for Python 2.5?

2008-04-21 Thread Matt S.
; not specially for the 2.5 but I expect a better wxPython implementation. > Unfortunately I'm just a simple *user *and besides that too busy with some > other (very large) Python projects. > Wouldn't it be a good idea to post this also in wxPython discussion list ? > > che

Re: [PythonCE] wxPython for Python 2.5?

2008-04-20 Thread Matt S.
since the > memory map is unsuitable. > But hope you would have luck! > > On Sat, Apr 19, 2008 at 8:16 AM, Matt S. wrote: > > > Hi everyone, > > > > Hope you're well. This past week I tried building wxPyCE for Python > > 2.5. The directions for building

[PythonCE] wxPython for Python 2.5?

2008-04-18 Thread Matt S.
Hi everyone, Hope you're well. This past week I tried building wxPyCE for Python 2.5. The directions for building wx for 2.4 are at, http://wxpyce.wikispaces.com/Build I succeeded at building for 2.4 but not for 2.5. After catching up on PythonCE emails over the past year it seems that wxPyCE

Re: [PythonCE] PyCrypto binaries

2007-07-26 Thread Matt S.
Alexandre, Great to hear you're working on the numpy binaries. A lack thereof has been an obstacle to me exploring the use of FloatCanvas on the PDA. I'd very much like to get my hands on these (though I'm still using 2.4 since I've not yet noticed the wxPython and ctypes binaries available for

Re: [PythonCE] Very Newbee question on using Python CE

2007-07-16 Thread Matt S.
[mailto:[EMAIL PROTECTED] *On Behalf Of *Matt S. *Sent:* Monday, July 16, 2007 8:59 AM *To:* Luca *Cc:* pythonce@python.org *Subject:* Re: [PythonCE] Very Newbee question on using Python CE Luca, Generally, check out the Wiki, http://pythonce.sourceforge.net/Wikka/HomePage Version 2.5 is ava

Re: [PythonCE] Very Newbee question on using Python CE

2007-07-16 Thread Matt S.
Thanks for your help, Bye -- *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Matt S. *Sent:* Monday, July 16, 2007 8:59 AM *To:* Luca *Cc:* pythonce@python.org *Subject:* Re: [PythonCE] Very Newbee question on using Python CE Luca, Gener

Re: [PythonCE] Very Newbee question on using Python CE

2007-07-16 Thread Matt S.
Luca, Generally, check out the Wiki, http://pythonce.sourceforge.net/Wikka/HomePage Version 2.5 is available from SourceForge, http://sourceforge.net/projects/pythonce/ I'm using 2.4 along with wxPython (wxPyCE) and ctypes. 2.3 for the Storage Card and with some bells and whistles is available

Re: [PythonCE] a wxPython script that behaves like a CE application

2007-02-28 Thread Matt S.
32gui.FindWindow('PythonClassNameNR', 'SingleApp') #window = win32gui.ShowWindow(hwnd, 1)#window, 1)#'SW_MAXIMIZE') #win32gui.SetActiveWindow(hwnd)#window, 1)#'SW_MAXIMIZE') # Now, if the window was successfully shown, we'll be do

Re: [PythonCE] wxPython, handling close events

2007-02-26 Thread Matt S.
unning. You may be able to capture the event as WM_SHOWWINDOW. As with any Python program on the PC, your script is not a process but is just a text file that is interpreted by the python.exe process. Luke - Original Message - *From:* Matt S. <[EMAIL PROTECTED]> *To:* pythonce@p

Re: [PythonCE] wxPython, handling close events

2007-02-23 Thread Matt S.
look in the task manager you will notice that it is still running. You may be able to capture the event as WM_SHOWWINDOW. As with any Python program on the PC, your script is not a process but is just a text file that is interpreted by the python.exe process. Luke ----- Original Message

Re: [PythonCE] wxPython, handling close events

2007-02-22 Thread Matt S.
s behavior. Ideally, I want the user to have to confirm that they want to quit before the program ever begins to be destroyed. Thanks! Matt -- Forwarded message -- From: "Matt S." <[EMAIL PROTECTED]> To: pythonce@python.org Date: Wed, 21 Feb 2007 21:12:08 -0800 Su

[PythonCE] wxPython, handling close events

2007-02-22 Thread Matt S.
I have a a wxPython application on the PPC 2003, Python 2.4, etc... I can gracefully exit on win32 from the frame close button or any button within the frame. My trouble arises on the PPC because the frame widgets (esp. close button) seem to not be associated with wx as much as the system and do

Re: [PythonCE] annoying progress clock while running wxPython

2007-01-26 Thread Matt S.
pass else: _pcceshell_support.Busy(0) Luke - Original Message - *From:* Stefan Johansson <[EMAIL PROTECTED]> *To:* Matt S. <[EMAIL PROTECTED]> ; PythonCE@python.org *Sent:* Friday, January 26, 2007 7:39 AM *Subject:* Re: [PythonCE] annoying progress c

[PythonCE] annoying progress clock while running wxPython

2007-01-25 Thread Matt S.
When I run wxPython code on my windows mobile 4.0 device I get this pin-wheel like progress clock that won't go away. I can interact with the widgets, no problem, but the pin-wheel is a real eyesore. I'm running PythonCE 2.4 and wxPython 2.7.0. Has anyone ran into this problem or does anyone kn

Re: [PythonCE] serial port access

2006-09-22 Thread Matt S.
Ben,Thanks for the code.  Here's some not very formatted stdout that I get when I run my test for your code.  I'm not sure what to make of the strange characters that I get from the buffer output.  Do you think it's binary?  I tried to meld your code into the pygarmin.py code with some success.  T

Re: [PythonCE] serial port access

2006-09-21 Thread Matt S.
Benjamin (Gonzalo, Luke, Quentin),Did you post the serial port code you mentioned?  I'd really appreciate it.  My goal is to work with GPS hardware attached through a serial port.  My hope was that the pygarmin module could be "easily" adapted to work with a Trimble GPS on the PocketPC (but it uses

Re: [PythonCE] IDE for Python on Windows Pocket PC?

2006-08-24 Thread Matt S.
IdleCE seems to be a very good editor for the PPC.  I found it in a bundle here,http://blogs.unixage.com/blojsom/blog/adam.kruszewski/python/ The bundle includes PythonCE 2.3.4 (not the latest) but it has some very interesting libraries (namely wx) and applications (IdleCE).  Furthermore the bundle

Re: [PythonCE] Timestamp

2006-07-18 Thread Matt S.
I've found the datetime module to be very useful.  Using datetime, you can use its strftime method to format the print method of datetime objects to your hearts content.  Or, use it with matplotlib, and more.  There's also  the mxDatetime modules (though not part of the standard distribution). A da

Re: [PythonCE] pickle problem on 2.3.4 pythonCE (for wxPython)

2006-05-28 Thread Matt S.
Good news. I tried pickling with "cPickle" and it works for pickling dictionaries and classes where "pickle" didn't. I guess this arises from the fact that per the documentation, "cPickle can be up to 1000 times faster than pickle because the former is implemented in C." If anyone can expound on

[PythonCE] pickle problem on 2.3.4 pythonCE (for wxPython)

2006-05-26 Thread Matt S.
Hi, I'm trying to make a data collection UI for Windows CE using the wxPyCE distribution (which uses Python 2.3.4) found at, http://www.traybor.com/PythonCE/ It's gone well so far but I'm running into a serious data pickling problem. Ideally I would like to pickle a class instance. Saving and