Updated to 6.80 and encountered one glitch when compiling myQuotes.sbp for windows (optimized). I get "external compiler error CS0246 the type or namespace 'CEnhancedCheckbox' could not be found".
This occurs for CEnhancedCheckbox and for CEnhancedRadioBtn.
The error does not occur when compiling for the device.
I can get around this my changing the offending from:
Case "checkbox": Control(ary1(1), checkbox).text = ary1(2)
Case "radiobtn": Control(ary1(1), RadioBtn).text = ary1(2)
to
Case "checkbox": Control(ary1(1)).text = ary1(2)
Case "radiobtn": Control(ary1(1)).text = ary1(2)