| 1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Windows.Forms;
- using CoreFS.CA06;
- namespace Core.StlMes.Client.LgResMgt.Mcms
- {
- /// <summary>
- /// 报表公用界面
- /// </summary>
- public partial class FrmRepBrower : FrmBase
- {
- /// <summary>
- /// 报表地址
- /// </summary>
- private string strUrl = "";//报表地址
- public FrmRepBrower(OpeBase op, string url)
- {
- InitializeComponent();
- strUrl = url;
- }
- private void FrmRepExcel_Load(object sender, EventArgs e)
- {
- this.webBrowser1.Url = new Uri(strUrl);
- this.webBrowser1.ScriptErrorsSuppressed = true;//屏蔽脚本错误
- }
- private void FrmRepExcel_FormClosing(object sender, FormClosingEventArgs e)
- {
- webBrowser1.Dispose();
- }
- }
- }
|