When I create a Combobox that its supposed to grab info from a table and display a record depending on whats selected and I try to put something like on the Raw Source:
It will show only records for EDU
But if I try to put it like
It wount display anything.
Cheers.
Code:
SELECT "tblFiles"."FileEntryNo", "tblFiles"."GroupCode"
FROM "tblFiles"
WHERE "GroupCode" LIKE "EDU";
It will show only records for EDU
But if I try to put it like
Code:
SELECT "tblFiles"."FileEntryNo", "tblFiles"."GroupCode"
FROM "tblFiles"
WHERE "GroupCode" LIKE "[Forms]![FrmTest]![Combo1]";
It wount display anything.
Cheers.