September 28, 200520 yr 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
September 28, 200520 yr 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
September 28, 200520 yr Author So thats what the edit box with in the button setup is for.... Got it! thanks again mr_vodka
Create an account or sign in to comment