WeMartiansAreFriendly Posted February 24, 2007 Posted February 24, 2007 how do you find out how many controls are in currently in the autoit gui? or what was the last controlid that autoit assign to a control?? Don't bother, It's inside your monitor!------GUISetOnEvent should behave more like HotKeySet()
Moderators SmOke_N Posted February 24, 2007 Moderators Posted February 24, 2007 how do you find out how many controls are in currently in the autoit gui? or what was the last controlid that autoit assign to a control??I've posted this before: $nControls = UBound(StringSplit(StringStripCR(WinGetClassList($hWnd)), @LF)) - 1 MsgBox(64, 'Info', 'There are: ' & $nControls & ' controls in your GUI.') Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
WeMartiansAreFriendly Posted February 24, 2007 Author Posted February 24, 2007 I've posted this before: $nControls = UBound(StringSplit(StringStripCR(WinGetClassList($hWnd)), @LF)) - 1 MsgBox(64, 'Info', 'There are: ' & $nControls & ' controls in your GUI.') thanks : Don't bother, It's inside your monitor!------GUISetOnEvent should behave more like HotKeySet()
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