Log in

View Full Version : Enabling a button help!


Xpert
June 26th, 2001, 14:26
Hi,

I've a window message with 3 input text, when the 3 text are entered in the correct form a button is Enabled to continue the process.

I use softice to bpr the string and the P RET instruction the get the procedure, but it loop into the USER!BOZOLIVEHERE function.

Any ideas how to get into the main function of the event "on text change" of the field text?

Thanks

Kayaker
June 29th, 2001, 02:53
Hi,

This sounds like a Delphi app. Try disassembling it with DeDe and search for the OnTextChange Event you're looking for. You should find an address associated with this event. Then you can set a bp in Softice on this address and it should break when you type something into the edit box. F12 a few times and you should be back in Delphi code.

Kayaker