[python-win32] python and rtf

2006-08-17 Thread Christopher Frauenberger
Hi, since python 2.3.4 and wxPython 0.6 it was possible to render rtf in wxTextCtr like class RTFWindow(wx.TextCtrl): def __init__ (self,parent): wx.TextCtrl.__init__(self,parent,style = wx.TE_MULTILINE | wx.TE_RICH | wx.TE_READONLY) ... win = RTFWindow(None) win.rtfSubWin.LoadFile(

[python-win32] Excel corrupted display problem

2006-08-17 Thread kc106_2005-pywin32
Hi list, I have a Python script that pops up Excel, fill it, and then continue. If the user clicks on my Python side to close Excel (via a call to the Quit() function), then I can reopen it later via another dispatch call and so forth. However, if the user close Excel from the Excel side, next

Re: [python-win32] Excel corrupted display problem

2006-08-17 Thread Bob Gailer
[EMAIL PROTECTED] wrote: > Hi list, > > I have a Python script that pops up Excel, fill it, > and then continue. If the user clicks on my Python > side to close Excel (via a call to the Quit() > function), then I can reopen it later via another > dispatch call and so forth. > > However, if the us

Re: [python-win32] Excel corrupted display problem

2006-08-17 Thread Metz, Bobby W, WWCS
Interesting description. Sounds similar to a non-MS app I automate which does something similar. If closed from Python everything works fine; however, if user closes app before Python the next time it's launched it opens hidden and user can't see it at all. The only partial work around I've foun