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
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
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
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
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