How to refresh to original when form is loaded after the user right click sort?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • emtang
    New Member
    • Feb 2011
    • 3

    How to refresh to original when form is loaded after the user right click sort?

    How to refresh to original when form is loaded after the user right click sort

    Steps:
    1. Form is loaded.
    2. User right click on sort A-Z in Contributor.
    3. User wants to get back the original sort when the form is opened.

    How?

    Please help

    ** Edit **
    [imgnothumb]http://bytes.com/attachments/attachment/4688d1296694690/form.jpg[/imgnothumb]
    Attached Files
    Last edited by NeoPa; Feb 6 '11, 08:31 PM. Reason: Showed pic
  • orangeCat
    New Member
    • Dec 2007
    • 83

    #2
    Is there an option to Remove Filter or Sort?
    If so, click it.

    Comment

    • Stewart Ross
      Recognized Expert Moderator Specialist
      • Feb 2008
      • 2545

      #3
      You can place a command button on the form labelled, say, "Sort in Normal Order", and in its on-click event put the following lines:

      Code:
      Me.OrderBy = ""
      Me.OrderByOn = False
      -Stewart

      Comment

      • NeoPa
        Recognized Expert Moderator MVP
        • Oct 2006
        • 32661

        #4
        In the Records Menu there is an option Remove Filter/Sort. The operator can choose this unless you have menus disabled or hidden.

        Comment

        Working...