Posted: 13th Jun 2007 1:58
Hello mates, is there a way to make it so that the program always stays on top and in focus?

Thanks for your help.:'
Posted: 13th Jun 2007 2:21
That's a fairly evil request, and I'd think hard before subjecting a user to such treatment, but...

+ Code Snippet
load dll "user32.dll",1
hwnd = call dll(1,"GetActiveWindow")
do
call dll 1,"SetActiveWindow",hwnd
loop


should work (functions from MSDN2

-Xol