Code to unlock textbox....

ExcelNovice

Well-known Member
Joined
May 12, 2002
Messages
583
I'm working with a Userform with a few textrboxes on it. I used the Properties field to lock each textbox, however I want a code to unlock the text box when the value in cell B3 is equaled to 1.

Help please.....

Thanks.
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
In the Workbook_open event, you can lock the textbox:
Code:
Public Sub Workbook_Open()
    UserForm1.TextBox1.Locked = True
    UserForm1.Show 0
End Sub

And in the sheet's _Change() event (you didn't specify which sheet):
Code:
Public Sub Worksheet_Change(ByVal Target As Range)
    If Application.Intersect(Target, [b3]) Is Nothing Then Exit Sub
    If [b3].Value = 1 Then
        UserForm1.TextBox1.Locked = False
    Else
        UserForm1.TextBox1.Locked = True
End Sub

How's that work for ya? Hope that helps!
 
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,188
Members
448,554
Latest member
Gleisner2

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