Combo Box Lose Focus

AlexanderBB

Well-known Member
Joined
Jul 1, 2009
Messages
2,099
Office Version
  1. 2019
  2. 2010
Platform
  1. Windows
What's the correct way for a UserForm) combo box to Lose the focus?

I anticipate calling this from the cbo_Change event.
I did try to setFocus to a text box (left = -50) but you still see a flashing cursor , so made the left -999 and locked = True.
That did it but seems a hack and there must be a better way?
Thanks.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
To change the focus to TextBox1 when ComboBox1 changes
Code:
Private Sub ComboBox1_Change()
  TextBox1.SetFocus
End Sub
 
Upvote 0
I know, but what if you don't want to Set it anywhere - just lose it from the Combo Box ?
 
Upvote 0
Add a commandbutton with Height 1 and Width 1
- set the focus to that
- the user will not even realise it is there

Code:
Private Sub ComboBox1_Change()
    CommandButton5.SetFocus
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,822
Messages
6,181,165
Members
453,021
Latest member
Justyna P

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top