| 123456789101112131415161718192021222324252627282930313233343536373839 |
- 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();
- /// <summary>
- /// 客户编号
- /// </summary>
- 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;
- }
- }
- }
|