using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; //using Sashulin; //using Sashulin.Core; //using Sashulin.common; using CoreFS.CA06;using Pur.Entity;using Pur.Entity; using Pur.Pop_upWindow; namespace Bpm { // : FrmPmsBase OpeBase ob, public partial class ProcInstDetail : FrmWebBase { string bpmProcInstId = ""; string bpmProcDefKey = ""; string bpmBusinessKey = ""; public ProcInstDetail(string bpmProcInstId) { InitializeComponent(); //System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls = false; //this.ob = ob; this.bpmProcInstId = bpmProcInstId; string bpmUrl = CoreFS.CA06.CoreCommon.coreCommon.UrlList["bpmserver"].Url; //chromeWebBrowser1.OpenUrl(bpmUrl + "/manager/bpm/procinst/view?procDefKey=" + bpmProcDefKey + "&businessKey=" + bpmBusinessKey + "&procInstId=" + bpmProcInstId); //chromeWebBrowser1.OpenUrl("http://localhost:8080/CoreBaseWeb/manager/bpm/procinst/view?procDefKey=&businessKey=&procInstId=" + bpmProcInstId); this.Url = bpmUrl + "/manager/bpm/procinst/view?procDefKey=" + bpmProcDefKey + "&businessKey=" + bpmBusinessKey + "&procInstId=" + bpmProcInstId; } public ProcInstDetail(string bpmProcDefKey, string bpmBusinessKey) { InitializeComponent(); System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls = false; //this.ob = ob; this.bpmProcDefKey = bpmProcDefKey; this.bpmBusinessKey = bpmBusinessKey; string bpmUrl = CoreFS.CA06.CoreCommon.coreCommon.UrlList["bpmserver"].Url; this.Url = bpmUrl + "/manager/bpm/procinst/view?procDefKey=" + bpmProcDefKey + "&businessKey=" + bpmBusinessKey + "&procInstId=" + bpmProcInstId; } private void ProcInstDetail_Load(object sender, EventArgs e) { } } }