Hi,
sorry, I'm new in .net ;-), I don't understrand how to access the textboxtool function in the ToolClick sub
here a simple test code :
Private Sub UltraToolbarsManager1_ToolClick(ByVal sender As System.Object, ByVal e As Infragistics.Win.UltraWinToolbars.ToolClickEventArgs) Handles UltraToolbarsManager1.ToolClick
If e.Tool.Key = "New" Then
MsgBox("Test")
End If
If e.Tool.Key = "BT_Search" Then
MsgBox("Search : " & 'here I want to add the text of the textbox with the key tb_search in the tool bar
End If
End Sub