I know this will be obvious, but has stumped me... Trying to adapt the below code to apply for an entire workbook rather than just the active sheet.... Thanks.
Code:
[LEFT][COLOR=#0a0101][FONT=Consolas]Sub Clear_ButtonsActiveSheet()
Dim I As Long
Dim xOLE As Object
On Error Resume Next
ActiveSheet.Buttons.Delete
For Each xOLE In ActiveSheet.OLEObjects
If TypeName(xOLE.Object) = "CommandButton" Then
xOLE.Delete
End If
Next
End Sub<strike></strike>
[/FONT][/COLOR][/LEFT]