On Windows, the "testing" string is packed to the right of the text control, and the text in the text control is right-justified as well. Is that what you were expecting?
···
On Tue, 28 Sep 2004 13:58:50 -0400, Tom Bryan <tbryan@python.net>
Here's the shortest possible illustration of the problem I'm having.
import wx
app = wx.PySimpleApp()
frame=wx.Frame( None, -1, "Test" )
entry = wx.TextCtrl( frame, -1, "testing", style=wx.TE_RIGHT )
frame.Show( wx.true )
app.MainLoop()The "testing" string is justified to the left of the text control. Am I doing something wrong, or is this known not to work? If I use style=wx.TE_PASSWORD instead, I get starts instead of characters; so I'm assuming that the code above should work.
--
- Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.