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.
Private Sub Text1_AfterUpdate()
Dim strTemp As String
strTemp = UCase(Me!Text1)
If InStr(strTemp, "E") > 0 Then
Me!Text2 = "East"
ElseIf InStr(strTemp, "W") > 0 Then
Me!Text2 = "West"
ElseIf InStr(strTemp, "N") > 0 Then
Me!Text2 = "North"
ElseIf InStr(strTemp, "S") > 0 Then
Me!Text2 = "South"
End If
End Sub