Hi,
I have drag and drop two toolstrips controls on MDI Form and theit LayoutStyle is set to HorizontalStackWithOverflow.
I have created ToolStripPanel control from code and added the following code:
Dim
tspTop1 As New ToolStripPanel()
tspTop1.Dock = DockStyle.Top
tspTop1.Join(ToolStrip1,0)
tspTop1.Join(ToolStrip2,0)
tspTop1.Orientation = Orientation.Horizontal
Me.Controls.Add(tspTop1)
These works fine but the problem is that it does not place both the toolstrips in single row.
It creates two rows and place both vertically.
I would like to be able to place multiple toolstrips on the same row in the
ToolstripPanel? I can't imagine that this isn't possible, but i cant find a
solution for this.
Does someone know how to do this?
Thanks & Regards,
Mac