Hi,
I have a form which contains a subform, both of which have multiple tabs. In one tab of the subform I have several text boxes which display data by having their source data set to (for example):
Source=DLookUp( "[EquipmentNumber]","[qrySelectedPart Details]")
In other forms I've created I've been able to update the value displayed in the text boxes by using Me.text_box.Req uery, however because these text boxes are in a subform, I am not sure how to reference them. The goal is to be able to click an item in a list box and have certain information displayed in the text fields.
I've tried frmSubForm.text _box.requery, but it doesn't seem to make any difference.
Any help would be great! Thanks!
I have a form which contains a subform, both of which have multiple tabs. In one tab of the subform I have several text boxes which display data by having their source data set to (for example):
Source=DLookUp( "[EquipmentNumber]","[qrySelectedPart Details]")
In other forms I've created I've been able to update the value displayed in the text boxes by using Me.text_box.Req uery, however because these text boxes are in a subform, I am not sure how to reference them. The goal is to be able to click an item in a list box and have certain information displayed in the text fields.
I've tried frmSubForm.text _box.requery, but it doesn't seem to make any difference.
Any help would be great! Thanks!
Comment