当我在WPF项目中打开一次报表时,我在退出时收到以下消息
{"Error while unloading appdomain. (Exception from HRESULT: 0x80131015)"}
堆栈跟踪:
at System.AppDomain.Unload(AppDomain domain)
at Microsoft.ReportingServices.RefCountedAppDomain.Dispose()
at Microsoft.Reporting.WinForms.LocalReport.ReportRuntimeSetupHandler.Release
我对vb.net很陌生,总是在寻找解决方案。我所涉及的表单是MainMenu、poCustom和rdlcForm。在我使用MDI Forms获得一个新外观之前,所有这些都运行良好。
我的“新”MainMenu现在正在将poCustom包含到一个Groupbox中。我搜索了代码
For Each f As Form In Application.OpenForms
If TypeOf f Is poCustom Then
f.Activate()
Return
End If
Next
Dim
我有这个代码。当我需要打印我的报表时,它会显示一个打印对话框。我想按代码选择我的打印名,并打印不显示PrintDialog的报表。 这是我的代码。 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Syste