Basically i have a mini form of 256, 244
that i whish to open just under a button on my form like a drop down panel
this is a preview
![Name: indexpage_MAINsettings.png
Views: 52
Size: 32.5 KB]()
how would i go about this i thought maybe a custom class somehow
or
a seperate form that i open on a set position i tried
a new form with start position set to manual
then in the forms load event i placed
but that does nothing
Any help would be greatly appreciated.
that i whish to open just under a button on my form like a drop down panel
this is a preview
how would i go about this i thought maybe a custom class somehow
or
a seperate form that i open on a set position i tried
a new form with start position set to manual
then in the forms load event i placed
Code:
Me.SetStyle(ControlStyles.SupportsTransparentBackColor, True)
Me.TransparencyKey = Me.BackColor
Me.Parent = Form1.Btn_settingsmain1
Me.Location = New Point(10, 20)
Me.StartPosition = FormStartPosition.CenterParent
Any help would be greatly appreciated.