Autosave checkboxes
Posted: Fri Feb 09, 2018 5:33 pm
I don't understand how (or If) checkboxes are saved upon exit.
Eventually how to retrieve them.
Eventually how to retrieve them.
UCCNC machine control software support forum
https://forum.cncdrive.com/
string key20303 = exec.Readkey("UserCheckboxes", "20303", "False");
if (key20303=="True")
{
.............
............
}
exec.Writekey("YourSection", "YourKey", AS3.Getcheckboxstate(10000).ToString());
AS3.Setcheckboxstate(Convert.ToBoolean(exec.Readkey("YourSection", "YourKey", "False")), 10000);