โหลดเรียบร้อยแล้วครับ ที่ไม่มีเฉพาะตอนทำใส่โปรเจ็ค windows Form Application แต่ท่าทำใส่โปรเจ็ค CrystalReportsApplication ก็จะขึ้นเครื่องมือให้ทำปปกติครับ
Private rpt As ReportDocument
Protected Sub Page_Load(sender As Object, e As EventArgs)
rptCrystal.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None
rpt = New ReportDocument()
rpt.Load(Server.MapPath("report.rpt"))
rpt.SetParameterValue("sParameters", "Value")
Me.rptCrystal.ReportSource = rpt
End Sub
Protected Overrides Sub OnUnload(e As EventArgs)
MyBase.OnUnload(e)
rpt.Close()
rpt.Dispose()
GC.Collect()
End Sub