I have an app (reverseme) that looks like calc.exe. It has 9 number btns, clear and enter buttons. The enter is disabled.
There is another input textbox without any enter or submit button. It takes inlut from the keyboard but when i press enter it doesnt throw any badboy or goodboy messages just a sound of a bad press.
I need to enable the enter button and find the serial.
The app compiled with borland and writteb in c++. It uses kernel32, user32, comctc32.
I have disabled the entered button by enabling it in reseditor and noping the disabling routine in the code but im shure there is another way.
GetWindowText(),GetDlgItemText(),SendMessage(), etc. and saw none of the breakpoints hit while entering content into the textbox? – Jason Geffner Jun 15 '15 at 14:18WM_KEYDOWNwithin the message loop. You need to check that too. – 0xec Jun 15 '15 at 15:43