Can anyone tell me where the code is saved in a forms controls command button? I'm trying to update a speadsheet someone else made and i cant find the code. i see it run these instructions to delete the command button, but then its doing all sorts of other things too, and thats what i cant find. is there some secret place to hide code?
VBA Code:
Sub Update()
'
' Update Macro
'
'
ActiveWorkbook.RefreshAll
ActiveSheet.Shapes.Range(Array("Button 1")).Select
Selection.Delete
End Sub