Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am wanting to know if there is a way automaticly move to a text box after
selecting a check box or an option button. example: Click on check box or option buton and the cursor shows up in the text box automaticly. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I assume here weree on a worksheet and lets suppose we have a checkbox and a textbox. In design mode (I used the control toolbox) right click the checkbox and view code and enter the code below in Private Sub CheckBox1_Click() TextBox1.Activate End Sub Go back to the worksheet and exit design mode and click your checkbox. Mike "ekreider" wrote: I am wanting to know if there is a way automaticly move to a text box after selecting a check box or an option button. example: Click on check box or option buton and the cursor shows up in the text box automaticly. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If this is for a UserForm control then this would work
Private Sub CheckBox1_Click() If CheckBox1 = True Then TextBox1.SetFocus End Sub .. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying text from website OR selecting and coping certain text within a cell | Excel Programming | |||
Selecting just my text | Excel Programming | |||
selecting certain text in long row of text | Excel Worksheet Functions | |||
Selecting text | Excel Programming | |||
Selecting text in cells & half of the Selected Text to be underLine | Excel Programming |