Jump to content

Checkbox


Recommended Posts

Hey guys

I am writing a program and it has lots and lots of checkboxes. I recently thought of having an option to save custom ini list so that it will auto check the boxes listed in the file. I could do this manually but i think it would take along time. My problem is i have created load sof checkboxes already. Some are listed $Checkbox1, $Checkbox2 etc..... upto around 50 ish and i plan on adding more. But i also have checkboxes named such as e.g $ZZSpybot

Ive tried the following as a test but it listed nothing

$file = FileOpen("c:\box.txt", 1)
dim $Checkbox[20]
For $i = 0 To UBound($Ceckbox[20]) - 1
                If BitAND(GUICtrlRead($Checkbox[$i]), $GUI_CHECKED) Then FileWriteLine($file, "BOX -      " & $Checkbox[$i] & @CRLF)
            Next

How can i have a button, that when clicked will write down each checkbox that is checked and put it sequentially into a file?

Thanks in advance

Jamie

Edited by engjcowi

Drunken Frat-Boy Monkey Garbage

Link to comment
Share on other sites

  • Moderators

engjcowi,

You have started along the right lines. :unsure:

Put the ControlIDs of your checkboxes into an array and then use a loop to go through them to see which are checked. But I would use an ini file to store the results - the syntax is easy for both writing and reading. ;)

Give it a go and see if you can do it yourself - you know where we are if you run into trouble. :>

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...