| 1234567891011121314151617181920212223242526272829 |
- using CoreFS.CA06;
- using System;
- using System.Windows.Forms;
- namespace Core.StlMes.Client.Judge.Forms
- {
- public partial class FrmOrderRepExcel : FrmBase
- {
- string strurl = "";//URL
- public FrmOrderRepExcel(OpeBase op, string url)
- {
- strurl = url;
- InitializeComponent();
- }
- private void FrmOrderRepExcel_Load(object sender, EventArgs e)
- {
- webBrowser1.Url = new Uri(strurl);
- this.webBrowser1.ScriptErrorsSuppressed = true;//屏蔽脚本错误
- }
- private void FrmOrderRepExcel_FormClosing(object sender, FormClosingEventArgs e)
- {
- webBrowser1.Dispose();
- }
- }
- }
|