On the desktop, I put my Pmw megawidgets in a completely separate
location from the rest of my Python stuff, and I am able to import
them easily.  All I do is add that location to the path, like so:
import sys
sys.path[:0] = ["c:\\programs"]
import Pmw

Using this same approach on the PocketPC with an SD Card I might try:
sys.path[:0] = ['\\Program Files\\python\\lib']
import Tkinter
sys.path[:0] = ['\\Flash Rom Disk']
import some_package

cheers
S


On Wed, 12 Jan 2005 10:58:37 -0000 (GMT), Danny Staple
<[EMAIL PROTECTED]> wrote:
 
> My pocket PC has an addition 64Mb of "Internal storage" which basically
> works like a memory card. Is there any way I can move windows components
> over there and shortcut to it or something?

-- 
Stewart Midwinter
[EMAIL PROTECTED]
[EMAIL PROTECTED]
_______________________________________________
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce

Reply via email to