![]() |
[SOLVED] No Contextmenu for selected Rows possible |
Post Reply
|
| Author | |
Jebo
Senior Member
Joined: 27 October 2005 Location: Germany Status: Offline Points: 318 |
Post Options
Thanks(0)
Quote Reply
Topic: [SOLVED] No Contextmenu for selected Rows possiblePosted: 15 July 2011 at 12:07pm |
|
It's not possible to select Rows and click the right Mouse Button for a Context menu
![]() Please try the folowing Code with v13.4.2 and with v15.0.2 (or 15.1.0 Beta), select two or more Rows and click right Mouse Button! You will see, in v13.4.2 it will work. In v15.x NOT! Option Explicit Private Sub Form_Load() With ReportControl1 With .Columns .Add 0, "AAA", 100, False .Add 1, "BBB", 50, False .Add 2, "CCC", 80, False End With Dim Record As ReportRecord, i As Long For i = 1 To 50 Set Record = .Records.Add() Record.AddItem CStr(i) Record.AddItem CStr(i) Record.AddItem CStr(i) Next .Populate End With End Sub Private Sub ReportControl1_RowRClick(ByVal Row As XtremeReportControl.IReportRow, ByVal Item As XtremeReportControl.IReportRecordItem) MsgBox "Seleted Rows: " & ReportControl1.SelectedRows.Count End Sub |
|
|
[Sig removed by Admin: Signature can't exceed 40GB]
|
|
![]() |
|
ABuenger
Newbie
Joined: 02 February 2006 Status: Offline Points: 1075 |
Post Options
Thanks(0)
Quote Reply
Posted: 19 July 2011 at 6:35pm |
|
Codejock support
|
|
![]() |
|
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 |