Imports Infragistics.Win ... Private Sub Control_Where_the_User_Can_Drag_a_Dockable_Pane_Load( _ ByVal sender As Object, _ ByVal e As System.EventArgs) Handles MyBase.Load ' Sets the Pane so that you can't Dock it Bottom or make it a floating pane Me.UltraDockManager1.DockAreas(0).Panes(0).Settings.AllowDockBottom = _ DefaultableBoolean.False Me.UltraDockManager1.DockAreas(0).Panes(0).Settings.AllowFloating = _ DefaultableBoolean.False ' Makes the pane undraggable ' This pane can still be undocked though, but even in undocked mode ' you can't drag the pane around Me.UltraDockManager1.DockAreas(1).Panes(0).Settings.AllowDragging = _ DefaultableBoolean.False End Sub