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(
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
[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
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