PDA

View Full Version : Tab through word form



macca34
10-31-2014, 08:15 AM
I have written code to tab through my word form (VBA). I am having trouble using the code to tab to a combo box. Any ideas on how I can do this. Below is the code that I use to tab through textboxes.


Private Sub Date2_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If KeyCode = vbKeyTab Then
Me.OrgType.Active
End If
End Sub