NeoCryptic Posted June 19, 2006 Posted June 19, 2006 I am trying to make a button so that when it is clicked, it checks to see what the value of a radio button is...and depending on the value, shows a certain layout. i have it so that it gets the table and the field name...but i'm not sure how to say what i want it to be equal to. ie. If table::fieldname = ...?
Brian C Posted June 19, 2006 Posted June 19, 2006 For a non-dynamic approach to this solution here is a good example for your button script: # Start of Script if (tablename::fieldname = "test1") go to layout (layout1) end if if (tablename::fieldname = "test2") go to layout (layout2) end if # End of Script
Recommended Posts
This topic is 6734 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now