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 Quote 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 Quote 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 Quote 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.