如何在 Visual Studio 2010 中调试 XtraReports 报告甚至处理程序、脚本?
DevExpress 的 XtraReports 添加了事件处理程序,例如 beforeprint。在某些脚本窗口中。我无法在该窗口中添加断点。如何调试这段代码?代码位于 resx 文件中。
DevExpress's XtraReports adds event handlers, like beforeprint. in some script window. I can't add breakpoints in that window. How does one debug this code? The code is in a resx file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用下一版本的 XtraReports Suite (v2011 vol 2),可以使用 Visual Studio 调试脚本。有关更多详细信息,请参阅 使用 Visual Studio 在 XtraReports 中进行脚本调试。
With the next version of the XtraReports Suite (v2011 vol 2) it has become possible to debug scripts using Visual Studio. For more details, see Using Visual Studio for Script Debugging in XtraReports.
不幸的是,据我所知,代码“执行”的方式您无法在运行时调试它( http://www.devexpress.com/Support/Center/p/Q247866.aspx)
我调试我的方法是简单地将我的代码放在 Try Catch 中,然后记录异常以及任何内部异常以及 StackTrace。这样我就可以获得有关函数失败位置的信息。
这是我的扩展方法的示例,用于获取完整的异常详细信息
希望这有帮助
Unforunately, AFAIK the way that the code is "executed" you cannot debug it at runtime (http://www.devexpress.com/Support/Center/p/Q247866.aspx)
The way I debug mine is by simply placing my code inside a Try Catch, then log the Exception along with any Inner Exceptions as well as the StackTrace. This way I can get information on where the function failed.
This is an example of my Extension method for getting the full exception detail
Hope this helps
您可以将其添加到您的 web.config 文件中:
将其添加到
但下方
You can add this to your web.config file:
Add it within
but below