Textbox

verluc

Well-known Member
Joined
Mar 1, 2002
Messages
1,451
I want by opening a userform, the cursor start in Textbox0
Textbox0.Select doesn't work
Thanks for help.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Thanks for your help, but without succes.
I have a combobox in a userform and always by opening the userform the cursor started in the combobox and not in the Textbox0
Anu suggestion ?
 
Upvote 0
In design mode, right click the user form, select Tab Order and move TextBox0 to the top of the list.
 
Upvote 0
Sorry, no result with Textbox0 at the top of the list.
Start always in the combobox
 
Upvote 0
For me, this selects the text box whatever the order is set to

Right click the user form, select View Code and paste in

Code:
Private Sub UserForm_Initialize()
TextBox0.SetFocus
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,965
Messages
6,122,496
Members
449,089
Latest member
Raviguru

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