Re: [python-win32] Porting VB 6.0 to Python

2007-10-02 Thread Tim Roberts
Vernon Cole wrote: > Assuming that your VB application was written using Microsoft > Foundation Classes, MFC only applies to C++, not to Visual Basic. -- Tim Roberts, [EMAIL PROTECTED] Providenza & Boekelheide, Inc. ___ python-win32 mailing list pytho

Re: [python-win32] Porting VB 6.0 to Python

2007-10-02 Thread Vernon Cole
Assuming that your VB application was written using Microsoft Foundation Classes, the simplest port would probably use the built-in MFC framework in pywin32, rather than any of the other GUI packages. There is a brief writeup in Mark Hammond's book (page 400). The modules are win32ui and pywin.mfc

Re: [python-win32] Porting VB 6.0 to Python

2007-10-02 Thread Tim Roberts
Dajani, Samer (PPC) wrote: > Hi everyone, > > I am working on a project to port a VB 6.0 rich GUI application to python, > and was wondering if there is a developer kit available to generate rich GUI > and also if there are data connectors available to an oracle client. > There are many cho

[python-win32] Porting VB 6.0 to Python

2007-10-02 Thread Dajani, Samer (PPC)
Hi everyone, I am working on a project to port a VB 6.0 rich GUI application to python, and was wondering if there is a developer kit available to generate rich GUI and also if there are data connectors available to an oracle client. Thanks, Samer

Re: [python-win32] newby to com and a problem with events

2007-10-02 Thread Seth Sims
Ok I have attempted that but with no success. I added: timeout = time.time() + 30 while time.time() <= timeout: print 'pumping messages' pythoncom.PumpWaitingMessages() time.sleep(0.5) Aside from the 60 'pump messages' prints the output is unchanged. As I