Quote Originally Posted by ajames
look at this:
VB Code:
  1. Private Sub form_KeyDown(KeyCode As Integer, shift As Integer)
  2.   If shift = 1 Then
  3.   engupper.Visible = True
  4.     englower.Visible = False
  5.     shiftcheck = False
  6. Else
  7.     englower.Visible = True
  8.     engupper.Visible = False
  9. End If
  10. End Sub
when I let go of shift then "engupper" just remains hidden. Any suggestions?
I think the IF block should be in ELSE and vice-versa.
VB Code:
  1. Private Sub form_KeyDown(KeyCode As Integer, shift As Integer)
  2. If shift = 1 Then
  3.     englower.Visible = True
  4.     engupper.Visible = False
  5. Else
  6.     engupper.Visible = True
  7.     englower.Visible = False
  8.     shiftcheck = False
  9. End If
  10. End Sub