开发者

Crystal Report : How to stop opening new window on double-click of the group section?

开发者 https://www.devze.com 2023-02-15 16:32 出处:网络
I have a report (on c# winForm) with some group section(s). Now in the preview mode, when the group header is double-clicked, the group and its inner开发者_如何学编程 contents open up in a separate ta

I have a report (on c# winForm) with some group section(s). Now in the preview mode, when the group header is double-clicked, the group and its inner开发者_如何学编程 contents open up in a separate tab in the preview.

I shall like to stop this behaviour and disable the double-click effect. How can I do it?


You can prevent this from happening by disabling the option to drill down.

this.crystalReportViewer1.EnableDrillDown = false;

When double clicking the Group Header it will no longer open in a new tab.

Note: Tested using Visual Studio 2008 and Crystal Reports XI

0

精彩评论

暂无评论...
验证码 换一张
取 消