RE: Using win32ui in COM-server

2001-11-01 Thread Nikolai Kirsebom
Thanks for answers Mark Hammond and Michael Robin. I think I will try out the "socket" suggestion. Nikolai Kirsebom ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

RE: Using win32ui in COM-server

2001-11-01 Thread Michael Robin
the GUI on a different machine than your server if you want to.) m -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mark Hammond Sent: Wednesday, October 31, 2001 4:04 PM To: Nikolai Kirsebom; [EMAIL PROTECTED] Subject: RE: Using win32ui in COM-server The

RE: Using win32ui in COM-server

2001-10-31 Thread Mark Hammond
The short answer is that it is not possible for a Python COM object to have a GUI - this would require it to be an ActiveX control, and Python doesn't quite do that yet. A common technique is to write the GUI itself in VB, and expose a Python COM server that does all the hard work. The VB code c