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 CoreFS.CA06; using Core.StlMes.Client.SaleComm; using Core.Mes.Client.Comm.Server; namespace Core.StlMes.Client.Plan.Order { public partial class dlgOrderAskDown : Form { OpeBase ob = new OpeBase(); /// /// 客户编号 /// private string pic = ""; public dlgOrderAskDown() { InitializeComponent(); } public dlgOrderAskDown(OpeBase ops,string pic) { this.ob = ops; this.pic = pic; InitializeComponent(); } private void dlgOrderAskDown_Load(object sender, EventArgs e) { ctrlFileDown1.FilePath = pic; } } }