[wxPython-users] ScrolledMessageDialog error
Robin Dunn
robin at alldunn.com
Fri Mar 2 12:42:15 PST 2007
luisgustavo at petrobras.com.br wrote:
> Antonio,
>
> Thanks and sorry for my newbieness in wxPython... I believe I will have to
> give a thorough review in code after that!
> I solved the dlg problem with Destroy and a limit in the string size.
> Do you know if there is a way to show the dialog scrolled to the end of the
> text on Windows?
Something like this will probably work:
dlg = ...
tc = dlg.GetChildren()[0]
tc.SetInsertionPointEnd()
dlg.ShowModal()
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
More information about the wxpython-users
mailing list