Attached |
Post Reply |
Author | |
alexgcm
Newbie Joined: 01 November 2011 Status: Offline Points: 2 |
Post Options
Thanks(0)
Posted: 01 November 2011 at 1:05pm |
Hi there,
I'm using VB6 and ActiveX CodeJack 13.4.2 I'm having a little problem to positione a panel where I want it to be. The below image shows what I would like to do (a) and what I got (b) or (c). After creating the panel #1, I create the #2 panel. The problem is simple: how to create #2 panel in such a way that it would be neighbour of #1 (RightOf) but not below it? To create panel #2, I use somehing like this: Set Panel2 = DockingPaneManager.CreatePane(2, 220, 500, [direction,] [neighbour])I have already tried all combinations of [direction] and [neighbour]... no success! Could you help me? Thanks, Alex |
|
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
Dim A As Pane, B As Pane, C As Pane, D As Pane, E As Pane, F As Pane, G As Pane Set A = DockingPaneManager.CreatePane(1, 200, 120, DockBottomOf) A.Title = "Pane A" Set B = DockingPaneManager.CreatePane(2, 200, 120, DockLeftOf) B.Title = "Pane B"
|
|
alexgcm
Newbie Joined: 01 November 2011 Status: Offline Points: 2 |
Post Options
Thanks(0)
|
Thank you, SuperMario!
I had already realized that it was a question of the order of panes creation. |
|
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 |