Hi i have a text box that i want to copy whatever i have in it to the next record in the same textbox and this is all determined if the checkbox next to it is checked.
I have the following code for it so far but its not working.
Private Sub txtTRKNUM_After Update()
If chkTRACKLOCK.Va lue = Checked Then
txtTRKNUM.Defau ltValue = txtTRKNUM
End If
End Sub
Is this the approach i should take?
I have the following code for it so far but its not working.
Private Sub txtTRKNUM_After Update()
If chkTRACKLOCK.Va lue = Checked Then
txtTRKNUM.Defau ltValue = txtTRKNUM
End If
End Sub
Is this the approach i should take?
Comment