Hi there,
I have a need to reset the 'Standard' toolbar in Excel within a small VB app. Can anyone tell me if this is the correct/best code to use?
Dim appExcel As Excel.Application
Dim x As CommandBar
Set appExcel = New Excel.Application
Set x = CommandBars("Standard"
x.Reset
Set appExcel = nothing
Cheers Brett.
I have a need to reset the 'Standard' toolbar in Excel within a small VB app. Can anyone tell me if this is the correct/best code to use?
Dim appExcel As Excel.Application
Dim x As CommandBar
Set appExcel = New Excel.Application
Set x = CommandBars("Standard"
x.Reset
Set appExcel = nothing
Cheers Brett.