Questions tagged [textctrl]

A widget in the wxWidgets framework for displaying and editing text.

TextCtrl is a widget in the wxWidgets framework for displaying and editing text.

Related Tags

62 questions
0
votes
1 answer

How can I get the position of the entered char?

I have a application which ask the user for a input (wx Python). I want to control what is inside the TextCtrl so I added the event: wx.EVT_CHAR. The function work properly except that I want the position of the curently entered charater. Let say I…
user1586263
  • 61
  • 1
  • 3
0
votes
1 answer

Autodetect file or folder path in wx.TextCtrl

Is there a mechanism that detects (highlight and generate mouse event) a file or a folder path in a wx.TextCtrl? A similar mechanism exists for URL detection (using style = wx.TE_AUTO_URL with wx.TE_RICH). Example: "This is an example how I want…
1 2 3 4
5