Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Docking Pane
  New Posts New Posts RSS Feed - How can I move the focus of the panels?
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

How can I move the focus of the panels?

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

Joined: 29 March 2009
Location: Italy
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote foxpro2000 Quote  Post ReplyReply Direct Link To This Post Topic: How can I move the focus of the panels?
    Posted: 19 July 2011 at 11:22am
I would like to move the fire with the click of the mouse on the various panels and take control of the control reports. Now when I click on "Sopra Grid" does not turn blue as the "Griglia Grid" and the line of "control report" does not become blue. Help!
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: 19 July 2011 at 1:48pm
Hi,
 
When RC looses focus, the selected row will be grayed (even when Pane is selected again) If you need selection to be blue when selecting a Pane you could do this:
 
Private Sub wndDockingPane_Action(ByVal Action As XtremeDockingPane.DockingPaneAction, ByVal Pane As XtremeDockingPane.IPane, ByVal Container As XtremeDockingPane.IPaneActionContainer, Cancel As Boolean)
    Select Case Pane.ID
        Case 1
            If Action = PaneActionActivated Then Me.ReportControl1.SetFocus
        Case 2
            If Action = PaneActionActivated Then Me.ReportControl2.SetFocus
        Case 3
            If Action = PaneActionActivated Then Me.ReportControl3.SetFocus
    End Select
End Sub  
 
 
 
Hope this helps Wink
 
 
 
 
 
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.125 seconds.