Searching on google and I found that is impossible to using wx.TE_PROCESS_ENTER on masked TextCtrl, I try it myself to set style=wx.TE_PROCESS_ENTER then bind it with wx.EVT_TEXT_ENTER, but nothing happen. What I was trying to do is making many masked TextCtrl so user can input some value, then when enter button pressed a function called to do calculation on it.
Thanks in advance
I’m not sure why that’s eating that event, but you can simulate the same thing by binding to EVT_KEY_DOWN instead. Here’s one example: