Tiger Posted July 6, 2008 Posted July 6, 2008 I would like to program a gui with a vertical scroll bar. The gui has a lot oft buttons. Half of the buttons are visible. By scrolling down I want that the buttons above are not visible and the following buttons will be seen. My UDFs:- _RegEnumKey
TerarinKerowyn Posted July 6, 2008 Posted July 6, 2008 Check out _GUICtrlEdit_Scroll in your help file think that will help you out Contact via MSN: [email=terarink_msn@hotmail.com]terarink_msn@hotmail.com[/email], yahoo: terarink_yah
Tiger Posted July 6, 2008 Author Posted July 6, 2008 I have no edit-control in the gui. In the gui are a lot of buttons My UDFs:- _RegEnumKey
TerarinKerowyn Posted July 6, 2008 Posted July 6, 2008 What is your code then, maybe then we can help you out Contact via MSN: [email=terarink_msn@hotmail.com]terarink_msn@hotmail.com[/email], yahoo: terarink_yah
Zedna Posted July 6, 2008 Posted July 6, 2008 Look here Resources UDF ResourcesEx UDF AutoIt Forum Search
Tiger Posted July 7, 2008 Author Posted July 7, 2008 This is my script: Opt("GUIOnEventMode", 1) #include <GUIConstants.au3> GUICreate("GUI-Scrollbar", 140, 200, -1, -1, $WS_CAPTION + $WS_MINIMIZEBOX + $WS_SYSMENU + $WS_VSCROLL) GUISetOnEvent($GUI_EVENT_CLOSE, "_close") GUICtrlCreateButton("Button 1", 20, 20, 80, 30) GUICtrlCreateButton("Button 2", 20, 70, 80, 30) GUICtrlCreateButton("Button 3", 20, 120, 80, 30) GUICtrlCreateButton("Button 4", 20, 170, 80, 30) GUICtrlCreateButton("Button 5", 20, 220, 80, 30) GUICtrlCreateButton("Button 6", 20, 270, 80, 30) GUICtrlCreateButton("Button 7", 20, 320, 80, 30) GUICtrlCreateButton("Button 8", 20, 370, 80, 30) GUICtrlCreateButton("Button 9", 20, 420, 80, 30) GUICtrlCreateButton("Button 10", 20, 470, 80, 30) GUISetState(@SW_SHOW) Func _close() Exit EndFunc ;==>_close While 1 sleep(500) WEnd My UDFs:- _RegEnumKey
James Posted July 7, 2008 Posted July 7, 2008 I think this is what you are after. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
Tiger Posted July 8, 2008 Author Posted July 8, 2008 I found that yesterday. Thanks My UDFs:- _RegEnumKey
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