[PyWin32] Hello, world?

2009-10-28 Thread Gilles Ganault
Hello I'm reading O'Reily's Python Programming on Win32, but couldn't find a simple example on how to create a window with just a label and pushbutton. If someone has such a basic example handy, I'm interested. Thank you. -- http://mail.python.org/mailman/listinfo/python-list

Re: [PyWin32] Hello, world?

2009-10-28 Thread Tim Golden
Gilles Ganault wrote: Hello I'm reading O'Reily's Python Programming on Win32, but couldn't find a simple example on how to create a window with just a label and pushbutton. Well, you might mean this: code import win32api win32api.MessageBox (None, Hello, World!, Greetings) /code but that