I have trouble with editing, inputting to or even clicking a TextCtrl or actually any other widget that is not built in the init function.
Let's say I have this bit:
class firstpanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent=parent)
....
def receivetext(self, event):
panel = wx.Panel(self,size=wx.Size(850,650))
wx.TextCtrl(self, -1, self.textfromsomewhereelse, (365, 145))
I do see the TextCtrl with the appropriate value in my GUI Frame but I can't modify it. It's exactly like I have an invisible layer over it that is not letting me through.
I say I'm missing something very basic and it's very embarresing.