C
chris23892 via AccessMonster.com
So..I have the following query in access:
SELECT Check_In.ID, Check_In.[Product Name], Check_In.[S/N], Check_In.[Part #]
, Check_In.[Date Receive], Check_In.[UPS Tracking#], Check_In.[DTAC Case],
Check_In.[Dealer Acct #], Check_In.Dealer, Check_In.[Claim# 1], Check_In.
[Claim# 2], Check_In.[Entered to FPRT (Y/N)], Check_In.Comments, Check_In.
[Date Entered to FPRT], Check_In.[Geographical Location (Ship From)]
FROM Check_In
WHERE ((([Check_in].[S/N])=[Enter Serial Number]));
I'm trying to get this to work in my VB project. I have all my database
linked, data grid view in my form and tested the connection..all work fine.
WITHOUT building a query in VB, I can debug and all the information from the
is there.
When I try to create a query based off of the data in the data grid, this is
where I'm running into problems.
Why would the SQL that works in my access badatbase not work in my vb project?
SELECT Check_In.ID, Check_In.[Product Name], Check_In.[S/N], Check_In.[Part #]
, Check_In.[Date Receive], Check_In.[UPS Tracking#], Check_In.[DTAC Case],
Check_In.[Dealer Acct #], Check_In.Dealer, Check_In.[Claim# 1], Check_In.
[Claim# 2], Check_In.[Entered to FPRT (Y/N)], Check_In.Comments, Check_In.
[Date Entered to FPRT], Check_In.[Geographical Location (Ship From)]
FROM Check_In
WHERE ((([Check_in].[S/N])=[Enter Serial Number]));
I'm trying to get this to work in my VB project. I have all my database
linked, data grid view in my form and tested the connection..all work fine.
WITHOUT building a query in VB, I can debug and all the information from the
is there.
When I try to create a query based off of the data in the data grid, this is
where I'm running into problems.
Why would the SQL that works in my access badatbase not work in my vb project?