Johri, Mayank (GTI) wrote: > Tim, > > I am using the win32rcparser and win32gui to display the dialog on the > screen. I have used the example win32rcparser.py for this. >
Well, win32rcparser.py reads the RC file, but it doesn't display it on the screen. What you're doing is working at the lowest possible level. If you want to create a Windows GUI using the raw API, then you might as well write it in C++. You're just going to battle the Python/C boundary over and over. It is possible to call GetDlgItem to fetch window handles for the controls in your dialog, and then send Windows messages to fetch their contents, but it's a lot of work for no particularly good reason. It would be much better in the long term for you to investigate wxPython or tkinter or one of the other GUI wrappers, to let you create and manage your GUI with something approaching Python's class philosophy. -- Tim Roberts, [EMAIL PROTECTED] Providenza & Boekelheide, Inc. _______________________________________________ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32