S
Song Su
I have a query as follows:
SELECT TOP 1 qryVisitData.timeIn
FROM qryVisitData
ORDER BY qryVisitData.timeIn DESC;
I want to assign the query result to my cboTO control on my form so when I
open the form, I already have the default date. How to do it? Thanks.
SELECT TOP 1 qryVisitData.timeIn
FROM qryVisitData
ORDER BY qryVisitData.timeIn DESC;
I want to assign the query result to my cboTO control on my form so when I
open the form, I already have the default date. How to do it? Thanks.