can help me..how should i write if i wanna write a code for a checkbox in the form that check1._______ = ________ when check2 is clicked..urgent..thankx..this i in VB6.0..
Printable View
can help me..how should i write if i wanna write a code for a checkbox in the form that check1._______ = ________ when check2 is clicked..urgent..thankx..this i in VB6.0..
Use click event of check box.
Private Sub Check2_Click()
Check1.Value = 1
End Sub
~Sanjivani