|
|
FAQ (extoolbarcrd)
|
Exontrol.COM Software - Frequently Asked Questions - ExToolbar.CRD Component
1:
|
The control's release notes can be found on our web site, looking for
the Release Notes column in the control's main page. Click here
for direct link.
|
2:
|
When using the Item (get_Item) property of the eXToolBar.CRD/COM component
on VB.NET environment, in VB/NET, it throws a compiler error:
error BC30456: 'get_Item' is not a member of 'AxEXTOOLBARCRDLib.AxToolBarCRD'
so, instead using the get_Item, you have to use the Item accessor
instead as in the following sample.
The correct syntax would be:
With .Item(100)
.Caption = "Just a caption"
End With
instead of:
With .get_Item(100)
.Caption = "Just a caption"
End With
|
|
|