Dragging a check box and a text box on the form and placing the code below in the checkbox control
If CheckEdit1.Checked = True Then
TextBox1.Text = System.DateTime.Today.ToShortDateString
Else
TextBox1.Text = " "
End If
is what I want but I don't know how to do this in a datagrid if someone could give me a hand on this topic that would great

Thanks