I have few (15) textboxes in a form where information can be displayed, if I want to change the displayed values I can not.
e.g. It display's the Address_No but if I want to change it i.e. from “9” to “11” it will not update and keep record.
My Textboxes do not have a control source. They can be displayed either from option 1 or 2:
To populate date for the above mentioned TextBoxes I previously used 2 ComboBoxes, thus the reason I used the above two options.
Thank to you all in advance.
e.g. It display's the Address_No but if I want to change it i.e. from “9” to “11” it will not update and keep record.
My Textboxes do not have a control source. They can be displayed either from option 1 or 2:
- Me.Address_No = Me.ComboCities.Column(2)
- Address_No = DLookup("Address_No", "query2")
To populate date for the above mentioned TextBoxes I previously used 2 ComboBoxes, thus the reason I used the above two options.
Thank to you all in advance.