M
Minitman
Greetings,
I have a Toolbox ComboBox on a sheet. I need to clear its' contents
and then start typing into it to find the next match.
I tried this code to clear the contents:
__________________________________________________________
Private Sub ComboBox1_GotFocus()
ComboBox1.Text = vbNullString
End Sub
__________________________________________________________
This cleared the contents fine, but then jumped to the next cell in
the worksheet.
Is there a way to clear the contents of the ComboBox and stay in the
ComboBox until I'm finished finding the next record?
Any help will be appreciated.
-Minitman
I have a Toolbox ComboBox on a sheet. I need to clear its' contents
and then start typing into it to find the next match.
I tried this code to clear the contents:
__________________________________________________________
Private Sub ComboBox1_GotFocus()
ComboBox1.Text = vbNullString
End Sub
__________________________________________________________
This cleared the contents fine, but then jumped to the next cell in
the worksheet.
Is there a way to clear the contents of the ComboBox and stay in the
ComboBox until I'm finished finding the next record?
Any help will be appreciated.
-Minitman