Simon K Posted January 31, 2009 Posted January 31, 2009 (edited) I have a "list" view - as I cursor/arrow up and down the list a different record is made active - is there a way of getting the "active" record number - ie what i would like to do is a bit of conditional formatting on the list view that makes it slightly more obvious to the user which record they are on using a formula such as if get (recordnumber of active/selected record) - ie the one with the cursor) equals get(recordnumber) thanks simon ps any solution i use has to be 9 compatible but i am open to ideas... Edited January 31, 2009 by Guest
KirkR Posted January 31, 2009 Posted January 31, 2009 if get (recordnumber of active/selected record) - ie the one with the cursor) equals get(recordnumber) 1st Field) get(recordnumber) to populate a calculated field (stable) 2nd Field) a global field with auto-enter Get (RecordID) and "do not replace the value in the field (if any)" unchecked, so that it will dynamically change on selection. When you select a record, the global field will match the calculated field and then you can do something with the result - set text or background color, set a radio button on the row to TRUE to indicate selection, use it in conditional formatting, whatever. Conditional formatting is not IWP compatible, nor are transparent buttons (see next paragraph), so a SELECT button on a layout row is my preferred method. However, I am unsure that scrolling to a record itself is sufficient to trigger the change. I have always placed a transparent button on the layout row, so that when a user clicks on it, the change occurs.
Lee Smith Posted January 31, 2009 Posted January 31, 2009 Take a look at the example files at Databasepros Go to this Link and do a search for Highlight Records. Lee
comment Posted January 31, 2009 Posted January 31, 2009 See: http://fmforums.com/forum/showpost.php?post/294164/
Simon K Posted February 1, 2009 Author Posted February 1, 2009 Many thanks to all - I am sure one of these ideas will be more than enough for what I need
Simon K Posted February 1, 2009 Author Posted February 1, 2009 Lee, This works a treat and doesn't have too much going on - thanks Simon
Recommended Posts
This topic is 5775 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