xwing1978 0 Posted March 15, 2005 I attempted to create a three-state check box using the following code (this is an excerpt): $Checkbox_2 = GuiCtrlCreateCheckbox( "Checkbox2", 30, 50, 140, 20, $BS_3STATE ) When the script is run, there is no check box but a group where the checkbox should be. Am I missing something??? Share this post Link to post Share on other sites
Holger 14 Posted March 15, 2005 Hi xwing: this is normal cause when you create a checkbox then AutoCheckBox-Style is forced (like in the helpfile described). Maybe we should change this behaviour... Here is what you can do at the moment to solve this thing: $Checkbox_2 = GuiCtrlCreateCheckbox( "Checkbox2", 30, 50, 140, 20) GUICtrlSetStyle(-1, $BS_AUTO3STATE ) Regards Holger Old project:GUI/Tray menu with icons and colorsOther old stuff:IconFileScanner, TriState/ThreeState GUI TreeView, GUI ContextMenu created out of a TreeView Share this post Link to post Share on other sites
xwing1978 0 Posted March 15, 2005 That does it, Thanks!!! Share this post Link to post Share on other sites