finding window
I try to use the finding window function with no seccess.the last version I work with I used the findwindowbytitle function with no problems but now i have problem
3 posts
if you want to do other things you can use SendMessage to send different types of messages. this comes in very useful if you wish to click buttons etc..
Function CloseItDammit
Push $0
loop:
FindWindow $0 "" "WhateverMyWindowNameIs"
IntCmp $0 0 done
SendMessage $0 16 0 0
Sleep 100
Goto loop
done:
Pop $0
FunctionEnd