Microsoft
Software
Hardware
Network
Question : VBA - Remove Data Connections and Macros From Workbook
I need to save a copy of a workbook with all data connections and macros removed via VBA so users opening the workbook don't get warnings from the trust center. Any ideas?
Answer : VBA - Remove Data Connections and Macros From Workbook
I guess a loop like this:
for each wks in activeworkbook.worksheets
For each objList in wks.listobjects
Objlist.unlist
Next objlist
next wks
Random Solutions
How to format tag right?
How to make a web directory to be an application in Windows 2008 application server/web server?
Auto-Complete problem
trouble with sorting columns on gridview in ASP.NET 2.0
INSERT INTO SELECT FROM OPENQUERY question
Access: Gouping Textboxes into frames
How do I set up multiple RDPs thru my sonicwall TZ170 firewall
Auto populate date field for Microsoft CRM 4.0
Access query to select highest number in field
Swap two columns using vba