You can do that. continues forms must be bound.
On the other hand, since you somehow had to come up with the sql for the
reocrdset, why not either:
a) set the continues form recordset to your existing recordset.
b) don't even bother creating the ado reocrdset, and just shove the sql
right into the forms data source?? (this is far preference to option a).
dim strSql as string
strSql = "select * from tblCustomers where city = 'Edmonton'"
forms!MyCustomerrForm.RecordSource = strSql
I mean,why go through all the pain of making a recordset, and...THEN setting
it to a form. Just forget about all that connection stuff, reocordset stuff,
and just shove in the sql right into the forms recordsource.
With all the time and coding you save...you can now go out for a cup of
coffie!!!