Questions tagged [wx.textctrl]

wx.textctrl refers to wxTextCtrl, which is a text control in wxWidgets that allows text to be displayed and edited

This tag refers to wxTextCtrl, a text control in that allows text to be displayed and edited.

32 questions
0
votes
1 answer

How do you print out a value from wx.TextCtrl?

I have something like this right now: import wx class QuickAddBox(wx.TextCtrl): def __init__(self, parent, viewer): self.quick_add_text = wx.TextCtrl.__init__(self, parent, -1, '', size=(300,20), style=wx.TE_PROCESS_ENTER) …
Dragonfly
  • 4,261
  • 7
  • 34
  • 60
-1
votes
2 answers

Encountering error while using Enter key, space bar, and backspace in wxpython wx.TextCtrl

alphabet keys(a-z) numeric keys(0-9) are mapped to unicode values, in a text editor which uses the wx.TextCtrl. The line in which error encounters is given below, self.statusbar.SetStatusText(engine.roman2mal(self.word.decode('utf-8')),0) The…
chris
  • 190
  • 1
  • 14
1 2
3