Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Report Control
  New Posts New Posts RSS Feed - How to add Context menu for report control
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

How to add Context menu for report control

 Post Reply Post Reply
Author
Message
telescient View Drop Down
Newbie
Newbie


Joined: 26 June 2006
Location: India
Status: Offline
Points: 3
Post Options Post Options   Thanks (0) Thanks(0)   Quote telescient Quote  Post ReplyReply Direct Link To This Post Topic: How to add Context menu for report control
    Posted: 26 June 2006 at 7:10am
Hello,
 
I am using Codejock 9.60 report control.can anyone  tell me how to give context menu to Axreport control
Back to Top
sserge View Drop Down
Moderator Group
Moderator Group


Joined: 01 December 2004
Status: Offline
Points: 1297
Post Options Post Options   Thanks (0) Thanks(0)   Quote sserge Quote  Post ReplyReply Direct Link To This Post Posted: 28 June 2006 at 10:34am
Hi,

catch available Right click events and add a context menu. Example available in the sample application:

Private Sub wndReportControl_RowRClick(ByVal Row As XtremeReportControl.IReportRow, ByVal Item As XtremeReportControl.IReportRecordItem)
    Debug.Print "Context Menu. Row = " & Row.Index
   
    'Display group popup if a group row is right-clicked
    If (Row.GroupRow) Then
        Call Me.PopupMenu(mnuGroupPopup)
    End If
End Sub


--
WBR,
Serge
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.