B
BlueWolverine
Hello,
MS ACCESS 2003 on XP Pro
I have a query that looks at a table and finds the records corresponding to
a value stored in a text box on a form.
Here is the SQL
SELECT t_FuelCardInventory.FuelCardProvider, t_FuelCardInventory.VIN
FROM t_FuelCardInventory
WHERE (((t_FuelCardInventory.VIN)=[Forms]![f_SearchPanel]![GlobalVIN]));
In Datasheet mode, it shows blank, and vba rs.eof shows true. I know for
fact that the value is in fact in the form, and I know for a fact that there
is a record in the table with that VIN. I can go looking for them and see
them.
I have tried '" & [Forms]![f_SearchPanel]![GlobalVIN] & "' as I have found
for otehr vba related calls, but that doesn't appear to work. IN case you
are curious, both fields are text.
Thank you
MS ACCESS 2003 on XP Pro
I have a query that looks at a table and finds the records corresponding to
a value stored in a text box on a form.
Here is the SQL
SELECT t_FuelCardInventory.FuelCardProvider, t_FuelCardInventory.VIN
FROM t_FuelCardInventory
WHERE (((t_FuelCardInventory.VIN)=[Forms]![f_SearchPanel]![GlobalVIN]));
In Datasheet mode, it shows blank, and vba rs.eof shows true. I know for
fact that the value is in fact in the form, and I know for a fact that there
is a record in the table with that VIN. I can go looking for them and see
them.
I have tried '" & [Forms]![f_SearchPanel]![GlobalVIN] & "' as I have found
for otehr vba related calls, but that doesn't appear to work. IN case you
are curious, both fields are text.
Thank you