G
Guest
Novice
I entered data directly into a table by using a lookup on the field:
SELECT tblContinentsGlobal.ContinentID, tblContinentsGlobal.Continent FROM
tblContinentsGlobal;
Bound column: 1
Columns: 2
The data went into the field: ContinentA
I did it this way because this is a (FYI) field that users can't modify on
the form.
Problem is, on my form: fsubDestinationsGlobal, the text box: txtContinentA
displays the ContinentID and not the text. I tried to use .column(1) to
display the text, but it appears that this doesn't work in a text box. Do I
have to change the text box to a combo box or is there another way to do this?
Any suggestions please?
Peter
I entered data directly into a table by using a lookup on the field:
SELECT tblContinentsGlobal.ContinentID, tblContinentsGlobal.Continent FROM
tblContinentsGlobal;
Bound column: 1
Columns: 2
The data went into the field: ContinentA
I did it this way because this is a (FYI) field that users can't modify on
the form.
Problem is, on my form: fsubDestinationsGlobal, the text box: txtContinentA
displays the ContinentID and not the text. I tried to use .column(1) to
display the text, but it appears that this doesn't work in a text box. Do I
have to change the text box to a combo box or is there another way to do this?
Any suggestions please?
Peter