[PythonCE] Re: ?PythonCe is functional?

2005-01-10 Thread Lord_ZealoN
First, thanks for your answers. > Looks like no one else answered this so I'll take a shot at it... > > Lord_ZealoN ono.com> writes: > > > I would like to develop an email application. I'm thinking in use > python. > > PythonCe is totally functional? > > well, most of the widgets seem to work

[PythonCE] Non-english PPC device users on this list?

2005-01-10 Thread Brad Clements
Can someone confirm that non-english version of PPC devices use language specific names for \Program Files or \Storage Card\Program Files? I'm working on the python code that figures out sys.path and where to dynamically load python23.dll from, and I think this is an long standing bug that we

AW: [PythonCE] Non-english PPC device users on this list?

2005-01-10 Thread Anne Wangnick
Yep, confirmed. On my german version of Microsoft PPC the location is "\Programme", and "\Storage Card" is called "\CF-Card" on my device. Also, it comes with a built-in flash storage area in "\LOOXstore". This is what is available in the registry regarding the directory names on my PDA: [HKEY_L

Re: [PythonCE] Non-english PPC device users on this list?

2005-01-10 Thread Christian Baumgärtel
Obtaining the "Program Files"-Folder: I think the standard way to get it, is to use the windows API function SHGetSpecialFolderPath() with nFolder = CSIDL_PROGRAM_FILES, see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceshellui5 /html/wce50lrfSHGetSpecialFolderPath.asp ATTEN