<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1528" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>In my ATL Class, I have a function with the 
body</FONT></DIV><FONT face=Arial size=2>
<DIV><BR>STDMETHODIMP CSimpleObj::Show()<BR>{<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
AFX_MANAGE_STATE(AfxGetStaticModuleState())</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&nbsp;&nbsp; &nbsp;// TODO: Add your implementation code 
here<BR>&nbsp;&nbsp;&nbsp;&nbsp; CSimpleDialog 
myDialog;<BR>&nbsp;&nbsp;&nbsp;&nbsp; int result = 
myDialog.DoModal();<BR>&nbsp;&nbsp;&nbsp;&nbsp; MessageBox(NULL,TEXT("Live From 
Python"),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TEXT("MFC ATL COM"), 
MB_OK);<BR>&nbsp;&nbsp;&nbsp; &nbsp;return S_OK;<BR>}</DIV>
<DIV>&nbsp;</DIV>
<DIV>and python script is very simple</DIV>
<DIV>&nbsp;</DIV>
<DIV>from comtypes.client import&nbsp; CreateObject</DIV>
<DIV>MFC = CreateObject("MFCATLCom.SimpleObj.1")</DIV>
<DIV>MFC.Show( )</DIV>
<DIV>&nbsp;</DIV>
<DIV>if does return a success message, but niether the Dialog nor the Message 
box appears. Does any one know what's going on?</DIV>
<DIV>&nbsp;</DIV>
<DIV>-Aladin</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV>*BTW Thanks to Luke Dunstan for helping me out&nbsp; with getting PythonCE 
and comtypes running.</DIV></BODY></HTML>