I am trying to have a control repeats what is another control when this other control is changed so I used:
Private Sub ProjectID_Change()
SBID.Text = ProjectID.Text
End Sub
However, I get this error:
You can’t reference a property or method for a control unless the control has the focus
Any help is appreciated...
Thank you
Private Sub ProjectID_Change()
SBID.Text = ProjectID.Text
End Sub
However, I get this error:
You can’t reference a property or method for a control unless the control has the focus
Any help is appreciated...
Thank you