by alive -I will guess you mean enabled. In the click event of the chkbox,
If Me.chkYourName Then
Me.YourTextbox.Enabled = false
Else
Me.YourTextbox.Enabled = True
End If
You can also set other properties of the textbox the same way - the border
style, color, width, etc.
Ready to Go,
Use the Checkbox (ex. chkABC) AfterUpdate event to make your text
control (ex. txtABC) come "alive" (whatever that means)
I'll assume txtABC is disabled...
If chkABC = True Then
txtABC.Enabled = True
End if
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.