2016-01-13 13:22 UTC
I have a form with two buttons and a checkbox in a rectangle. The checkbox is above the rectangle in order. I click button1 and the rectangle and checkbox are made invisible; I click button2 and the rectangle and checkbox are made visible again, only the checkbox is not visible unless I move my mouse over it. Anyone know why?
(defun c:bTframes/Form1/Button1#OnClicked ( / )
(dcl-Control-SetVisible bTframes/Form1/Rectangle1 nil)
(dcl-Control-SetVisible bTframes/Form1/CheckBox1 nil)
)
(defun c:bTframes/Form1/Button2#OnClicked ( / )
(dcl-Control-SetVisible bTframes/Form1/Rectangle1 T)
(dcl-Control-SetVisible bTframes/Form1/CheckBox1 T)
)
(defun c:bTframes/Form1/Button1#OnClicked ( / )
(dcl-Control-SetVisible bTframes/Form1/Rectangle1 nil)
(dcl-Control-SetVisible bTframes/Form1/CheckBox1 nil)
)
(defun c:bTframes/Form1/Button2#OnClicked ( / )
(dcl-Control-SetVisible bTframes/Form1/Rectangle1 T)
(dcl-Control-SetVisible bTframes/Form1/CheckBox1 T)
)


