Sam137 Posted September 23, 2011 Posted September 23, 2011 i want to have a radio button 1. First Run 2. Subsequent Run When the user select any of the radiobuttons the window should close and with the handle of the selected radio button i am doing some processing. How can it be done.
PsaltyDS Posted September 24, 2011 Posted September 24, 2011 Did you try the example script under GUICtrlCreateRadio() in the help file? Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Sam137 Posted September 26, 2011 Author Posted September 26, 2011 Yes, but I need to manualy close the window. But my requirement is : there are 2 radio buttons 1. First Run 2. Subsequent Run When the user select any of the radiobuttons the window should close and with the handle of the selected radio button i am doing some processing. How can it be done.
Moderators Melba23 Posted September 26, 2011 Moderators Posted September 26, 2011 Sam137, How can it be doneIf you looked at the example PsaltyDS pointed you to and adjusted it to meet your requirements, you might end up with something like this: #include <GUIConstantsEx.au3> $hGUI = GUICreate("Test", 500, 500) $hRadio_1 = GUICtrlCreateRadio("First Run", 10, 10, 200, 20) $hRadio_2 = GUICtrlCreateRadio("Subsequent Run", 10, 50, 200, 20) GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $hRadio_1 GUIDelete($hGUI) MsgBox(0, "Selection", "First Run") ExitLoop Case $hRadio_2 GUIDelete($hGUI) MsgBox(0, "Selection", "Subsequent Run") ExitLoop EndSwitch WEnd M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
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