I need to have 2 tables open in 4 differnent forms, not using the ADO controler, but by programming it. I dont want to type everything en each form load, so I made 2 procedures in the module, but it gives me errors.
??????
Thanx
Printable View
I need to have 2 tables open in 4 differnent forms, not using the ADO controler, but by programming it. I dont want to type everything en each form load, so I made 2 procedures in the module, but it gives me errors.
??????
Thanx
Have you tried adding a module, and declaring the tables in
there? Use the keyword GLOBAL to prefix the declaration. Be
careful with globals, tho. Leads to dirty code and insidious errors
that are difficult to keep up/clear up.
Thanx, it worked.