G Guest Jan 19, 2006 #1 How can all the queries, forms, reports and modules be programatically deleted from an external database? Thanks!
How can all the queries, forms, reports and modules be programatically deleted from an external database? Thanks!
A Alex Dybenko Jan 19, 2006 #2 Hi, you can open this database in access via automation (set oAcc=createObject..) then go through all forms using oAcc.CurrentProject.AllForms to get forms names and delete using oAcc.docmd.DeleteObject same for modules and repots and queries
Hi, you can open this database in access via automation (set oAcc=createObject..) then go through all forms using oAcc.CurrentProject.AllForms to get forms names and delete using oAcc.docmd.DeleteObject same for modules and repots and queries