Hi Leon,
I am encouraging the users of the form to utilize the dropdowns to prevent other issues down the line. This is just the 1st stop in a longer process. Other sheets will be opened and or populated partly based on the names listed in the dropdown. So with that in mind, I am trying to keep this as fail free as possible.
For the 1st part I am using this code:
Private Sub Workbook_open()
UserForm1.CMB_Lead.SetFocus
UserForm1.Show
End Sub
So, after the user picks from the list, I would like the focus to shift to a text box called TB_Logon. I need nothing other than to get the flashing cursor to move from CMB_Lead to TB_logon. I would prefer that it happen without the user having to tab or enter if possible.
Bookmarks