S
Song Su
I have 4 unbound text boxes. Can I put SQL statement as control source of
the text box?
I want my txtWinter text box to show following result:
SELECT TOP 1 Course.YYYY, Course.RUNDATE
FROM Course
WHERE (((Course.SEM)="0"));
and I want my txtSpring text box to show:
SELECT TOP 1 Course.YYYY, Course.RUNDATE
FROM Course
WHERE (((Course.SEM)="1"));
and similar for Summer and Fall
Thanks.
the text box?
I want my txtWinter text box to show following result:
SELECT TOP 1 Course.YYYY, Course.RUNDATE
FROM Course
WHERE (((Course.SEM)="0"));
and I want my txtSpring text box to show:
SELECT TOP 1 Course.YYYY, Course.RUNDATE
FROM Course
WHERE (((Course.SEM)="1"));
and similar for Summer and Fall
Thanks.