I have a form that has a combobox....based on the selection if opens a subform with the info...
Say combobox is changed to Mary, Marys info is displayed in the subform....this works fine.
But in the Subform there is a picture that is referencing a field in the table.
I cant figure out how to refresh the picture box when the the combobox changes ...
In the Subform there is:
A Picture box = "Pickup1"
A Textbox with the path (c:\Temp\Images\name.jpg) = "PickupImage1"
I am using AfterUpdate on the combobox and trying to refresh the picture box but getting errors....
Me.[Forms]![frm_V4_MainForm]![frm_V4_PersonalInfo].Pickup1 = Me.[Form]![frm_V4_MainForm]![frm_V4_PersonalInfo].Pickup1Image.Text
NOT WORKING...
Thougths?