wxTextCtrl in EVT_TEXT_ENTER Topic is solved

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
Post Reply
YuMERA
Knows some wx things
Knows some wx things
Posts: 44
Joined: Fri Jul 05, 2019 8:47 pm

wxTextCtrl in EVT_TEXT_ENTER

Post by YuMERA »

EVT_TEXT_ENTER on wxDialog not work or????
I try but it doesn't work.
ONEEYEMAN
Part Of The Furniture
Part Of The Furniture
Posts: 7478
Joined: Sat Apr 16, 2005 7:22 am
Location: USA, Ukraine

Re: wxTextCtrl in EVT_TEXT_ENTER

Post by ONEEYEMAN »

Hi,
Do you have a reproducible code?

Thank you.
YuMERA
Knows some wx things
Knows some wx things
Posts: 44
Joined: Fri Jul 05, 2019 8:47 pm

Re: wxTextCtrl in EVT_TEXT_ENTER

Post by YuMERA »

Sorry, my mistake I missed in the documentation. I forgot to put the necessary styling wxT_PROCESS_ENTER style
EVT_TEXT_ENTER(id, func):
Respond to a wxEVT_TEXT_ENTER event, generated when enter is pressed in a text control which must have wxTE_PROCESS_ENTER style for this event to be generated.
Thank you.
Post Reply