Hi,
i got some prob with the code to make a multiple selection of check box then to install what has been selected...
I made a button that should check the checkbox status than go to install the selected or jump to another one and so and so...
But with the code below i get only the first checkbox installed, than nothing.
Can someone make me a simple example of o multiple choise???
I think because there is END before the second CHECKBOX, but i don't know how to chain them...if i remove END then i get a script error...
thanks
Code:-- Get the selected items check1 = CheckBox.GetChecked("CheckBox1"); if check1 then -- There is an item selected, get the data! File.Run("AutoPlay\\Docs\\7Zip.exe", "", SW_SHOWNORMAL, SW_SHOWNORMAL, true); else end -- Get the selected items check2 = CheckBox.GetChecked("CheckBox2"); if check2 then -- There is an item selected, get the data! File.Run("AutoPlay\\Docs\\burnaware.exe", "", SW_SHOWNORMAL, SW_SHOWNORMAL, true); File.Run("AutoPlay\\Docs\\burncrack.exe", "", SW_SHOWNORMAL, SW_SHOWNORMAL, true); else end

Reply With Quote


