K
Ken Hudson
I am using Access 2003.
I have a subform with a text box ([cboPOID]) that uses a query to retrieve
data from a table.
SELECT tblPOs.pkPOID, tblPOs.txtPONo, tblPOs.fkProjID, tblPOs.curPOAmt,
tblPOs.txtDescr, tblPOs.memComments, tblPOs.txtBFY, tblPOs.txtStn FROM tblPOs
WHERE (((tblPOs.fkProjID)=Forms!frmProjectsEdit!pkProjID));
On that subform I have several other text boxes that get their data from the
text box ([cboPOID]) that runs the query. Their data source is:
=cboPOID.column(3), =cboPOID.column(4), etc.
I am now trying to set up another text box, but when I type in
"=cboPOID.column(5)" and hit return, the code changes to
"=[cboPOID].[column](5)" and obviously doesn't work.
Any ideas what I may have done to incur this behavior?
I have a subform with a text box ([cboPOID]) that uses a query to retrieve
data from a table.
SELECT tblPOs.pkPOID, tblPOs.txtPONo, tblPOs.fkProjID, tblPOs.curPOAmt,
tblPOs.txtDescr, tblPOs.memComments, tblPOs.txtBFY, tblPOs.txtStn FROM tblPOs
WHERE (((tblPOs.fkProjID)=Forms!frmProjectsEdit!pkProjID));
On that subform I have several other text boxes that get their data from the
text box ([cboPOID]) that runs the query. Their data source is:
=cboPOID.column(3), =cboPOID.column(4), etc.
I am now trying to set up another text box, but when I type in
"=cboPOID.column(5)" and hit return, the code changes to
"=[cboPOID].[column](5)" and obviously doesn't work.
Any ideas what I may have done to incur this behavior?