Filliling window |
Post Reply |
Author | |
TheHyphen
Newbie Joined: 11 October 2006 Location: Germany Status: Offline Points: 1 |
Post Options
Thanks(0)
Posted: 11 October 2006 at 4:11am |
Hi !
I am new to this forum and couldn't find an answer to my problem, so please apologize if that question has already been asked.
I have a window which should hold 3 panes, a navigation pane on the left, a toolbar and a listview on the right. I docked the navigation pane to the left of the window ( using null as neighbour ) and the toolbar to the top. The listview pane is being docked to the right of the navigationpane. So far so good. My problem is, that between the toolbar and other both panes there is a splitbar active which enables me to vertically resize the navigation pane and the listview pane, how can I prevent this ? Second question, the listview pane does not use the complete space to the right, any way do automate this ?
TIA
|
|
Regards,
Meinhard |
|
jcollier
Senior Member Joined: 15 February 2006 Status: Offline Points: 250 |
Post Options
Thanks(0)
|
I'm not sure about the first part of your question, but the second part you can try this after setting up your docking panes:
Dim a As Pane Dim b As Pane Set a = DockingPane.CreatePane(1, 0, Me.Height * 0.8, DockBottomOf, Nothing) Set b = DockingPane.CreatePane(2, 0, Me.Height * 0.35, DockBottomOf, a) DockingPaneControl.Options.HideClient=True |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |