<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
I am looking at Pythonwin as an alternative to Tk and would appreciate
advice on the following three questions.
<p>The Pythonwin documentation points to MFC documents as a source of information.
The MSDN site has:
<br> <a href="http://msdn.microsoft.com/library/devprods/vs6/vc++/vcmfc/_mfc_about_the_microsoft_foundation_classes.htm">http://msdn.microsoft.com/library/devprods/vs6/vc++/vcmfc/_mfc_about_the_microsoft_foundation_classes.htm</a>'''
<p>Q1: Are there better sources which can be recommended?
<p>The code fragment below:
<blockquote> code1= "win32ui.CreateFileDialog(1)"
<br> fd= eval(code)
<br> print(repr(fd))</blockquote>
produces the result:
<blockquote>object 'PyCFileDialog' - assoc is 007CC240, vf=False, notify=0,ch/u=0/0,
mh=0,kh=0</blockquote>
Q2. What do these various symbols and their values mean?
<p> type(fd) returns the type of the class.
<p>Q3. Is there some way that one can test that fd is an instance
of some class, any class?
<p>Thanks for any help.
<p>Colin W.</html>