Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Docking Pane
  New Posts New Posts RSS Feed - How to fill a form
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

How to fill a form

 Post Reply Post Reply
Author
Message
Albert1 View Drop Down
Groupie
Groupie
Avatar

Joined: 01 February 2007
Location: Italy
Status: Offline
Points: 66
Post Options Post Options   Thanks (0) Thanks(0)   Quote Albert1 Quote  Post ReplyReply Direct Link To This Post Topic: How to fill a form
    Posted: 22 February 2007 at 8:03am
Hello,
how could I fill a form using three panels without using other controls?.

This code leads to a strange right space (why???)



Private Sub Form_Load()
   
    Dim A As Pane, B As Pane, C As Pane
   
    Set A = DockingPaneManager.CreatePane(1, 400, 400, DockLeftOf, Nothing)
    A.Title = "Pane A"
   
    Set B = DockingPaneManager.CreatePane(2, 400, 400, DockRightOf, A)
    B.Title = "Pane B"
   
    Set C = DockingPaneManager.CreatePane(3, 400, 400, DockBottomOf, B)
    C.Title = "Pane C"

End Sub



Thank you
Back to Top
Jean View Drop Down
Senior Member
Senior Member
Avatar

Joined: 11 December 2006
Status: Offline
Points: 110
Post Options Post Options   Thanks (0) Thanks(0)   Quote Jean Quote  Post ReplyReply Direct Link To This Post Posted: 22 February 2007 at 9:01am
Did you try:
 DockingPaneManager.Options.HideClient = True
Back to Top
Albert1 View Drop Down
Groupie
Groupie
Avatar

Joined: 01 February 2007
Location: Italy
Status: Offline
Points: 66
Post Options Post Options   Thanks (0) Thanks(0)   Quote Albert1 Quote  Post ReplyReply Direct Link To This Post Posted: 22 February 2007 at 9:06am
Originally posted by Jean Jean wrote:

 DockingPaneManager.Options.HideClient = True


Great!!! It works as I wish. Thank you

(maybe a little hard to find this property)


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.