Hi Jude,
You should cast the abstract
RadToolBarItem to the
RadToolBarButton type, e.g.
Dim item As RadToolBarItem
item = RadToolBar1.Items(index)
If item.GetType Is GetType(RadToolBarButton) Then
CType(item, RadToolBarButton).Checked = True
CType(item, RadToolBarButton).CheckOnClick = True
End If
Let me know if that helps.
Kind regards,
Erjan Gavalji
the Telerik team