How can I get a check box to set instead of toggle?
Hello,
I am having an issue with setting checked boxes as checked. It seems to be toggling instead of setting. I have included some sample code. I create a 1 item check box in a journal, set it (the box gets checked), then set it again (the box gets unchecked).window_journal = New Window("", <<Journal, mainPage = V List Box()
);
EnableLimitButton = Check Box("Enable Limit Checking");
mainpage
...