Can you get a position text box that is in a toolstrip and load a small for below it to act as a drop downbox?
Code:
Private _owningControl As Control
Public Sub New()
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
End Sub
Public Sub New(owningControl As Control)
Me.New()
Me.OwningControl = owningControl
End Sub
Public Property OwningControl() As Control
Get
Return Me._owningControl
End Get
Set(value As Control)
Me._owningControl = value
If Me._owningControl Is Nothing Then
Me.StartPosition = FormStartPosition.WindowsDefaultLocation
Else
Me.StartPosition = FormStartPosition.Manual
End If
End Set
End Property
Protected Overrides Sub OnLoad(e As EventArgs)
If Me._owningControl IsNot Nothing Then
Me.Location = New Point(Me._owningControl.Left, Me._owningControl.Bottom)
End If
MyBase.OnLoad(e)
End Sub
[/HIGHLIGHT]








