Hi, well, i no longer have the source code, but the only modification I want, is to stop a timer so...
Did some research, write some code and WORKED on my test PC (XP), BUT, when i wanted in real life PCs (Windows 7 and 8) Didnt work :(
The "correct" Way:
Not so shure about this:
Both worked on XP, but not on Windows 7 and 8. App executed as admin, and also executed with UAC dissabled :/
Any suggestions?
Thanks
Did some research, write some code and WORKED on my test PC (XP), BUT, when i wanted in real life PCs (Windows 7 and 8) Didnt work :(
The "correct" Way:
Code:
Ret = FindWindowEx(0, 0, "ThunderRT6FormDC","The App caption")
Timer1Hwnd = FindWindowEx(Ret, 0, "ThunderRT6Timer", nil)
Call KillTimer(Timer1Hwnd, Timer1Hwnd)
Not so shure about this:
Code:
Ret = FindWindowEx(0, 0, "ThunderRT6FormDC","The App caption")
Timer1Hwnd = FindWindowEx(Ret, 0, "ThunderRT6Timer", nil)
call SendMessage(Timer1Hwnd,WM_DESTROY,0,0)
Both worked on XP, but not on Windows 7 and 8. App executed as admin, and also executed with UAC dissabled :/
Any suggestions?
Thanks