This assumes you haven't done anything yet:
- Create the drop down for the Aircraft_Reg selection. (I'm going to pretend it's called cboAirReg for the purpose of later coding).
- Create a text field for Aircraft_Type (which I will be refrring to as txtAirType). I would probably set the Data properties for this field to Enabled = No & Locked = Yes.
- In the OnChange event for cboAirReg add the following code:
Code:
Me.txtAirType.Value = DLookup("[Aircraft_Type]", "[tblAircraft_Details]", "[tblAircraft_Details].[Aircraft_Reg]=" & Chr(34) & Me.cboAirReg & Chr(34))