K
Kurt
I have a combo box (cboRespondant) with this for a row
source:
SELECT DISTINCTROW tblSrvRspns.RspnsID FROM tblSrvRspns
UNION SELECT "(All)" From tblSrvRspns ORDER BY
tblSrvRspns.RspnsID;
The RspnsIDs are stored as 1, 2, 10, etc. (they are
generated from an autonumber elsewhere on a form), but
I'd like them to appear in the combo box as 00001, 00002,
00010, etc. I set the Format property of the combo box to
00000, but the IDs still appear as 1, 2, 10, etc. Also,
the 00000 format makes the "(All)" option stop working:
"The value you entered isn't valid for this field.".
Any idea how to fix this? Thanks. - Kurt
source:
SELECT DISTINCTROW tblSrvRspns.RspnsID FROM tblSrvRspns
UNION SELECT "(All)" From tblSrvRspns ORDER BY
tblSrvRspns.RspnsID;
The RspnsIDs are stored as 1, 2, 10, etc. (they are
generated from an autonumber elsewhere on a form), but
I'd like them to appear in the combo box as 00001, 00002,
00010, etc. I set the Format property of the combo box to
00000, but the IDs still appear as 1, 2, 10, etc. Also,
the 00000 format makes the "(All)" option stop working:
"The value you entered isn't valid for this field.".
Any idea how to fix this? Thanks. - Kurt