rodiney Posted February 21, 2016 Posted February 21, 2016 How do I leave a message on my program at each button instance, have two buttons when I put the mouse on top of him a message, more is not a message like msgbox () is a small message near the required button Thanks you
Alex1986 Posted February 21, 2016 Posted February 21, 2016 Try this: $hGUI = GUICreate("GUI Example" , 100 ,100) $hBtn = GUICtrlCreateButton("Button" , 30 , 40 , 50 ,20) GUICtrlSetTip($hBtn , "This is Button" , "Button") GUISetState(@SW_SHOW , HWnd($hGUI)) Do Until GUIGetMsg() = -3 rodiney 1
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now