Solved
Forum Discussion
AlexKaras
Champion Level 1
6 years agoHi,
Is this check-box two- or three-states one? (I.e. can it be 'greyed'?)
What if you try
if (aqConvert.VarToBool(UserForms.AdvancedForm.apAdvancedResults.Checked))?
underqualified
6 years agoOccasional Contributor
Everyone who gave me your helpful responses, I solved it by realizing I was very stupid and looking at JScript and not JavaScript - I adjusted the code to be
function DataForm_tpAdvanced_OnChange(Sender) { if(UserForms.DataForm.tpAdvanced.Checked == True) UserForms.AdvancedForm.Show(); }
and it works like a charm now! Thanks for all the advice and sorry for possibly wasting anyone's time!