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

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
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,430
Messages
6,119,442
Members
448,898
Latest member
drewmorgan128

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