Thomy Posted April 2, 2009 Posted April 2, 2009 Hi, Can I let my txtbox2 automaticlly fill in. if I select an chkbox = true. I work in VBA. if anyone has een example or idea you wold be very helpful. Thanks and regards Thomy Quote
bsamc2000 Posted June 18, 2009 Posted June 18, 2009 Do you mean something like the attached image? If so you can try this: Private Sub CheckBox1_Click() If Me.CheckBox1.Value = True Then Me.TextBox1.Text = "<Your name here>" Else Me.TextBox1.Text = "" End If End Sub Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.