User (Legacy) Posted March 19, 2004 Report Share Posted March 19, 2004 I have the following source: Let cfx.axis(1).Visible = True If cfx.axis(1).Visible = True Then Call MsgBox ("TEST") End If The msgbox will be called. Any assertion? Best regards, Thorsten Link to comment Share on other sites More sharing options...
User (Legacy) Posted March 19, 2004 Author Report Share Posted March 19, 2004 Sorry, I don Link to comment Share on other sites More sharing options...
Software FX Posted March 30, 2004 Report Share Posted March 30, 2004 Can you please put this in context ? If I paste this code in a brand new project, I do get the message box. -- FP Software FX Link to comment Share on other sites More sharing options...
Software FX Posted March 30, 2004 Report Share Posted March 30, 2004 Forgot to mention: Since Visible is a Boolean, the correct syntax is: Let cfx.axis(1).Visible = True If cfx.axis(1).Visible Then Call MsgBox ("TEST") End If -- FP Software FX Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.