Oct 6, 2003 #1 shaleen7 MIS Jun 23, 2002 188 US Here's an example of what I'm looking for: If checkbox1 is enabled by the user then a pre-defined value is placed in a textbox1. For example: Checkbox1 is enable then the value $920 would be entered into Textbox1. How would I accomplish this? Many thanks.
Here's an example of what I'm looking for: If checkbox1 is enabled by the user then a pre-defined value is placed in a textbox1. For example: Checkbox1 is enable then the value $920 would be entered into Textbox1. How would I accomplish this? Many thanks.
Oct 6, 2003 #2 michaelbr55 Programmer Oct 8, 2002 70 Try this, Private Sub CheckBox1_Change() if checkbox1.value = true then textbox1.text = "$920" else textbox1.text = "" end if End Sub Mike Upvote 0 Downvote
Try this, Private Sub CheckBox1_Change() if checkbox1.value = true then textbox1.text = "$920" else textbox1.text = "" end if End Sub Mike