kibber Posted September 28, 2005 Posted September 28, 2005 If I have one table with three different layout options pertaining to address's :: Main; Work; Home; etc. When I run the script go to related record my option is [from table: Main] I need the option of [from layout: Work] ; [from layout: Home] etc. How can I acomplish this? Thanks
mr_vodka Posted September 28, 2005 Posted September 28, 2005 You can attach a script parameter to each of the buttons. I like using numbers but you can uses the values: home, work, main. Then in your script you can have If Get ( ScriptParameter ) = "home" Go to layout [ "home" ] Else If Get ( ScriptParameter ) = "work" Go to layout [ "work" ] Else Go to layout [ "Main ] EndIf
kibber Posted September 28, 2005 Author Posted September 28, 2005 So thats what the edit box with in the button setup is for.... Got it! thanks again mr_vodka
Recommended Posts
This topic is 6998 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