J
Jake Jessup
I'm attempting to convert an Access app to an MSDE backend. This is my first
attempt at that.
I managed to get through a few other errors but I'm not quite sure what to
with this one.
Here is my query:
SELECT tblCounties.County, tblCounties.State
FROM tblStates INNER JOIN
tblCounties ON tblStates.StateID = tblCounties.State
WHERE (((tblCounties.State) = Forms ! frmFullInfo ! txtState));
It worke fine in a regular form but it doesn't like the
"Forms!frmFullInfo!txtState" line. What do I need to do with that line so it
will work properly?
All help is appreciated. Thanks.
attempt at that.
I managed to get through a few other errors but I'm not quite sure what to
with this one.
Here is my query:
SELECT tblCounties.County, tblCounties.State
FROM tblStates INNER JOIN
tblCounties ON tblStates.StateID = tblCounties.State
WHERE (((tblCounties.State) = Forms ! frmFullInfo ! txtState));
It worke fine in a regular form but it doesn't like the
"Forms!frmFullInfo!txtState" line. What do I need to do with that line so it
will work properly?
All help is appreciated. Thanks.