Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Compare Database
Option Explicit
Public sortorder
'-------------------------------------------------
Private Sub MyTextbox_Label_Click()
Me.MyTextbox.SetFocus
If sortorder = "Z to A" Or sortorder = "" Then
DoCmd.RunCommand acCmdSortDescending
sortorder = "A to Z"
Else
If sortorder = "A to Z" Then
DoCmd.RunCommand acCmdSortAscending
sortorder = "Z to A"
End If
End If
End Sub
'---------------------------------------------------
'---------------------------------------------------
Private Sub cmdSort_Click()
Me.MyTextbox.SetFocus
If Me.cmdSort.Caption = "A to Z" Then
DoCmd.RunCommand acCmdSortDescending
Me.cmdSort.Caption = "Z to A"
Else
DoCmd.RunCommand acCmdSortAscending
Me.cmdSort.Caption = "A to Z"
End If
End Sub
'---------------------------------------------------