Quick splitter ?

  • Thread starter Thread starter inadsad
  • Start date Start date
I

inadsad

Good Day Group,

I have 3 panels on a form with 2 splitters. The .dock for each as
follows:

Panel1.dock = Left
Splitter1.dock = left
Panel2.dock = Fill
Splitter2.dock = left
Panel3.dock = Right

I can move splitter1 right & left between panel1 and panel2, but I'm
having trouble making
splitter2 work between panel2 and panel3. How can I make splitter1
and splitter2 work
correctly? Thanks in advance.

Ian
 
Good Day Group,

I have 3 panels on a form with 2 splitters. The .dock for each as
follows:

Panel1.dock = Left
Splitter1.dock = left
Panel2.dock = Fill
Splitter2.dock = left
Panel3.dock = Right

I can move splitter1 right & left between panel1 and panel2, but I'm
having trouble making
splitter2 work between panel2 and panel3. How can I make splitter1
and splitter2 work
correctly? Thanks in advance.

Ian

If you have VB 2005, try using 2 SplitContainers. Put one split
container on the form, then put the second one in the right (or left)
panel of the first SplitContainer.

If you don't have VB2005, try this:

Place panel1, dock left
Place splitter1, dock left
Place panel2. dock right
Place splitter2, dock right
Place panel3, dock fill

Chris
 
Back
Top