py2exe, command line parameter problem

2007-08-09 Thread Karsten W.
Hello, my small program is a Tkinter-App which supports some command line options. When the app is started within the python environment, everything works fine. When the py2exe-frozen app is started, everything works until I pass command line parameters. Then the gui window is not displayed. It's

Re: Reading a Microsoft access file.

2006-10-18 Thread Karsten W.
You could access the file via the odbc interface. There is a module odbc which comes with the windows package, iirc. Regards, Karsten. [EMAIL PROTECTED] wrote: > I googled for the answer but all the answer seem to imply that you > have to have Access installed on your system. I have a file that w

Re: recommendations for personal journaling application

2006-10-08 Thread Karsten W.
Hi! Donnie Rhodes wrote: > So what I'm interested in is how this would work. Is this 'event > driven' in nature? Would I define the bulk of these slash commands in a > function and then call it at the end of the script? What would be a > good module to look at for the text processing and searching

Re: wxGlade, wxPython.... pyOpenGL wxWidget?

2006-02-26 Thread Karsten W.
PyOpenGL comes with a Tkinter widget for OpenGL, and searching google "wxwidgets opengl" yields http://www.wxwidgets.org/opengl.htm Kind regards, Karsten. -- http://mail.python.org/mailman/listinfo/python-list

Re: check if class really implements api?

2006-01-04 Thread Karsten W.
Terry Hancock schrieb: > You want: > [...] > Zope 3.x: > zope.interface.verify > This is exactly what I was looking for! There is a function verifyClass and there is a TestCase for verify.py which teaches how to use it. Thanks a lot! Karsten. -- http://mail.python.org/mailman/listinfo/python-

check if class really implements api?

2006-01-03 Thread Karsten W.
Hello, with the zope.interface module I can query if my class claims to implement my API. This is what the method implementedBy is for. However, I find myself constantly changing the API and I am looking for a more reliable way to check my implementation classes. Is there a way to check if at leas