T
tbrogdon
I have frmProductionOperation which is bound to junction table
tblProductionOperation with a combo box cboWorkstation and a text box
txtOperation.
The row source for cboWorkstation is SELECT
tblWorkstation.WorkstationID, tblWorkstation.WorkstationName FROM
tblWorkstation;
tblWorkstation also has tblWorkstation.OperationID which is linked to
tblOperation.OperationID
The row source for txtOperation is SELECT tblOperation.OperationID,
tblOperation.OperationName FROM Operation;
My question is about txtOperation. When the user selects a workstation
from cboWorkstation I want txtOperation to automatically and
immediately update and be non-editable.
Thank you for your time,
Tim
tblProductionOperation with a combo box cboWorkstation and a text box
txtOperation.
The row source for cboWorkstation is SELECT
tblWorkstation.WorkstationID, tblWorkstation.WorkstationName FROM
tblWorkstation;
tblWorkstation also has tblWorkstation.OperationID which is linked to
tblOperation.OperationID
The row source for txtOperation is SELECT tblOperation.OperationID,
tblOperation.OperationName FROM Operation;
My question is about txtOperation. When the user selects a workstation
from cboWorkstation I want txtOperation to automatically and
immediately update and be non-editable.
Thank you for your time,
Tim