Hello,
I have a checkbox that modifies my parameter file. Is it possible for it to check the saved value upon opening, rather than the default value?
(print,Start spindle CW)
(dlgname,'PARAMETRE palpeur Z',w=400, h=300, bok=1, bcancel=1)
(dlg,'réglage palpeur et delais amorcage ', typ=label, color=0xff0000)
(dlg,'"active axe z "|"activer~"|"desactiver~"', typ=checkbox, param=_activerz, 0, store)
(dlg,'hauteurcapteur', typ=input, param=_hauteurpalpeur, def=-18, store, min=-50, max=+50, dec=1, setunits)
(dlg,'hauteur de coupe', typ=input, param=_hauteurdecoupe, def=4, store, min=-100, max=+100, dec=1, setunits)
(dlg,'hauteur amorcage coupe', typ=input, param=_hauteuramorcage, def=4, store, min=-100, max=+100, dec=1, setunits)
(dlg,'delais amorcage', typ=input, param=_delaiscoupe, def=4, store, min=-100, max=+100, dec=1, setunits)
(dlgshow)