How to make dynamic function?
Good day!
I'm using this macro:
dim db as dao.database
dim rst as dao.recordset
set db = MyDB
set rst=Mydb.OpenRecordset("MyRst")
...........et.c
I frequently use this style but with different recordsets.
Is it possible to create only one generic Sub and then pass certain values from other Sub?
|