By Clicking on a Label, a ComboBox gets Focus (1 Viewer)

DreamerArgentino

New member
Local time
Yesterday, 20:58
Joined
May 19, 2018
Messages
26
Hi everyone!

I am bothering you once again because I have the need to do the following:

That the user when clicking on a Label, a ComboBox gets the Focus. It's possible?

Thanks!
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 11:58
Joined
May 7, 2009
Messages
19,246
on click event of the Label:

private sub label1_click()
me.combo1.setfocus
end sub
 

Users who are viewing this thread

Top Bottom