Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports Infragistics.Win.UltraWinSchedule.CalendarCombo
Private Sub HideBorders()
' If the resolved border style is not 'None', set it to 'None'
If (Me.ultraCalendarCombo1.BorderStyleResolved <> UIElementBorderStyle.None) Then
Me.ultraCalendarCombo1.BorderStyle = UIElementBorderStyle.None
End If
' If the resolved dropdown border style is not 'None', set it to 'None'
If (Me.ultraCalendarCombo1.BorderStyleDropDownResolved <> UIElementBorderStyle.None) Then
Me.ultraCalendarCombo1.BorderStyleDropDown = UIElementBorderStyle.None
End If
End Sub