Combo Box Lose Focus

AlexanderBB

Well-known Member
Joined
Jul 1, 2009
Messages
1,835
Office Version
  1. 2019
  2. 2016
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

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
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,213,489
Messages
6,113,952
Members
448,535
Latest member
alrossman

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