Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Docking Pane
  New Posts New Posts RSS Feed - [SOLVED] Grouped Pane Disappears
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

[SOLVED] Grouped Pane Disappears

 Post Reply Post Reply
Author
Message
Xander75 View Drop Down
Senior Member
Senior Member
Avatar

Joined: 26 April 2007
Status: Offline
Points: 353
Post Options Post Options   Thanks (0) Thanks(0)   Quote Xander75 Quote  Post ReplyReply Direct Link To This Post Topic: [SOLVED] Grouped Pane Disappears
    Posted: 24 August 2010 at 9:43am
Hi,

I am trying to group two panes together, which I have been able to do without and issues. However if I collapse the pane or start the grouped panes as hidden it only shows one of the two panes. I have searched the site and I have used the "Visual Studio" sample as a guide but I just can't seem to resolve the tab from disappearing.

The tab is still there, but its caption is blank. See the following screenshots.

Expanded Panes (both Tab titles display)


Collapsed Panes (notice the Edit Panes tab caption is gone, however it's still there when hovered over.)


Below is the code I have used to create several Panes:

    Dim PaneGrid As XtremeDockingPane.Pane, PaneFilter As XtremeDockingPane.Pane, PaneAdd As XtremeDockingPane.Pane
    Dim PaneEdit As XtremeDockingPane.Pane

    DockingPaneManager.SetCommandBars Me.CommandBars
   
    Set PaneGrid = DockingPaneManager.CreatePane(ID_PANE_DONATIONSGRID, 250, 250, DockTopOf, Nothing)
    With PaneGrid
        .Options = PaneNoCloseable + PaneNoDockable + PaneNoHideable
        .Title = "Charities"
    End With
       
    Set PaneFilter = DockingPaneManager.CreatePane(ID_PANE_DONATIONSFILTER, 250, Me.ScaleHeight, DockLeftOf, ID_PANE_DONATIONSGRID)
    With PaneFilter
        .Options = PaneNoCloseable + PaneNoDockable
        .Title = "Charity Filter"
    End With
   
    Set PaneAdd = DockingPaneManager.CreatePane(ID_PANE_DONATIONSADD, 330, Me.ScaleHeight, DockRightOf, Nothing)
    With PaneAdd
        .Options = PaneNoCloseable + PaneNoDockable
        .Title = "Add"
    End With
   
    Set PaneEdit = DockingPaneManager.CreatePane(ID_PANE_DONATIONSEDIT, 330, Me.ScaleHeight, DockLeftOf, Nothing)
    With PaneEdit
        .AttachTo PaneAdd
        .Options = PaneNoCloseable + PaneNoDockable
        .Title = "Edit"
    End With
   
    PaneAdd.Selected = True
    PaneAdd.Hide

    ' Important!!! Also make sure and click "Send To Back" on the DockingPaneManager object
    DockingPaneManager.SetCommandBars Me.CommandBars
    DockingPaneManager.Options.HideClient = True
    DockingPaneManager.PaintManager.HighlightActiveCaption = False
    DockingPaneManager.PaintManager.SplitterStyle = PaneSplitterSoft3D


Anyone have an idea as to why this is happening?



Product: Xtreme SuitePro (ActiveX) v15.3.1
Platform: Windows 7 64-bit (SP1) Professional Edition
Languages: C#.Net using Visual Studio 2012 & Visual Basic 6.0 (SP6)
Back to Top
Xander75 View Drop Down
Senior Member
Senior Member
Avatar

Joined: 26 April 2007
Status: Offline
Points: 353
Post Options Post Options   Thanks (0) Thanks(0)   Quote Xander75 Quote  Post ReplyReply Direct Link To This Post Posted: 24 August 2010 at 10:24am
I kept looking only to find the following post: http://forum.codejock.com/forum_posts.asp?TID=14056&KW=Tab+Caption

I really wish people would set the status of their postings to "*** RESOLVED ***" to show that it has indeed been responded to and resolved.
Product: Xtreme SuitePro (ActiveX) v15.3.1
Platform: Windows 7 64-bit (SP1) Professional Edition
Languages: C#.Net using Visual Studio 2012 & Visual Basic 6.0 (SP6)
Back to Top
Aaron View Drop Down
Senior Member
Senior Member
Avatar

Joined: 29 January 2008
Status: Offline
Points: 2192
Post Options Post Options   Thanks (0) Thanks(0)   Quote Aaron Quote  Post ReplyReply Direct Link To This Post Posted: 25 August 2010 at 2:38pm
Hi,
 
I once posted a thread http://forum.codejock.com/forum_posts.asp?TID=11225 and because I thought this would be necessary and kept "pushing", I got a lot of complaints of some members that I was pushing and a bully (and that from members which you hardly see in this forum, only to nag...) Well, I still feel that we should do more to keep this forum alive... Maybe you have more luck
 
Btw I appreciate you add something to your post (if solved) but it would be better if we would all add the same thing (look at above post) just to improve searching for solved issues as well.
 
   
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows XP (32bit) - SP 2
Language: Visual Basic 6.0

Zero replies is not an option....
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.172 seconds.