The main form in my project currenly contains a menu item labeled "TEST":
This simply opens up our test form, which is great while in development. Now, however, as we go into production, I need to hide this label / link when in Release mode. I thought I could use theCode:Me.ctxMnuMainNewTest.Text = "TEST"format, but there's no such option for Release mode.Code:#IF DEBUG THEN...#End If
The other options are CONFIG and TRACE...do I use one of these or am I barking up the wrong tree?
OR...do I simply show what I want shown within #IF DEBUG statements ?
Thanks, Mike




Reply With Quote