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.Control { public partial class ComQueryPandProcOrd : UserControl { public ComQueryPandProcOrd() { InitializeComponent(); } private void ComQueryPandProcOrd_Load(object sender, EventArgs e) { ultraComboFinishEditor.SelectedIndex = 0; } private void checkBoxRollMonth_CheckedChanged(object sender, EventArgs e) { if (checkBoxRollMonth.Checked) { ultraDateTimeRollMonth.Enabled = true; } else { ultraDateTimeRollMonth.Enabled = false; } } private void checkBoxForReqORDER_NO_CheckedChanged(object sender, EventArgs e) { if (checkBoxForReqORDER_NO.Checked) { ctrlForQueryORDER_NO.Enabled = true; } else { ctrlForQueryORDER_NO.Enabled = false; } } } }