Jump to content
Server Maintenance This Week. ×

Back Button


This topic is 8652 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Howdy folks. I have created a relational database that I think flows well from layout to layout, lots of GoTo buttons positioned near relational data etc. And still, a few of my users are begging for a "Back" button like the ones they use in their browsers so they don't have to remember where they came from. It would have to remember both which file they came from and which layout because there is a multitude of ways to get anywhere in the whole database. I am using version 4 on a Mac. Thanks in advance for any help.

------------------

Regards, K.

~~~~~~~~

Data is not information unless it is informative.

Link to comment
Share on other sites

With some effort, you can use global fields and the Status(CurrentLayoutNumber) and Status(CurrentFileName) functions to implement a back button. You can go to the last layout by a global, but you will need to write a test for each file name and run the appropriate script in another file to implement a go to file. -bd

Not all data is information,

Not all information is knowledge,

Not all knowledge is wisdom.

-Cliff Stoll

[This message has been edited by LiveOak (edited August 14, 2000).]

Link to comment
Share on other sites

quote:

Originally posted by kattatonic:

Howdy folks. I have created a relational database that I think flows well from layout to layout, lots of GoTo buttons positioned near relational data etc. And still, a few of my users are begging for a "Back" button like the ones they use in their browsers so they don't have to remember where they came from. It would have to remember both which file they came from and which layout because there is a multitude of ways to get anywhere in the whole database. I am using version 4 on a Mac.

Realize that many times the simple "Back" functionality found in a browser does not make any sense in a database, no matter how much your users want this capability.

I would start by evaluating your interface and see if this really does make sense to implement and if it will actually help your users.

Most relational database systems are NOT a linear navigation, thus the "Back" button (which is pure linear navigation) may not work as it does in the web browser.

------------------

=-=-=-=-=-=-=-=-=-=-=-=-=

Kurt Knippel

Senior Filemaker Developer

http://www.database-resources.com

mailto:[email protected]

=-=-=-=-=-=-=-=-=-=-=-=-=

Link to comment
Share on other sites

step by step to go back to last layout

create a global text field called "gLastLayout"

make a script called "GoTo whatever"

SetField["gLastLayout", "Status(CurrentLayoutNumber)"]

GoTo Layout ["whatever"]

now in the layout from where you are going to go to the "whatever" layout link the button to "GoTo whatever" script

in the "whatever" layout the back button should be linked to "layout number from field..." which is an option under Go to layout in Specify Button

-----

the credit for this tip goes to Dan Jacoby

Link to comment
Share on other sites

  • 2 weeks later...

This topic is 8652 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.