using CoreFS.CA06; 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; namespace Core.StlMes.Client.PlnSaleOrd { public partial class BaseForm : Form { private OpeBase ob = new OpeBase(); // private String _orderAddDesc; public BaseForm() { InitializeComponent(); } public BaseForm(OpeBase ops, String orderAddDesc) { InitializeComponent(); this.ob = ops; //_orderAddDesc = orderAddDesc; ultraLabel1.Text = orderAddDesc; } } }