mattstewart
New member
- Local time
- Today, 16:34
- Joined
- Sep 5, 2000
- Messages
- 7
I have two text boxes on a form. The first one, sbfQualCardID i have some code behind the on change event. What i want to happen is whenever the value in that feild changes, i want the the 2nd box (mnfQualCardID) to have the same value. The first box gets its data from a subform. The control source for sbfQualCardID is =[sbfSections].[Form]![QualCard_ID]. The control source for mnfQualCardID is QualCard_ID. This is the code i have:
Private Sub sbfQualCardID_Change()
Me!mnfrmQualCardID.Value = Me!sbfQualCardID.Value
End Sub
When the value changes in sbfQualCardID, the value doesn't change in mnfrmQualCardID.
What am I doing wrong?
Thanks for your help,
Matt Stewart
[This message has been edited by mattstewart (edited 12-14-2000).]
Private Sub sbfQualCardID_Change()
Me!mnfrmQualCardID.Value = Me!sbfQualCardID.Value
End Sub
When the value changes in sbfQualCardID, the value doesn't change in mnfrmQualCardID.
What am I doing wrong?
Thanks for your help,
Matt Stewart
[This message has been edited by mattstewart (edited 12-14-2000).]