Jump to content

Recommended Posts

Posted

hi, guys!

i've create an hotket event "{enter}" that shows an msg box, i can not press enter to "OK", i have to click with mouse, i thought that if i stop the hot key event i'll be able to close the msg box with enter key!

so, how do i do it?

any ideas?

Posted

You can use _IsPressed() instead HotKeySet(), see example below:
#include
#include

Local $test = DllOpen("user32.dll")
Local $a = 0;

While 1
If (_IsPressed("0D", $test)) Then
If ($a==0) Then
MsgBox($MB_SYSTEMMODAL, "Ok", "Ok")
$a=$a+1
Else
$a=0;
EndIf
EndIf
Sleep(50)
WEnd

Posted

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...