dates

K

Khalil Handal

hi,
I should put the dates manualy in this case.
I was wondering if I can put the dates in an unbounded object in a form and
see the records below?
 
D

Douglas J. Steele

You can refer to controls on a form as

SELECT ...
FROM
WHERE MyTable.SomeDate BETWEEN Forms!NameOfForm!NameOfControl1 and
Forms!NameOfForm!NameOfControll2;
 
K

Khalil Handal

Thanks Doug,

Douglas J. Steele said:
You can refer to controls on a form as

SELECT ...
FROM
WHERE MyTable.SomeDate BETWEEN Forms!NameOfForm!NameOfControl1 and
Forms!NameOfForm!NameOfControll2;
 
Top