Greetings,

I have a single-sheet workbook, with a button called "Copy Order". How can I disable it? I found this code elsewhere:

Sub TestHide()
    Button_Name = "Copy Order"
    ActiveWorkbook.Sheet1.Buttons.Button_Name.Disabled = True
End Sub
but when I run it, I get an error that says "Object doesn't support this property or method."

I am running Excel in Office 2001 for Mac.

Thanks!
DM