How would I test for the existence of a dynamically created toolbar when a workbook is activated?

I've tried the following but I'm receiving a Run-time Error (438) "Object doesn't support this property or method:"

[VBA]
If Application.CommandBars(myToolBar) = False Then
Call CreateToolbar
End If
[/VBA]

Thanks,

Opv