Thread
:
Macro help
View Single Post
#
2
Posted to microsoft.public.excel.worksheet.functions
Carim
external usenet poster
Posts: 510
Macro help
Hi,
If they are worksheet control toolbox text boxes then
Dim i As Long
For i = 1 To ActiveSheet.OLEObjects.Count
If TypeName(ActiveSheet.OLEObjects(i).Object) < "TextBox" Then
ActiveSheet.OLEObjects(i).Delete
End If
Next i
HTH
Carim
Reply With Quote
Carim
View Public Profile
Find all posts by Carim