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
Problem with changing Record Source in Access
Exchange services not running shows error
Calculating time elapsed from two date/time columns
Partition system ID Windows 7
Macro not available to button properties
SelectedValue which is invalid because it does not exist in the list of items
How to set value member in listbox using Silverlight 3.0
vb.net selected item from listview
using required field validators to validate inputs for a textbox on an asp.net page
Close form in access and abandon half fillled record - without any access messages/Have a button/event do the same thing as the escape key.