Hi Tony,
I have things currently setup as you described, using Workbook_BeforeClose to delete my custom toolbar. The problem is this, one of the buttons on the custom toolbar runs a macro that saves the current file, and then opens up the original blank file.
Here's what happens as the workbook is saved:
ActiveWorkbook.SaveAs fol & "\" & SuggName & ".xls"
MsgBox " PO for " & venname & " has been saved! !", vbInformation, "Saved Purchase Order Information"
Dim Wb As Workbook
Set Wb = ActiveWorkbook
Workbooks.Open Filename:="C:\QCPO2.xls" 'my blank workbook
Wb.Close
Windows("QCPO2.xls").Activate
Deleting the toolbar in the Workbook_close deletes the toolbar when Wb.Close command runs, and I am not able to use it with my QCPO.xls file that opens. I have a feeling I just don't have things in the proper sequence. I have tried to place Wb.Close before opening my blank workbook QCPO2.XLS, but then the blank workbook never opens.
Thanks,
Raymond