如何在 Visual Studio 2010 中调试 XtraReports 报告甚至处理程序、脚本?

发布于 2024-11-27 06:39:49 字数 102 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

腻橙味 2024-12-04 06:39:49

使用下一版本的 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.

云仙小弟 2024-12-04 06:39:49

不幸的是,据我所知,代码“执行”的方式您无法在运行时调试它( http://www.devexpress.com/Support/Center/p/Q247866.aspx

我调试我的方法是简单地将我的代码放在 Try Catch 中,然后记录异常以及任何内部异常以及 StackTrace。这样我就可以获得有关函数失败位置的信息。

这是我的扩展方法的示例,用于获取完整的异常详细信息

<Extension()>
Public Function ToFullMessage(ByVal ex As Exception) As String
    Dim result As String
    result = ex.Message & Environment.NewLine & ex.StackTrace
    If ex.InnerException IsNot Nothing Then
        result &= String.Format("{0}{0}Inner Exception{0}{1}", Environment.NewLine, ex.InnerException.ToFullMessage)
    End If
    Return result
End Function

希望这有帮助

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

<Extension()>
Public Function ToFullMessage(ByVal ex As Exception) As String
    Dim result As String
    result = ex.Message & Environment.NewLine & ex.StackTrace
    If ex.InnerException IsNot Nothing Then
        result &= String.Format("{0}{0}Inner Exception{0}{1}", Environment.NewLine, ex.InnerException.ToFullMessage)
    End If
    Return result
End Function

Hope this helps

芸娘子的小脾气 2024-12-04 06:39:49

您可以将其添加到您的 web.config 文件中:

<system.diagnostics>
  <switches>
    <add name="AllowDebugXtraReportScripts" value="true"/>
  </switches>
</system.diagnostics>

将其添加到

<configuration>

但下方

<configSections>

You can add this to your web.config file:

<system.diagnostics>
  <switches>
    <add name="AllowDebugXtraReportScripts" value="true"/>
  </switches>
</system.diagnostics>

Add it within

<configuration>

but below

<configSections>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文