Hi, we all know the bug with the TextField not accepting the return key even when Filtered. And, the fix previously posted was correct.. except for the fact that when you hit return the system would beep annoyingly at you.
Ok, so here's the modified line in Win32TextField.cpp, again on Line 17
Notice the omission of ES_WANTRETURN, this was the culprit of the alert notification. So, overall you only need to add the ES_MULTILINE flag to generate a silent 13 which can be captured with SetGadgetFilter in the usual way.
Ok, so here's the modified line in Win32TextField.cpp, again on Line 17
int wstyle=WS_CHILD|WS_TABSTOP|ES_AUTOHSCROLL|WS_CLIPSIBLINGS|ES_MULTILINE;
Notice the omission of ES_WANTRETURN, this was the culprit of the alert notification. So, overall you only need to add the ES_MULTILINE flag to generate a silent 13 which can be captured with SetGadgetFilter in the usual way.