Jump to content

Help with GUICreate and Radio Button


Recommended Posts

Hi,

I am new to this forum and I need your expertise. I have this code where I would like to create two radio buttons which will be displayed below the Header ("CA Alert OneCLick").

However for somereason, only one of the header is getting created. Could you please look at this code.

Global $Path = @ScriptDir

Global $OneClickGUI,$radio1, $radio2, $msg

Global $Project_Name = "CA Alert OneClick"

$width = @DesktopWidth/2

$height = @DesktopHeight/2

$OneClickGUI = GUICreate("CA Alert OneCLick", $width, $height, -1, -1)

GUISetFont (18, 400,0,"Times New Roman Bold")

GUICtrlCreateLabel("CA Alert OneCLick",-1,15,$width,30,$SS_CENTER )

GUICtrlSetColor(-1,0xb22222)

GUISetFont(10,400,0,"MS Sans Serif",$OneClickGUI)

GUISetBkColor(0xFFFFFF,$OneClickGUI)

GUICtrlCreateGraphic(15,$height/6,$width-30,3,$SS_CENTER)

GUICtrlSetBkColor(-1,0x23238E)

GUICtrlCreateLabel("This tool will allow you to enable/disable specific alerts.",20,$height/5,$width-40,20,$SS_CENTER)

GUICtrlSetColor(-1,0xb22222)

GUICtrlCreateGroup("TSR Host Alerts:",60,$height/3,$width/4,$height/4)

$radio1 = GUICtrlCreateRadio("Radio 1",75,$height/3+30,$width/4-20,20)

$radio2 = GUICtrlCreateRadio("Radio 2",75,$height/3+30,$width/4-20,20)

GUICtrlSetState($radio2, $GUI_CHECKED)

GUISetState() ; will display an dialog box with 1 checkbox

Thanks,

Arnab

Link to comment
Share on other sites

  • Moderators

amabmk,

I assume you mean "only one radio is being created". Actually they are both being created - but in the same place: :oops:

$radio1 = GUICtrlCreateRadio("Radio 1",75,$height/3+30,$width/4-20,20)
$radio2 = GUICtrlCreateRadio("Radio 2",75,$height/3+30,$width/4-20,20)

Just change the x or y coordinate of the second radio and you should see both. :bye:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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