misc.html 1.1 KB

123456789101112131415161718
  1. <HTML>
  2. <HEAD>
  3. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
  4. <META NAME="Generator" CONTENT="Microsoft Word 97">
  5. <TITLE>Misc win32com Stuff</TITLE>
  6. <META NAME="Version" CONTENT="8.0.3410">
  7. <META NAME="Date" CONTENT="10/11/96">
  8. <META NAME="Template" CONTENT="D:\Program Files\Microsoft Office\Office\HTML.DOT">
  9. </HEAD>
  10. <BODY TEXT="#000000" BGCOLOR="#ffffff">
  11. <H1>Misc stuff I don’t know where to put anywhere else</H1>
  12. <H4>Client Side Dispatch</H4>
  13. <P>Using win32com.client.Dispatch automatically invokes all the win32com client side "smarts", including automatic usage of generated .py files etc.</P>
  14. <P>If you wish to avoid that, and use truly "dynamic" objects (ie, there is generated .py support available, but you wish to avoid it), you can use win32com.client.dynamic.Dispatch</P>
  15. <B><P>_print_details_() method</B><BR>
  16. If win32com.client.dynamic.Dispatch is used, the objects have a _print_details_() method available, which prints all relevant knowledge about an object (for example, all methods and properties). For objects that do not expose runtime type information, _print_details_ may not list anything.</P></BODY>
  17. </HTML>