G
Guest
INSERT INTO Name_Total_Table ( [Library#], [First], Middle, [Last], Total,
last_date, block, amount )
I have the following query in a program that will ask for a date in a pop-up
dialog box. I would like that box to close once the date is entered, instead
of staying on the screen the entire time the program is running. This really
doesn't affect anything it's just an annoyance.
SELECT dbo_debt_borrower.[borrower#], ParseName([Name],"F") AS [First],
ParseName([Name],"M") AS Middle, ParseName([Name],"L") AS [Last],
CCur([total_amount]*0.01) AS totals, DateAdd("d",[last_date],"1 Jan 1970") AS
[Date], dbo_burb.block, dbo_burb.amount
FROM dbo_debt_borrower INNER JOIN dbo_burb ON dbo_debt_borrower.[borrower#]
= dbo_burb.[borrower#]
WHERE (((DateAdd("d",[last_date],"1 Jan 1970"))=[Enter Debt Collect Date use
this format only mm/dd/yyyy]) AND ((dbo_burb.block)="dc") AND
((dbo_debt_borrower.status)=0));
last_date, block, amount )
I have the following query in a program that will ask for a date in a pop-up
dialog box. I would like that box to close once the date is entered, instead
of staying on the screen the entire time the program is running. This really
doesn't affect anything it's just an annoyance.
SELECT dbo_debt_borrower.[borrower#], ParseName([Name],"F") AS [First],
ParseName([Name],"M") AS Middle, ParseName([Name],"L") AS [Last],
CCur([total_amount]*0.01) AS totals, DateAdd("d",[last_date],"1 Jan 1970") AS
[Date], dbo_burb.block, dbo_burb.amount
FROM dbo_debt_borrower INNER JOIN dbo_burb ON dbo_debt_borrower.[borrower#]
= dbo_burb.[borrower#]
WHERE (((DateAdd("d",[last_date],"1 Jan 1970"))=[Enter Debt Collect Date use
this format only mm/dd/yyyy]) AND ((dbo_burb.block)="dc") AND
((dbo_debt_borrower.status)=0));