Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar
Private Sub ultraExplorerBar1_GroupExitingEditMode(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinExplorerBar.CancelableGroupExitingEditModeEventArgs) Handles ultraExplorerBar1.GroupExitingEditMode
' Don't allow edit mode to be exited if the edited text is less than 5 characters.
If (e.EditedText.Length < 5) Then
e.Cancel = True
End If
End Sub