Esempio n. 1
0
        public void Reset()
        {
            firstName.Text = String.Empty;
            lastName.Text  = String.Empty;

            towerNames.Items.Clear();
            foreach (string towerName in towers)
            {
                towerNames.Items.Add(towerName);
            }
            towerNames.Text = towerNames.Items[0] as string;

            methods.Items.Clear();
            CheckBox method;

            foreach (string methodName in ringingMethods)
            {
                method         = new CheckBox();
                method.Margin  = new Thickness(0, 0, 0, 10);
                method.Content = methodName;
                methods.Items.Add(method);
            }

            isCaptain.IsChecked = false;

            novice.IsChecked = true;

            System.Windows.Forms.DateTimePicker memberDate = hostMemberSince.Child as System.Windows.Forms.DateTimePicker;
            memberDate.Value = DateTime.Today;
        }
Esempio n. 2
0
        private void saveMember_Click(object sender, RoutedEventArgs e)
        {
            SaveFileDialog saveDialog = new SaveFileDialog();

            saveDialog.DefaultExt       = "txt";
            saveDialog.AddExtension     = true;
            saveDialog.FileName         = "Members";
            saveDialog.InitialDirectory = @"C:\Users\Student\Documents\";
            saveDialog.OverwritePrompt  = true;
            saveDialog.Title            = "Bell Ringers";
            saveDialog.ValidateNames    = true;

            if (saveDialog.ShowDialog().Value)
            {
                StreamWriter writer = new StreamWriter(saveDialog.FileName);
                writer.WriteLine("First Name: {0}", firstName.Text);
                writer.WriteLine("Last Name: {0}", lastName.Text);
                writer.WriteLine("Tower: {0}", towerNames.Text);
                writer.WriteLine("Captain: {0}", isCaptain.IsChecked.ToString());
                System.Windows.Forms.DateTimePicker memberDate = hostMemberSince.Child as System.Windows.Forms.DateTimePicker;
                writer.WriteLine("Member Since: {0}", memberDate.Value.ToString());
                writer.WriteLine("Methods: ");
                foreach (CheckBox cb in methods.Items)
                {
                    if (cb.IsChecked.Value)
                    {
                        writer.WriteLine(cb.Content.ToString());
                    }
                }
                writer.Close();

                MessageBox.Show("Member details saved", "Saved");
            }
        }
Esempio n. 3
0
 public day(System.Windows.Forms.DateTimePicker arg0, System.Windows.Forms.DateTimePicker arg1, System.Windows.Forms.DateTimePicker arg2, System.Windows.Forms.DateTimePicker arg3)
 {
     start      = arg0;
     lunchStart = arg1;
     lunchEnd   = arg2;
     end        = arg3;
 }
Esempio n. 4
0
        void CalendarControl_Loaded(object sender, RoutedEventArgs e)
        {
            DateTime         dateTime = DateTime.Now;
            WindowsFormsHost host     = new WindowsFormsHost();

            System.Windows.Forms.DateTimePicker calendar = new System.Windows.Forms.DateTimePicker();
            host.Child = calendar;
            this.CalendarContain.Children.Add(host);
            WindowsFormsHost hourhost = new WindowsFormsHost();

            System.Windows.Forms.TextBox hourTextBox = new System.Windows.Forms.TextBox();
            hourTextBox.LostFocus += new EventHandler(hourTextBox_LostFocus);
            hourTextBox.Tag        = "hour";
            hourTextBox.Text       = dateTime.Hour.ToString();
            hourhost.Child         = hourTextBox;
            this.HourContain.Children.Add(hourhost);

            WindowsFormsHost minutehost = new WindowsFormsHost();

            System.Windows.Forms.TextBox minuteTextBox = new System.Windows.Forms.TextBox();
            minuteTextBox.LostFocus += new EventHandler(minuteTextBox_LostFocus);
            minuteTextBox.Text       = dateTime.Minute.ToString();
            minuteTextBox.Tag        = "minute";
            minutehost.Child         = minuteTextBox;
            this.MinuteContain.Children.Add(minutehost);
        }
Esempio n. 5
0
        public DateTime GetTime()
        {
            DateTime         dateTime     = DateTime.Now;
            WindowsFormsHost calendarhost = (WindowsFormsHost)this.CalendarContain.Children[0];

            System.Windows.Forms.DateTimePicker dateTimePicker = (System.Windows.Forms.DateTimePicker)calendarhost.Child;
            int year  = dateTimePicker.Value.Year;
            int month = dateTimePicker.Value.Month;
            int day   = dateTimePicker.Value.Day;

            if (!Validate())
            {
                return(dateTime);
            }
            WindowsFormsHost hourhost = (WindowsFormsHost)this.HourContain.Children[0];

            System.Windows.Forms.TextBox hourText = (System.Windows.Forms.TextBox)hourhost.Child;
            int hour = Convert.ToInt32(hourText.Text);
            WindowsFormsHost minutehost = (WindowsFormsHost)this.MinuteContain.Children[0];

            System.Windows.Forms.TextBox minuteText = (System.Windows.Forms.TextBox)minutehost.Child;
            int minute = Convert.ToInt32(minuteText.Text);

            dateTime = new DateTime(year, month, day, hour, minute, 0);
            return(dateTime);
        }
Esempio n. 6
0
        //string[] time;
        //int[] speed1, speed2, speed3, speed4, speed5, speed6;
        //string[] nighttime;
        //int[] nightspeed1, nightspeed2, nightspeed3, nightspeed4, nightspeed5, nightspeed6;
        /// <summary>
        /// 速率的计算
        public static void Speed(System.Windows.Forms.DateTimePicker dateTimePicker, string machine, string[] time, int[] speed1, int[] speed2, int[] speed3, int[] speed4, int[] speed5, int[] speed6
                                 , string[] nighttime, int[] nightspeed1, int[] nightspeed2, int[] nightspeed3, int[] nightspeed4, int[] nightspeed5, int[] nightspeed6)
        {
            string curdate    = dateTimePicker.Text.ToString();
            string beforedate = dateTimePicker.Value.AddDays(-1).ToString("yyyy-MM-dd");
            string daysql     = "select Speed1,Speed2,Speed3,Speed4,Speed5,Speed6,Date from " + machine + " where Date between" + "'" + beforedate + " 07:30:00" + "'"
                                + " and " + "'" + beforedate + " 19:30:00" + "'";
            string nightsql = "select Speed1,Speed2,Speed3,Speed4,Speed5,Speed6,Date from " + machine + " where Date between" + "'" + beforedate + " 19:30:00" + "'"
                              + " and " + "'" + curdate + " 07:30:00" + "'";
            MyDatabase myDatabase = new MyDatabase();
            DataSet    day_ds     = myDatabase.getDataSet(daysql, "dayDS");
            DataSet    night_ds   = myDatabase.getDataSet(nightsql, "nightDS");

            int daycount;
            int nightcount;

            daycount   = day_ds.Tables[0].Rows.Count;
            nightcount = night_ds.Tables[0].Rows.Count;

            //speed1 = new int[daycount];
            //speed2 = new int[daycount];
            //speed3 = new int[daycount];
            //speed4 = new int[daycount];
            //speed5 = new int[daycount];
            //speed6 = new int[daycount];
            //time = new string[daycount];
            //nightspeed1 = new int[nightcount];
            //nightspeed2 = new int[nightcount];
            //nightspeed3 = new int[nightcount];
            //nightspeed4 = new int[nightcount];
            //nightspeed5 = new int[nightcount];
            //nightspeed6 = new int[nightcount];
            //nighttime = new string[nightcount];

            int i = 0, j = 0, k = 0, l = 0, m = 0, n = 0, d = 0;
            int i1 = 0, j1 = 0, k1 = 0, l1 = 0, m1 = 0, n1 = 0, d1 = 0;

            foreach (DataRow row in day_ds.Tables[0].Rows)  //遍历所有行
            {
                speed1[i++] = int.Parse(row[0].ToString()); //row[0]表示第一列
                speed2[j++] = int.Parse(row[1].ToString());
                speed3[k++] = int.Parse(row[2].ToString());
                speed4[l++] = int.Parse(row[3].ToString());
                speed5[m++] = int.Parse(row[4].ToString());
                speed6[n++] = int.Parse(row[5].ToString());
                time[d++]   = DateTime.Parse(row[6].ToString()).ToString("HH:mm");
            }
            foreach (DataRow row in night_ds.Tables[0].Rows)      //遍历所有行
            {
                nightspeed1[i1++] = int.Parse(row[0].ToString()); //row[0]表示第一列
                nightspeed2[j1++] = int.Parse(row[1].ToString());
                nightspeed3[k1++] = int.Parse(row[2].ToString());
                nightspeed4[l1++] = int.Parse(row[3].ToString());
                nightspeed5[m1++] = int.Parse(row[4].ToString());
                nightspeed6[n1++] = int.Parse(row[5].ToString());
                nighttime[d1++]   = DateTime.Parse(row[6].ToString()).ToString("HH:mm");
            }
        }
Esempio n. 7
0
 public bW1Arg(System.Windows.Forms.DateTimePicker DPickerFrom, System.Windows.Forms.DateTimePicker DPickerTo)
 {
     IsReIndex    = false;
     DFromNaN     = DPickerFrom.Value;
     DFromChecked = DPickerFrom.Checked;
     DToNaN       = DPickerTo.Value;
     DToChecked   = DPickerTo.Checked;
     MailFolder   = MyConfig.GetMailFolder();
 }
Esempio n. 8
0
 public override void InitializeComponent()
 {
     base.InitializeComponent();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DateDataControl));
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnDelete
     //
     this.btnDelete.FlatAppearance.BorderSize = 0;
     //
     // downBtn
     //
     this.downBtn.FlatAppearance.BorderSize = 0;
     //
     // upBtn
     //
     this.upBtn.FlatAppearance.BorderSize = 0;
     //
     // splitContainer1
     //
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.dateTimePicker1);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "button_down_9x9.gif");
     this.imageList1.Images.SetKeyName(1, "button_up_9x9.gif");
     this.imageList1.Images.SetKeyName(2, "button_down_dis_9x9.gif");
     this.imageList1.Images.SetKeyName(3, "button_up_dis_9x9.gif");
     this.imageList1.Images.SetKeyName(4, "delete_9x9.png");
     this.imageList1.Images.SetKeyName(5, "edit_9x9.png");
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dateTimePicker1.Location = new System.Drawing.Point(0, 0);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(170, 20);
     this.dateTimePicker1.TabIndex = 0;
     //
     // DateDataControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.Name = "DateDataControl";
     this.Controls.SetChildIndex(this.splitContainer1, 0);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Default ctor
        /// </summary>
        public SettingsWindow()
        {
            InitializeComponent();

            // get timer from WinFormHost
            timePicker = (System.Windows.Forms.DateTimePicker)picker.Child;

            // set default value 01/01/2000/00:20:00
            timePicker.Value = new DateTime(2000, 1, 1, 0, 20, 0);
        }
Esempio n. 10
0
 private DateTime getDate(System.Windows.Forms.DateTimePicker datePicker)
 {
     if (datePicker.Checked == false)
     {
         return(new DateTime(1, 1, 1));
     }
     else
     {
         return(datePicker.Value);
     }
 }
Esempio n. 11
0
        /// <summary>Sets the MinDate, MaxDate, and Value members all to 'kind'.</summary>
        public static void To(this System.Windows.Forms.DateTimePicker dtp, DateTimeKind kind)
        {
            var min = dtp.MinDate.To(kind);
            var max = dtp.MaxDate.To(kind);
            var val = dtp.Value.To(kind);

            if (dtp is DateTimePicker rdtp)
            {
                rdtp.Kind = kind;
            }
            dtp.Set(val, min, max);
        }
Esempio n. 12
0
 public static void nullDateTimePick(System.Windows.Forms.DateTimePicker dateTimePicker, DateTime date)
 {
     if (date.ToString("yyyy-MM-dd").Equals("0001-01-01"))
     {
         dateTimePicker.Checked      = false;
         dateTimePicker.CustomFormat = "N/A";
     }
     else
     {
         dateTimePicker.CustomFormat = "yyyy-MM-dd";
         dateTimePicker.Value        = date;;
     }
 }
Esempio n. 13
0
        public void SetTime(DateTime value)
        {
            WindowsFormsHost calendarhost = (WindowsFormsHost)this.CalendarContain.Children[0];

            System.Windows.Forms.DateTimePicker dateTimePicker = (System.Windows.Forms.DateTimePicker)calendarhost.Child;
            dateTimePicker.Value = value;
            WindowsFormsHost hourhost = (WindowsFormsHost)this.HourContain.Children[0];

            System.Windows.Forms.TextBox hourText = (System.Windows.Forms.TextBox)hourhost.Child;
            hourText.Text = value.Hour.ToString();
            WindowsFormsHost minutehost = (WindowsFormsHost)this.MinuteContain.Children[0];

            System.Windows.Forms.TextBox minuteText = (System.Windows.Forms.TextBox)minutehost.Child;
            minuteText.Text = value.Minute.ToString();
        }
Esempio n. 14
0
 [System.Diagnostics.DebuggerStepThrough()] private void InitializeComponent()
 {
     this.chkEmpty         = new System.Windows.Forms.CheckBox();
     this.txtReadOnlyValue = new System.Windows.Forms.TextBox();
     this.dtsValue         = new System.Windows.Forms.DateTimePicker();
     this.SuspendLayout();
     //
     //chkEmpty
     //
     this.chkEmpty.CheckAlign      = System.Drawing.ContentAlignment.MiddleRight;
     this.chkEmpty.Location        = new System.Drawing.Point(0, 0);
     this.chkEmpty.Name            = "chkEmpty";
     this.chkEmpty.Size            = new System.Drawing.Size(56, 20);
     this.chkEmpty.TabIndex        = 0;
     this.chkEmpty.Text            = "Empty";
     this.chkEmpty.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.chkEmpty.CheckedChanged += new System.EventHandler(this.chkEmpty_CheckedChanged);
     //
     //txtReadOnlyValue
     //
     this.txtReadOnlyValue.Enabled  = false;
     this.txtReadOnlyValue.Location = new System.Drawing.Point(0, 0);
     this.txtReadOnlyValue.Name     = "txtReadOnlyValue";
     this.txtReadOnlyValue.ReadOnly = true;
     this.txtReadOnlyValue.Size     = new System.Drawing.Size(264, 20);
     this.txtReadOnlyValue.TabIndex = 2;
     this.txtReadOnlyValue.Text     = "";
     this.txtReadOnlyValue.Visible  = false;
     //
     //dtsValue
     //
     this.dtsValue.Format       = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtsValue.Location     = new System.Drawing.Point(88, 0);
     this.dtsValue.Name         = "dtsValue";
     this.dtsValue.Size         = new System.Drawing.Size(176, 20);
     this.dtsValue.TabIndex     = 3;
     this.dtsValue.CloseUp     += new System.EventHandler(this.dtsValue_CloseUp);
     this.dtsValue.TextChanged += new System.EventHandler(this.dtsValue_TextChanged);
     //
     //DateTimeUC
     //
     this.Controls.Add(this.dtsValue);
     this.Controls.Add(this.chkEmpty);
     this.Controls.Add(this.txtReadOnlyValue);
     this.Name = "DateTimeUC";
     this.Size = new System.Drawing.Size(264, 20);
     this.ResumeLayout(false);
 }
Esempio n. 15
0
        /// <summary>
        /// 获取下一个日期(周日至周四 加一天,周五之周六 加三天)
        /// </summary>
        /// <param name="DateContrl">时间控件</param>
        /// <param name="DateFort">时间格式</param>
        /// <returns></returns>
        public string GetNextDate(System.Windows.Forms.DateTimePicker DateContrl, string DateFort)
        {
            int Dayofweek;

            switch (DateTime.Now.AddDays(1).DayOfWeek)
            {
            case DayOfWeek.Friday:
                Dayofweek = 5;
                break;

            case DayOfWeek.Monday:
                Dayofweek = 1;
                break;

            case DayOfWeek.Saturday:
                Dayofweek = 6;
                break;

            case DayOfWeek.Sunday:
                Dayofweek = 7;
                break;

            case DayOfWeek.Thursday:
                Dayofweek = 4;
                break;

            case DayOfWeek.Tuesday:
                Dayofweek = 2;
                break;

            case DayOfWeek.Wednesday:
                Dayofweek = 3;
                break;

            default:
                Dayofweek = 1;
                break;
            }
            if (Dayofweek == 5 || Dayofweek == 6)
            {
                DateContrl.Value = DateTime.Now.AddDays(3);
            }
            else
            {
                DateContrl.Value = DateTime.Now.AddDays(1);
            }
            return(DateContrl.Value.ToString(DateFort));
        }
Esempio n. 16
0
        /// <summary>
        /// StartDateTime 设置开始日期
        /// </summary>
        /// <param name="dgv"></param>
        public static void StartDateTime(System.Windows.Forms.DateTimePicker dtp)
        {
            string configFile  = System.Windows.Forms.Application.StartupPath.ToString() + "\\Config.ini";
            string advanceDays = Util.INIOperationClass.INIGetStringValue(configFile, "UserSet", "AdvanceDays", null);
            int    idvanceDays = 1; // Int32.Parse(advanceDays);

            try
            {
                idvanceDays = Int32.Parse(advanceDays);
            }
            catch
            {
                idvanceDays = 1;
            }
            dtp.Value = DateTime.Now.AddDays(-idvanceDays);
        }
Esempio n. 17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     absoluteTimeCtrl_ = new System.Windows.Forms.DateTimePicker();
     timeTypeCb_       = new System.Windows.Forms.ComboBox();
     offsetTb_         = new System.Windows.Forms.TextBox();
     SuspendLayout();
     //
     // AbsoluteTimeCTRL
     //
     absoluteTimeCtrl_.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     absoluteTimeCtrl_.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     absoluteTimeCtrl_.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     absoluteTimeCtrl_.Location     = new System.Drawing.Point(76, 0);
     absoluteTimeCtrl_.Name         = "absoluteTimeCtrl_";
     absoluteTimeCtrl_.Size         = new System.Drawing.Size(132, 20);
     absoluteTimeCtrl_.TabIndex     = 0;
     //
     // TimeTypeCB
     //
     timeTypeCb_.Location              = new System.Drawing.Point(0, 0);
     timeTypeCb_.Name                  = "timeTypeCb_";
     timeTypeCb_.Size                  = new System.Drawing.Size(72, 21);
     timeTypeCb_.TabIndex              = 1;
     timeTypeCb_.Text                  = "Absolute";
     timeTypeCb_.SelectedIndexChanged += new System.EventHandler(TimeTypeCB_SelectedIndexChanged);
     //
     // OffsetTB
     //
     offsetTb_.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     offsetTb_.Location = new System.Drawing.Point(76, 0);
     offsetTb_.Name     = "offsetTb_";
     offsetTb_.Size     = new System.Drawing.Size(132, 20);
     offsetTb_.TabIndex = 2;
     offsetTb_.Text     = "+50MO-6D+1S";
     //
     // TimeCtrl
     //
     Controls.Add(timeTypeCb_);
     Controls.Add(absoluteTimeCtrl_);
     Controls.Add(offsetTb_);
     Name = "TimeCtrl";
     Size = new System.Drawing.Size(208, 24);
     ResumeLayout(false);
 }
Esempio n. 18
0
 public void InitDateTime(string as_datetime)
 {
     try
     {
         System.Windows.Forms.DateTimePicker DateControl = DateFormsHostBegin.Child as System.Windows.Forms.DateTimePicker;
         System.Windows.Forms.DateTimePicker TimeControl = TimeFormsHostBegin.Child as System.Windows.Forms.DateTimePicker;
         if (as_datetime == string.Empty || as_datetime.Length == 0)
         {
             as_datetime = DateTime.Now.ToString();
         }
         DateControl.Value = Convert.ToDateTime(as_datetime);
         TimeControl.Value = Convert.ToDateTime(as_datetime);
     }
     catch (Exception ex)
     {
         //ShowExceptionMessage(ex.Message);
     }
 }
 public static void ApplyDefault(ref System.Windows.Forms.DateTimePicker dateTimePicker, DateTime?defaultValue, DateTime?backupValue = null)
 {
     if (null == defaultValue)
     {
         if (null == backupValue)
         {
             dateTimePicker.Value = DateTime.Now;
         }
         else
         {
             dateTimePicker.Value = backupValue.Value;
         }
     }
     else
     {
         dateTimePicker.Value = defaultValue.Value;
     }
 }
Esempio n. 20
0
        void CalendarControl_Loaded(object sender, RoutedEventArgs e)
        {
            DateTime dateTime = DateTime.Now;
            WindowsFormsHost host = new WindowsFormsHost();
            System.Windows.Forms.DateTimePicker calendar = new System.Windows.Forms.DateTimePicker();
            host.Child = calendar;
            this.CalendarContain.Children.Add(host);
            WindowsFormsHost hourhost = new WindowsFormsHost();
            System.Windows.Forms.TextBox hourTextBox = new System.Windows.Forms.TextBox();
            hourTextBox.LostFocus += new EventHandler(hourTextBox_LostFocus);
            hourTextBox.Tag = "hour";
            hourTextBox.Text = dateTime.Hour.ToString();
            hourhost.Child = hourTextBox;
            this.HourContain.Children.Add(hourhost);

            WindowsFormsHost minutehost = new WindowsFormsHost();
            System.Windows.Forms.TextBox minuteTextBox = new System.Windows.Forms.TextBox();
            minuteTextBox.LostFocus += new EventHandler(minuteTextBox_LostFocus);
            minuteTextBox.Text = dateTime.Minute.ToString();
            minuteTextBox.Tag = "minute";
            minutehost.Child = minuteTextBox;
            this.MinuteContain.Children.Add(minutehost);
        }
        /// <summary>
        /// Inicializa uma nova instância da classe <see cref="Spartacus.Forms.Datetimepicker"/>.
        /// </summary>
        /// <param name="p_parent">Container pai.</param>
        /// <param name="p_label">Texto exibido no rótulo.</param>
        /// <param name="p_format">Formato a ser exibido no DateTimePicker.</param>
        /// <param name="p_proportion">Proporção entre o Label e o DateTimePicker.</param>
        public Datetimepicker(Spartacus.Forms.Container p_parent, string p_label, string p_format, int p_proportion)
            : base(p_parent)
        {
            this.v_control = new System.Windows.Forms.Panel();

            this.SetWidth(p_parent.v_width);
            this.SetHeight(40);
            this.SetLocation(0, p_parent.v_offsety);

            this.v_label          = new System.Windows.Forms.Label();
            this.v_label.Text     = p_label;
            this.v_label.Location = new System.Drawing.Point(10, 10);
            this.v_label.Parent   = this.v_control;

            this.v_proportion = p_proportion;

            this.v_datetimepicker              = new System.Windows.Forms.DateTimePicker();
            this.v_datetimepicker.Location     = new System.Drawing.Point((int)(this.v_width * ((double)this.v_proportion / (double)100)), 5);
            this.v_datetimepicker.Width        = this.v_width - 10 - this.v_datetimepicker.Location.X;
            this.v_datetimepicker.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.v_datetimepicker.CustomFormat = p_format;
            this.v_datetimepicker.Parent       = this.v_control;
        }
Esempio n. 22
0
        /// <summary>
        /// Set the MinDate, MaxDate, and Value members all at once, avoiding out of range exceptions.
        /// val, min, max must all have a specified 'Kind' value.
        /// Values are clamped to the valid range for a DateTimePicker</summary>
        public static void Set(this System.Windows.Forms.DateTimePicker dtp, DateTime val, DateTime min, DateTime max)
        {
            if (val.Kind == DateTimeKind.Unspecified)
            {
                throw new Exception("DateTimePicker Value has an unspecified time-zone");
            }
            if (min.Kind == DateTimeKind.Unspecified)
            {
                throw new Exception("DateTimePicker Minimum Value has an unspecified time-zone");
            }
            if (max.Kind == DateTimeKind.Unspecified)
            {
                throw new Exception("DateTimePicker Maximum Value has an unspecified time-zone");
            }
            if (min > max)
            {
                throw new Exception("Minimum date/time value is greater than the maximum date/time value");
            }
            if (val != val.Clamp(min, max))
            {
                throw new Exception("Date/time value is not within the given range of date/time values");
            }

            // Clamp the values to the valid range for 'DateTimePicker'
            val = val.Clamp(DateTimePicker.MinimumDateTime, DateTimePicker.MaximumDateTime);
            min = min.Clamp(DateTimePicker.MinimumDateTime, DateTimePicker.MaximumDateTime);
            max = max.Clamp(DateTimePicker.MinimumDateTime, DateTimePicker.MaximumDateTime);

            // Setting to MinimumDateTime/MaximumDateTime first avoids problems if min > MaxDate or max < MinDate
            dtp.MinDate = DateTimePicker.MinimumDateTime.As(val.Kind);
            dtp.MaxDate = DateTimePicker.MaximumDateTime.As(val.Kind);

            // Setting Value before MinDate/MaxDate avoids setting Value twice when Value < MinDate or Value > MaxDate
            dtp.Value   = val;
            dtp.MinDate = min;
            dtp.MaxDate = max;
        }
Esempio n. 23
0
        protected void SpostatiInDirezione(int d, int Periodicita, ref System.Windows.Forms.DateTimePicker eDa, ref System.Windows.Forms.DateTimePicker eA)
        {
            if (PeriodoCorrente == DateTime.MinValue)
            {
                PeriodoCorrente = DateTime.Now;
            }

            if (Periodicita == 0) //mensile
            {
                PeriodoCorrente = PeriodoCorrente.AddMonths(d);
                var inizio = new DateTime(PeriodoCorrente.Year, PeriodoCorrente.Month, 1);;

                eDa.Value = inizio;
                eA.Value  = inizio.AddMonths(1).AddSeconds(-1);
            }
            else if (Periodicita == 1) //annuale
            {
                PeriodoCorrente = PeriodoCorrente.AddYears(d);
                var inizio = new DateTime(PeriodoCorrente.Year, 1, 1);

                eDa.Value = inizio;
                eA.Value  = inizio.AddYears(1).AddSeconds(-1);
            }
        }
Esempio n. 24
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.lblTitle    = new System.Windows.Forms.Label();
     this.txtBillDate = new System.Windows.Forms.DateTimePicker();
     this.SuspendLayout();
     //
     // lblTitle
     //
     this.lblTitle.Dock      = System.Windows.Forms.DockStyle.Left;
     this.lblTitle.Location  = new System.Drawing.Point(0, 0);
     this.lblTitle.Name      = "lblTitle";
     this.lblTitle.Size      = new System.Drawing.Size(17, 25);
     this.lblTitle.TabIndex  = 1;
     this.lblTitle.Text      = "  ";
     this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtBillDate
     //
     this.txtBillDate.Dock        = System.Windows.Forms.DockStyle.Right;
     this.txtBillDate.Location    = new System.Drawing.Point(20, 0);
     this.txtBillDate.Margin      = new System.Windows.Forms.Padding(0);
     this.txtBillDate.MinimumSize = new System.Drawing.Size(0, 30);
     this.txtBillDate.Name        = "txtBillDate";
     this.txtBillDate.Size        = new System.Drawing.Size(164, 30);
     this.txtBillDate.TabIndex    = 2;
     //
     // LBDateTime
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.txtBillDate);
     this.Controls.Add(this.lblTitle);
     this.Margin = new System.Windows.Forms.Padding(0);
     this.Name   = "LBDateTime";
     this.Size   = new System.Drawing.Size(184, 25);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRestoreSumCost));
     this.dgvDetailCheck = new System.Windows.Forms.DataGridView();
     this.dtpEnd = new System.Windows.Forms.DateTimePicker();
     this.groupBox28 = new System.Windows.Forms.GroupBox();
     this.chksubListofstock = new System.Windows.Forms.CheckBox();
     this.cbomainListofstock = new System.Windows.Forms.ComboBox();
     this.cbosubListofstock = new System.Windows.Forms.ComboBox();
     this.label82 = new System.Windows.Forms.Label();
     this.dtpEndAdj = new System.Windows.Forms.DateTimePicker();
     this.label17 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.lblCheckDaily = new System.Windows.Forms.Label();
     this.btnConvert = new System.Windows.Forms.Button();
     this.sfDlg = new System.Windows.Forms.SaveFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.dgvDetailCheck)).BeginInit();
     this.groupBox28.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvDetailCheck
     //
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.dgvDetailCheck.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 11.25F);
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvDetailCheck.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dgvDetailCheck.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Tahoma", 11.25F);
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvDetailCheck.DefaultCellStyle = dataGridViewCellStyle3;
     this.dgvDetailCheck.Location = new System.Drawing.Point(12, 115);
     this.dgvDetailCheck.Name = "dgvDetailCheck";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Tahoma", 11.25F);
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvDetailCheck.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
     this.dgvDetailCheck.RowTemplate.Height = 25;
     this.dgvDetailCheck.Size = new System.Drawing.Size(1098, 475);
     this.dgvDetailCheck.TabIndex = 188;
     //
     // dtpEnd
     //
     this.dtpEnd.Cursor = System.Windows.Forms.Cursors.Hand;
     this.dtpEnd.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.dtpEnd.Location = new System.Drawing.Point(12, 45);
     this.dtpEnd.Name = "dtpEnd";
     this.dtpEnd.Size = new System.Drawing.Size(174, 26);
     this.dtpEnd.TabIndex = 189;
     //
     // groupBox28
     //
     this.groupBox28.Controls.Add(this.chksubListofstock);
     this.groupBox28.Controls.Add(this.cbomainListofstock);
     this.groupBox28.Controls.Add(this.cbosubListofstock);
     this.groupBox28.Controls.Add(this.label82);
     this.groupBox28.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.groupBox28.ForeColor = System.Drawing.Color.Blue;
     this.groupBox28.Location = new System.Drawing.Point(555, 12);
     this.groupBox28.Name = "groupBox28";
     this.groupBox28.Size = new System.Drawing.Size(312, 97);
     this.groupBox28.TabIndex = 190;
     this.groupBox28.TabStop = false;
     this.groupBox28.Text = "หมวดสินค้า";
     //
     // chksubListofstock
     //
     this.chksubListofstock.AutoSize = true;
     this.chksubListofstock.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.chksubListofstock.ForeColor = System.Drawing.Color.Black;
     this.chksubListofstock.Location = new System.Drawing.Point(14, 59);
     this.chksubListofstock.Name = "chksubListofstock";
     this.chksubListofstock.Size = new System.Drawing.Size(99, 22);
     this.chksubListofstock.TabIndex = 153;
     this.chksubListofstock.Text = "หมวดย่อย :";
     this.chksubListofstock.UseVisualStyleBackColor = true;
     //
     // cbomainListofstock
     //
     this.cbomainListofstock.Cursor = System.Windows.Forms.Cursors.Hand;
     this.cbomainListofstock.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.cbomainListofstock.FormattingEnabled = true;
     this.cbomainListofstock.Location = new System.Drawing.Point(119, 25);
     this.cbomainListofstock.Name = "cbomainListofstock";
     this.cbomainListofstock.Size = new System.Drawing.Size(177, 26);
     this.cbomainListofstock.TabIndex = 22;
     this.cbomainListofstock.SelectedIndexChanged += new System.EventHandler(this.cbomainListofstock_SelectedIndexChanged);
     //
     // cbosubListofstock
     //
     this.cbosubListofstock.Cursor = System.Windows.Forms.Cursors.Hand;
     this.cbosubListofstock.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.cbosubListofstock.FormattingEnabled = true;
     this.cbosubListofstock.Location = new System.Drawing.Point(119, 57);
     this.cbosubListofstock.Name = "cbosubListofstock";
     this.cbosubListofstock.Size = new System.Drawing.Size(177, 26);
     this.cbosubListofstock.TabIndex = 24;
     //
     // label82
     //
     this.label82.AutoSize = true;
     this.label82.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.label82.ForeColor = System.Drawing.Color.Black;
     this.label82.Location = new System.Drawing.Point(32, 28);
     this.label82.Name = "label82";
     this.label82.Size = new System.Drawing.Size(81, 18);
     this.label82.TabIndex = 23;
     this.label82.Text = "หมวดหลัก :";
     //
     // dtpEndAdj
     //
     this.dtpEndAdj.Cursor = System.Windows.Forms.Cursors.Hand;
     this.dtpEndAdj.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.dtpEndAdj.Location = new System.Drawing.Point(239, 45);
     this.dtpEndAdj.Name = "dtpEndAdj";
     this.dtpEndAdj.Size = new System.Drawing.Size(174, 26);
     this.dtpEndAdj.TabIndex = 191;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.label17.ForeColor = System.Drawing.Color.Black;
     this.label17.Location = new System.Drawing.Point(12, 24);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(71, 18);
     this.label17.TabIndex = 192;
     this.label17.Text = "วันที่สิ้นสุด";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(236, 24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(86, 18);
     this.label1.TabIndex = 193;
     this.label1.Text = "วันที่ปรับยอด";
     //
     // lblCheckDaily
     //
     this.lblCheckDaily.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.lblCheckDaily.BackColor = System.Drawing.Color.DarkBlue;
     this.lblCheckDaily.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblCheckDaily.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.lblCheckDaily.ForeColor = System.Drawing.Color.White;
     this.lblCheckDaily.Location = new System.Drawing.Point(12, 85);
     this.lblCheckDaily.Name = "lblCheckDaily";
     this.lblCheckDaily.Size = new System.Drawing.Size(245, 24);
     this.lblCheckDaily.TabIndex = 194;
     this.lblCheckDaily.Text = "พบ : 0 รายการ";
     this.lblCheckDaily.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnConvert
     //
     this.btnConvert.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.btnConvert.Location = new System.Drawing.Point(892, 34);
     this.btnConvert.Name = "btnConvert";
     this.btnConvert.Size = new System.Drawing.Size(96, 31);
     this.btnConvert.TabIndex = 195;
     this.btnConvert.Text = "แปลงข้อมูล";
     this.btnConvert.UseVisualStyleBackColor = true;
     this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click);
     //
     // frmRestoreSumCost
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1122, 602);
     this.Controls.Add(this.btnConvert);
     this.Controls.Add(this.lblCheckDaily);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.dtpEndAdj);
     this.Controls.Add(this.groupBox28);
     this.Controls.Add(this.dtpEnd);
     this.Controls.Add(this.dgvDetailCheck);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmRestoreSumCost";
     this.Text = "frmRestoreSumCost";
     this.Load += new System.EventHandler(this.frmRestoreSumCost_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvDetailCheck)).EndInit();
     this.groupBox28.ResumeLayout(false);
     this.groupBox28.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 26
0
 public void Now(System.Windows.Forms.DateTimePicker DateTimePicker)
 {
     DateTimePicker.Value = System.DateTime.Now;
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InputMatchs));
     this.dtpDate = new System.Windows.Forms.DateTimePicker();
     this.label1 = new System.Windows.Forms.Label();
     this.btnInput = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.cboCountry = new System.Windows.Forms.ComboBox();
     this.SuspendLayout();
     //
     // dtpDate
     //
     this.dtpDate.Location = new System.Drawing.Point(73, 30);
     this.dtpDate.Name = "dtpDate";
     this.dtpDate.Size = new System.Drawing.Size(189, 20);
     this.dtpDate.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(20, 31);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(30, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "Date";
     //
     // btnInput
     //
     this.btnInput.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnInput.Location = new System.Drawing.Point(285, 26);
     this.btnInput.Name = "btnInput";
     this.btnInput.Size = new System.Drawing.Size(75, 23);
     this.btnInput.TabIndex = 2;
     this.btnInput.Text = "Input";
     this.btnInput.UseVisualStyleBackColor = true;
     this.btnInput.Click += new System.EventHandler(this.btnInput_Click);
     //
     // btnClose
     //
     this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnClose.Location = new System.Drawing.Point(380, 26);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 3;
     this.btnClose.Text = "Close";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(20, 70);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(43, 13);
     this.label2.TabIndex = 4;
     this.label2.Text = "Country";
     //
     // cboCountry
     //
     this.cboCountry.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboCountry.FormattingEnabled = true;
     this.cboCountry.Location = new System.Drawing.Point(73, 67);
     this.cboCountry.Name = "cboCountry";
     this.cboCountry.Size = new System.Drawing.Size(189, 21);
     this.cboCountry.TabIndex = 5;
     //
     // InputMatchs
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackColor = System.Drawing.Color.CornflowerBlue;
     this.ClientSize = new System.Drawing.Size(480, 117);
     this.Controls.Add(this.cboCountry);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnInput);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dtpDate);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "InputMatchs";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Input Matchs";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DateForm_FormClosing);
     this.Load += new System.EventHandler(this.DateForm_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNO");
     Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ұ��", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SMELTDATE");
     Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��ѧ�ɷ֣�%��");
     Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TOTALCOUNT");
     Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("�ϸ�Ʒ");
     Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CHECKCOUNT");
     Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_JJ_WEIGHT");
     Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��������");
     Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_NUMBER");
     Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DJH");
     Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GPYS_RECEIVEDATE");
     Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GPYS_RECEIVER");
     Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��������");
     Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZC_ENTERDATETIME");
     Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_OPERATOR");
     Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_MEMO");
     Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZZ_DATE");
     Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_OPERATOR");
     Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_NUM");
     Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WASTNUM");
     Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_MEMO");
     Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FREEZED");
     Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKED");
     Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECKED");
     Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LL_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_FLOW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISCHARGE_BEGINED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISCHARGE_END");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNQUALIFIED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_ALS");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_GP_STOVENO", 3, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_GP_STOVENO", 3, true);
     Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_GP_TOTALCOUNT", 18, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_GP_TOTALCOUNT", 18, true);
     Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_JJ_WEIGHT", 21, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_JJ_WEIGHT", 21, true);
     Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_GPYS_NUMBER", 27, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_GPYS_NUMBER", 27, true);
     Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance168 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance169 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance170 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance171 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance172 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance173 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool9 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ʼ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool15 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��A");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool16 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��B");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool17 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��C");
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool18 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool13 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������3");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��¯����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ȡ������");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��������");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool22 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ʼ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool23 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool44 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BoardBandFlowCard));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool45 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��A");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��B");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��C");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������2");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��¯����");
     Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ȡ������");
     Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.Appearance appearance177 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������3");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��������");
     Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.cbx_Other3 = new System.Windows.Forms.CheckBox();
     this.cbx_Other2 = new System.Windows.Forms.CheckBox();
     this.cbx_Other1 = new System.Windows.Forms.CheckBox();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.rbtnC = new System.Windows.Forms.RadioButton();
     this.rbtnB = new System.Windows.Forms.RadioButton();
     this.rbtnA = new System.Windows.Forms.RadioButton();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.tbQueryStoveNo = new System.Windows.Forms.TextBox();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.lbl_InFurnance = new System.Windows.Forms.Label();
     this.lbl_Mark = new System.Windows.Forms.Label();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = new System.Data.DataColumn();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.ucBilletFlowCard1 = new YGJZJL.BoardBand.ucBilletFlowCard();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Other3);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Other2);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Other1);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtnC);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtnB);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtnA);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryStoveNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Margin = new System.Windows.Forms.Padding(4);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(1353, 745);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // cbx_Other3
     //
     this.cbx_Other3.AutoSize = true;
     this.cbx_Other3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Other3, null);
     this.cbx_Other3.Location = new System.Drawing.Point(657, 39);
     this.cbx_Other3.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Other3.Name = "cbx_Other3";
     this.cbx_Other3.Size = new System.Drawing.Size(74, 19);
     this.cbx_Other3.TabIndex = 0;
     this.cbx_Other3.Text = "���ֿ�";
     this.cbx_Other3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Other3, null);
     this.cbx_Other3.CheckedChanged += new System.EventHandler(this.cbx_Other3_CheckedChanged);
     //
     // cbx_Other2
     //
     this.cbx_Other2.AutoSize = true;
     this.cbx_Other2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Other2, null);
     this.cbx_Other2.Location = new System.Drawing.Point(577, 39);
     this.cbx_Other2.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Other2.Name = "cbx_Other2";
     this.cbx_Other2.Size = new System.Drawing.Size(74, 19);
     this.cbx_Other2.TabIndex = 0;
     this.cbx_Other2.Text = "�Ͳ���";
     this.cbx_Other2.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Other2, null);
     this.cbx_Other2.CheckedChanged += new System.EventHandler(this.cbx_Other2_CheckedChanged);
     //
     // cbx_Other1
     //
     this.cbx_Other1.AutoSize = true;
     this.cbx_Other1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Other1, null);
     this.cbx_Other1.Location = new System.Drawing.Point(497, 39);
     this.cbx_Other1.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Other1.Name = "cbx_Other1";
     this.cbx_Other1.Size = new System.Drawing.Size(74, 19);
     this.cbx_Other1.TabIndex = 0;
     this.cbx_Other1.Text = "�����";
     this.cbx_Other1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Other1, null);
     this.cbx_Other1.CheckedChanged += new System.EventHandler(this.cbx_Other1_CheckedChanged);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(113, 35);
     this.tbQueryBatchNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(89, 25);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // rbtnC
     //
     this.rbtnC.AutoSize = true;
     this.rbtnC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.rbtnC, null);
     this.rbtnC.Location = new System.Drawing.Point(680, 5);
     this.rbtnC.Margin = new System.Windows.Forms.Padding(4);
     this.rbtnC.Name = "rbtnC";
     this.rbtnC.Size = new System.Drawing.Size(58, 19);
     this.rbtnC.TabIndex = 0;
     this.rbtnC.Text = "ȫ��";
     this.rbtnC.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtnC, null);
     //
     // rbtnB
     //
     this.rbtnB.AutoSize = true;
     this.rbtnB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.rbtnB, null);
     this.rbtnB.Location = new System.Drawing.Point(601, 5);
     this.rbtnB.Margin = new System.Windows.Forms.Padding(4);
     this.rbtnB.Name = "rbtnB";
     this.rbtnB.Size = new System.Drawing.Size(73, 19);
     this.rbtnB.TabIndex = 0;
     this.rbtnB.Text = "������";
     this.rbtnB.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtnB, null);
     //
     // rbtnA
     //
     this.rbtnA.AutoSize = true;
     this.rbtnA.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.rbtnA.Checked = true;
     this.coreBind.SetDatabasecommand(this.rbtnA, null);
     this.rbtnA.Location = new System.Drawing.Point(523, 5);
     this.rbtnA.Margin = new System.Windows.Forms.Padding(4);
     this.rbtnA.Name = "rbtnA";
     this.rbtnA.Size = new System.Drawing.Size(73, 19);
     this.rbtnA.TabIndex = 0;
     this.rbtnA.TabStop = true;
     this.rbtnA.Text = "���";
     this.rbtnA.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtnA, null);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateTimePicker1, null);
     this.dateTimePicker1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location = new System.Drawing.Point(113, 2);
     this.dateTimePicker1.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(127, 25);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CalendarFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateTimePicker2, null);
     this.dateTimePicker2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location = new System.Drawing.Point(329, 2);
     this.dateTimePicker2.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(136, 25);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // tbQueryStoveNo
     //
     this.tbQueryStoveNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryStoveNo, null);
     this.tbQueryStoveNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryStoveNo.Location = new System.Drawing.Point(345, 35);
     this.tbQueryStoveNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbQueryStoveNo.Name = "tbQueryStoveNo";
     this.tbQueryStoveNo.Size = new System.Drawing.Size(95, 25);
     this.tbQueryStoveNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryStoveNo, null);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(15, 6);
     this.cbxDateTime.Margin = new System.Windows.Forms.Padding(4);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(18, 17);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox2);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
     this.coreBind.SetDatabasecommand(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel2, null);
     this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 61);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(1353, 684);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.lbl_InFurnance);
     this.ultraGroupBox2.Controls.Add(this.lbl_Mark);
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Controls.Add(this.cbx_Filter);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(1353, 356);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "��������������";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // lbl_InFurnance
     //
     this.lbl_InFurnance.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_InFurnance, null);
     this.lbl_InFurnance.ForeColor = System.Drawing.Color.Red;
     this.lbl_InFurnance.Location = new System.Drawing.Point(744, 5);
     this.lbl_InFurnance.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lbl_InFurnance.Name = "lbl_InFurnance";
     this.lbl_InFurnance.Size = new System.Drawing.Size(171, 18);
     this.lbl_InFurnance.TabIndex = 0;
     this.lbl_InFurnance.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_InFurnance, null);
     this.lbl_InFurnance.Visible = false;
     //
     // lbl_Mark
     //
     this.lbl_Mark.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_Mark, null);
     this.lbl_Mark.ForeColor = System.Drawing.Color.Blue;
     this.lbl_Mark.Location = new System.Drawing.Point(931, 5);
     this.lbl_Mark.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lbl_Mark.Name = "lbl_Mark";
     this.lbl_Mark.Size = new System.Drawing.Size(171, 18);
     this.lbl_Mark.TabIndex = 0;
     this.lbl_Mark.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_Mark, null);
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance53.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance53;
     ultraGridColumn1.Header.Caption = "������������";
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 43;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance54.TextVAlignAsString = "Middle";
     ultraGridColumn2.CellAppearance = appearance54;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(1086, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 23;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance55.TextVAlignAsString = "Middle";
     ultraGridColumn3.CellAppearance = appearance55;
     ultraGridColumn3.Header.Caption = "ұ������";
     ultraGridColumn3.Header.VisiblePosition = 3;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance56.TextVAlignAsString = "Middle";
     ultraGridColumn4.CellAppearance = appearance56;
     ultraGridColumn4.Header.Caption = "¯��";
     ultraGridColumn4.Header.VisiblePosition = 2;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance57.TextVAlignAsString = "Middle";
     ultraGridColumn5.CellAppearance = appearance57;
     ultraGridColumn5.Header.Caption = "�ƺ�";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance58.TextVAlignAsString = "Middle";
     ultraGridColumn6.CellAppearance = appearance58;
     ultraGridColumn6.Header.Caption = "���";
     ultraGridColumn6.Header.VisiblePosition = 35;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance59.TextVAlignAsString = "Middle";
     ultraGridColumn7.CellAppearance = appearance59;
     ultraGridColumn7.Header.VisiblePosition = 7;
     ultraGridColumn7.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(440, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 13;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance60.TextVAlignAsString = "Middle";
     ultraGridColumn8.CellAppearance = appearance60;
     ultraGridColumn8.Header.Caption = "C";
     ultraGridColumn8.Header.VisiblePosition = 14;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance61.TextVAlignAsString = "Middle";
     ultraGridColumn9.CellAppearance = appearance61;
     ultraGridColumn9.Header.Caption = "Si";
     ultraGridColumn9.Header.VisiblePosition = 15;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance62.TextVAlignAsString = "Middle";
     ultraGridColumn10.CellAppearance = appearance62;
     ultraGridColumn10.Header.Caption = "Mn";
     ultraGridColumn10.Header.VisiblePosition = 16;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance63.TextVAlignAsString = "Middle";
     ultraGridColumn11.CellAppearance = appearance63;
     ultraGridColumn11.Header.Caption = "S";
     ultraGridColumn11.Header.VisiblePosition = 17;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance64.TextVAlignAsString = "Middle";
     ultraGridColumn12.CellAppearance = appearance64;
     ultraGridColumn12.Header.Caption = "P";
     ultraGridColumn12.Header.VisiblePosition = 18;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance67.TextVAlignAsString = "Middle";
     ultraGridColumn13.CellAppearance = appearance67;
     ultraGridColumn13.Header.Caption = "Ni";
     ultraGridColumn13.Header.VisiblePosition = 19;
     ultraGridColumn13.Hidden = true;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance68.TextVAlignAsString = "Middle";
     ultraGridColumn14.CellAppearance = appearance68;
     ultraGridColumn14.Header.Caption = "Cr";
     ultraGridColumn14.Header.VisiblePosition = 21;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance69.TextVAlignAsString = "Middle";
     ultraGridColumn15.CellAppearance = appearance69;
     ultraGridColumn15.Header.Caption = "Cu";
     ultraGridColumn15.Header.VisiblePosition = 22;
     ultraGridColumn15.Hidden = true;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance72.TextVAlignAsString = "Middle";
     ultraGridColumn16.CellAppearance = appearance72;
     ultraGridColumn16.Header.Caption = "V";
     ultraGridColumn16.Header.VisiblePosition = 23;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance73.TextVAlignAsString = "Middle";
     ultraGridColumn17.CellAppearance = appearance73;
     ultraGridColumn17.Header.Caption = "Mo";
     ultraGridColumn17.Header.VisiblePosition = 24;
     ultraGridColumn17.Hidden = true;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance74.TextVAlignAsString = "Middle";
     ultraGridColumn18.CellAppearance = appearance74;
     ultraGridColumn18.Header.Caption = "Ceq";
     ultraGridColumn18.Header.VisiblePosition = 25;
     ultraGridColumn18.Hidden = true;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance75.TextVAlignAsString = "Middle";
     ultraGridColumn19.CellAppearance = appearance75;
     ultraGridColumn19.Header.Caption = "������";
     ultraGridColumn19.Header.VisiblePosition = 6;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance76.TextVAlignAsString = "Middle";
     ultraGridColumn20.CellAppearance = appearance76;
     ultraGridColumn20.Header.VisiblePosition = 20;
     ultraGridColumn20.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance77.TextVAlignAsString = "Middle";
     ultraGridColumn21.CellAppearance = appearance77;
     ultraGridColumn21.Header.Caption = "��";
     ultraGridColumn21.Header.VisiblePosition = 32;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance78.TextVAlignAsString = "Middle";
     ultraGridColumn22.CellAppearance = appearance78;
     ultraGridColumn22.Header.Caption = "ʵ��";
     ultraGridColumn22.Header.VisiblePosition = 8;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance79.TextVAlignAsString = "Middle";
     ultraGridColumn23.CellAppearance = appearance79;
     ultraGridColumn23.Header.Caption = "��ע";
     ultraGridColumn23.Header.VisiblePosition = 27;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance80.TextVAlignAsString = "Middle";
     ultraGridColumn24.CellAppearance = appearance80;
     ultraGridColumn24.Header.Caption = "�ж�Ա";
     ultraGridColumn24.Header.VisiblePosition = 29;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance81.TextVAlignAsString = "Middle";
     ultraGridColumn25.CellAppearance = appearance81;
     ultraGridColumn25.Header.Caption = "�ж�ʱ��";
     ultraGridColumn25.Header.VisiblePosition = 30;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance82.TextVAlignAsString = "Middle";
     ultraGridColumn26.CellAppearance = appearance82;
     ultraGridColumn26.Header.VisiblePosition = 26;
     ultraGridColumn26.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(957, 0);
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 13;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance83.TextVAlignAsString = "Middle";
     ultraGridColumn27.CellAppearance = appearance83;
     ultraGridColumn27.Header.VisiblePosition = 28;
     ultraGridColumn27.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 5;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance84.TextVAlignAsString = "Middle";
     ultraGridColumn28.CellAppearance = appearance84;
     ultraGridColumn28.Header.Caption = "����";
     ultraGridColumn28.Header.VisiblePosition = 9;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance85.TextVAlignAsString = "Middle";
     ultraGridColumn29.CellAppearance = appearance85;
     ultraGridColumn29.Header.Caption = "���ܺ�";
     ultraGridColumn29.Header.VisiblePosition = 10;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 31;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance86.TextVAlignAsString = "Middle";
     ultraGridColumn30.CellAppearance = appearance86;
     ultraGridColumn30.Header.Caption = "����ʱ��";
     ultraGridColumn30.Header.VisiblePosition = 12;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance87.TextVAlignAsString = "Middle";
     ultraGridColumn31.CellAppearance = appearance87;
     ultraGridColumn31.Header.Caption = "������";
     ultraGridColumn31.Header.VisiblePosition = 31;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 33;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance88.TextVAlignAsString = "Middle";
     ultraGridColumn32.CellAppearance = appearance88;
     ultraGridColumn32.Header.VisiblePosition = 33;
     ultraGridColumn32.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance89.TextVAlignAsString = "Middle";
     ultraGridColumn33.CellAppearance = appearance89;
     ultraGridColumn33.Header.Caption = "���Ʊ��";
     ultraGridColumn33.Header.VisiblePosition = 34;
     ultraGridColumn33.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameValue;
     ultraGridColumn33.MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle.Always;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance90.TextVAlignAsString = "Middle";
     ultraGridColumn34.CellAppearance = appearance90;
     ultraGridColumn34.Header.Caption = "��¯";
     ultraGridColumn34.Header.VisiblePosition = 36;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance91.TextVAlignAsString = "Middle";
     ultraGridColumn35.CellAppearance = appearance91;
     ultraGridColumn35.Header.Caption = "��¯ʱ��";
     ultraGridColumn35.Header.VisiblePosition = 37;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance92.TextVAlignAsString = "Middle";
     ultraGridColumn36.CellAppearance = appearance92;
     ultraGridColumn36.Header.Caption = "������";
     ultraGridColumn36.Header.VisiblePosition = 38;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 35;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance93.TextVAlignAsString = "Middle";
     ultraGridColumn37.CellAppearance = appearance93;
     ultraGridColumn37.Header.Caption = "��ע";
     ultraGridColumn37.Header.VisiblePosition = 39;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance94.TextVAlignAsString = "Middle";
     ultraGridColumn38.CellAppearance = appearance94;
     ultraGridColumn38.Header.VisiblePosition = 40;
     ultraGridColumn38.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 37;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance95.TextVAlignAsString = "Middle";
     ultraGridColumn39.CellAppearance = appearance95;
     ultraGridColumn39.Header.Caption = "���ƹ��";
     ultraGridColumn39.Header.VisiblePosition = 41;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance96.TextVAlignAsString = "Middle";
     ultraGridColumn40.CellAppearance = appearance96;
     ultraGridColumn40.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Equals;
     ultraGridColumn40.FilterOperatorDropDownItems = Infragistics.Win.UltraWinGrid.FilterOperatorDropDownItems.Equals;
     ultraGridColumn40.Header.Caption = "���߳���";
     ultraGridColumn40.Header.VisiblePosition = 5;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 37;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn40.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance97.TextVAlignAsString = "Middle";
     ultraGridColumn41.CellAppearance = appearance97;
     ultraGridColumn41.Header.Caption = "����ʱ��";
     ultraGridColumn41.Header.VisiblePosition = 42;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 38;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn41.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance98.TextVAlignAsString = "Middle";
     ultraGridColumn42.CellAppearance = appearance98;
     ultraGridColumn42.Header.Caption = "������";
     ultraGridColumn42.Header.VisiblePosition = 43;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 39;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn42.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance99.TextVAlignAsString = "Middle";
     ultraGridColumn43.CellAppearance = appearance99;
     ultraGridColumn43.Header.Caption = "�ɲ�";
     ultraGridColumn43.Header.VisiblePosition = 44;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn43.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance100.TextVAlignAsString = "Middle";
     ultraGridColumn44.CellAppearance = appearance100;
     ultraGridColumn44.Header.Caption = "����";
     ultraGridColumn44.Header.VisiblePosition = 45;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn44.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance101.TextVAlignAsString = "Middle";
     ultraGridColumn45.CellAppearance = appearance101;
     ultraGridColumn45.Header.Caption = "��ע";
     ultraGridColumn45.Header.VisiblePosition = 46;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 41;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn45.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance102.TextVAlignAsString = "Middle";
     ultraGridColumn46.CellAppearance = appearance102;
     ultraGridColumn46.Header.Caption = "����״̬";
     ultraGridColumn46.Header.VisiblePosition = 13;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
     ultraGridColumn46.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 72);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance103.TextVAlignAsString = "Middle";
     ultraGridColumn47.CellAppearance = appearance103;
     ultraGridColumn47.Header.Caption = "״̬";
     ultraGridColumn47.Header.VisiblePosition = 11;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn47.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
     appearance104.TextVAlignAsString = "Middle";
     ultraGridColumn48.CellAppearance = appearance104;
     ultraGridColumn48.Header.Caption = "ѡ��";
     ultraGridColumn48.Header.VisiblePosition = 47;
     ultraGridColumn48.Hidden = true;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn48.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn49.Header.Caption = "����";
     ultraGridColumn49.Header.VisiblePosition = 48;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn49.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn50.Header.VisiblePosition = 49;
     ultraGridColumn50.Hidden = true;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn51.Header.VisiblePosition = 50;
     ultraGridColumn51.Hidden = true;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 41;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn52.Header.VisiblePosition = 51;
     ultraGridColumn52.Hidden = true;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn53.Header.VisiblePosition = 52;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
     ultraGridColumn53.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 72);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn54.Header.VisiblePosition = 53;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn55.Header.VisiblePosition = 54;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn56.Header.VisiblePosition = 55;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn57.Header.VisiblePosition = 56;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15,
     ultraGridColumn16,
     ultraGridColumn17,
     ultraGridColumn18,
     ultraGridColumn19,
     ultraGridColumn20,
     ultraGridColumn21,
     ultraGridColumn22,
     ultraGridColumn23,
     ultraGridColumn24,
     ultraGridColumn25,
     ultraGridColumn26,
     ultraGridColumn27,
     ultraGridColumn28,
     ultraGridColumn29,
     ultraGridColumn30,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41,
     ultraGridColumn42,
     ultraGridColumn43,
     ultraGridColumn44,
     ultraGridColumn45,
     ultraGridColumn46,
     ultraGridColumn47,
     ultraGridColumn48,
     ultraGridColumn49,
     ultraGridColumn50,
     ultraGridColumn51,
     ultraGridColumn52,
     ultraGridColumn53,
     ultraGridColumn54,
     ultraGridColumn55,
     ultraGridColumn56,
     ultraGridColumn57});
     ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     summarySettings1.DisplayFormat = "¯����{0}";
     summarySettings1.GroupBySummaryValueAppearance = appearance105;
     summarySettings2.DisplayFormat = "{0}";
     summarySettings2.GroupBySummaryValueAppearance = appearance106;
     summarySettings3.DisplayFormat = "{0}";
     summarySettings3.GroupBySummaryValueAppearance = appearance107;
     summarySettings4.DisplayFormat = "{0}";
     summarySettings4.GroupBySummaryValueAppearance = appearance108;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3,
     summarySettings4});
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance168.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance168;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance169.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance169;
     appearance170.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance170;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance171.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance171.TextHAlignAsString = "Center";
     appearance171.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance171;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance172.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance172;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance173.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance173.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance173.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance173.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance173;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 27);
     this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1347, 326);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11,
     this.dataColumn12,
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn18,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FS_CARDNO";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "ұ��";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FD_SMELTDATE";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "FS_GP_SPE";
     //
     // dataColumn7
     //
     this.dataColumn7.ColumnName = "��ѧ�ɷ֣�%��";
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "FN_GP_C";
     //
     // dataColumn9
     //
     this.dataColumn9.ColumnName = "FN_GP_SI";
     //
     // dataColumn10
     //
     this.dataColumn10.ColumnName = "FN_GP_MN";
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "FN_GP_S";
     //
     // dataColumn12
     //
     this.dataColumn12.ColumnName = "FN_GP_P";
     //
     // dataColumn13
     //
     this.dataColumn13.ColumnName = "FN_GP_NI";
     //
     // dataColumn14
     //
     this.dataColumn14.ColumnName = "FN_GP_CR";
     //
     // dataColumn15
     //
     this.dataColumn15.ColumnName = "FN_GP_CU";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "FN_GP_V";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "FN_GP_MO";
     //
     // dataColumn19
     //
     this.dataColumn19.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "FN_GP_TOTALCOUNT";
     //
     // dataColumn21
     //
     this.dataColumn21.ColumnName = "�ϸ�Ʒ";
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FN_GP_CHECKCOUNT";
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FN_JJ_WEIGHT";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "����";
     //
     // dataColumn18
     //
     this.dataColumn18.ColumnName = "��������";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FN_GPYS_NUMBER";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FS_DJH";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FD_GPYS_RECEIVEDATE";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_GPYS_RECEIVER";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "��������";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn34
     //
     this.dataColumn34.ColumnName = "FN_ZC_ENTERNUMBER";
     //
     // dataColumn35
     //
     this.dataColumn35.ColumnName = "FD_ZC_ENTERDATETIME";
     //
     // dataColumn36
     //
     this.dataColumn36.ColumnName = "FS_ZC_OPERATOR";
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FS_ZC_MEMO";
     //
     // dataColumn38
     //
     this.dataColumn38.ColumnName = "����";
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FN_ZZ_SPEC";
     //
     // dataColumn40
     //
     this.dataColumn40.ColumnName = "FN_LENGTH";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "FD_ZZ_DATE";
     //
     // dataColumn42
     //
     this.dataColumn42.ColumnName = "FS_ZZ_OPERATOR";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FN_ZZ_NUM";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FN_ZZ_WASTNUM";
     //
     // dataColumn45
     //
     this.dataColumn45.ColumnName = "FS_ZZ_MEMO";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FS_FREEZED";
     //
     // dataColumn47
     //
     this.dataColumn47.ColumnName = "FS_CHECKED";
     //
     // dataColumn48
     //
     this.dataColumn48.ColumnName = "CHECKED";
     this.dataColumn48.DataType = typeof(bool);
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FN_LL_WEIGHT";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "ȥ��";
     this.dataColumn50.ColumnName = "FS_GP_FLOW";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FS_DISCHARGE_BEGINED";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "FS_DISCHARGE_END";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "�ϸ�";
     this.dataColumn53.ColumnName = "FS_UNQUALIFIED";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "As";
     this.dataColumn54.ColumnName = "FN_GP_AS";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "Ti";
     this.dataColumn55.ColumnName = "FN_GP_TI";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "Sb";
     this.dataColumn56.ColumnName = "FN_GP_SB";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "Als";
     this.dataColumn57.ColumnName = "FN_GP_ALS";
     //
     // cbx_Filter
     //
     this.cbx_Filter.AutoSize = true;
     this.cbx_Filter.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.cbx_Filter, null);
     this.cbx_Filter.Location = new System.Drawing.Point(1157, 2);
     this.cbx_Filter.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(59, 19);
     this.cbx_Filter.TabIndex = 0;
     this.cbx_Filter.Text = "����";
     this.cbx_Filter.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cbx_Filter.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Filter, null);
     this.cbx_Filter.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel2);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1353, 328);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 356);
     this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(1);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1353, 328);
     this.ultraExpandableGroupBox1.TabIndex = 0;
     this.ultraExpandableGroupBox1.Text = "���ݱ༭����";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ucBilletFlowCard1);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 21);
     this.ultraExpandableGroupBoxPanel2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1347, 304);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     //
     // ucBilletFlowCard1
     //
     this.ucBilletFlowCard1.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.ucBilletFlowCard1, null);
     this.ucBilletFlowCard1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucBilletFlowCard1.Location = new System.Drawing.Point(0, 0);
     this.ucBilletFlowCard1.Margin = new System.Windows.Forms.Padding(5);
     this.ucBilletFlowCard1.Name = "ucBilletFlowCard1";
     this.ucBilletFlowCard1.Size = new System.Drawing.Size(1347, 304);
     this.ucBilletFlowCard1.TabIndex = 0;
     this.coreBind.SetVerification(this.ucBilletFlowCard1, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool2.ControlName = "cbxDateTime";
     controlContainerTool2.InstanceProps.Width = 24;
     controlContainerTool9.ControlName = "dateTimePicker1";
     controlContainerTool20.ControlName = "dateTimePicker2";
     controlContainerTool20.InstanceProps.Width = 162;
     controlContainerTool15.ControlName = "rbtnA";
     controlContainerTool15.InstanceProps.IsFirstInGroup = true;
     controlContainerTool16.ControlName = "rbtnB";
     controlContainerTool17.ControlName = "rbtnC";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool2,
     controlContainerTool9,
     controlContainerTool20,
     controlContainerTool15,
     controlContainerTool16,
     controlContainerTool17});
     ultraToolbar1.Text = "UltraToolbar1";
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 1;
     controlContainerTool19.ControlName = "tbQueryBatchNo";
     controlContainerTool19.InstanceProps.IsFirstInGroup = true;
     controlContainerTool19.InstanceProps.Width = 192;
     controlContainerTool18.ControlName = "tbQueryStoveNo";
     controlContainerTool18.InstanceProps.IsFirstInGroup = true;
     controlContainerTool18.InstanceProps.Width = 167;
     controlContainerTool8.ControlName = "cbx_Other1";
     controlContainerTool8.InstanceProps.IsFirstInGroup = true;
     controlContainerTool11.ControlName = "cbx_Other2";
     controlContainerTool13.ControlName = "cbx_Other3";
     buttonTool3.InstanceProps.IsFirstInGroup = true;
     buttonTool10.InstanceProps.IsFirstInGroup = true;
     buttonTool2.InstanceProps.IsFirstInGroup = true;
     buttonTool7.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool19,
     controlContainerTool18,
     controlContainerTool8,
     controlContainerTool11,
     controlContainerTool13,
     buttonTool3,
     buttonTool10,
     buttonTool2,
     buttonTool1,
     buttonTool7,
     buttonTool8,
     buttonTool11});
     ultraToolbar2.Text = "UltraToolbar2";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1,
     ultraToolbar2});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool22.SharedPropsInternal.Caption = "����ʱ��";
     controlContainerTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool22.SharedPropsInternal.Width = 199;
     controlContainerTool23.ControlName = "dateTimePicker2";
     controlContainerTool23.SharedPropsInternal.Caption = "��";
     controlContainerTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool23.SharedPropsInternal.Width = 162;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "��ѯ";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.ControlName = "tbQueryStoveNo";
     controlContainerTool24.SharedPropsInternal.Caption = "ұ��¯��";
     controlContainerTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance66.Image = ((object)(resources.GetObject("appearance66.Image")));
     buttonTool45.SharedPropsInternal.AppearancesSmall.Appearance = appearance66;
     buttonTool45.SharedPropsInternal.Caption = "����";
     buttonTool45.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance124.Image = ((object)(resources.GetObject("appearance124.Image")));
     buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance124;
     buttonTool4.SharedPropsInternal.Caption = "ȡ������";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.ControlName = "cbxDateTime";
     controlContainerTool1.SharedPropsInternal.Caption = "��";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.SharedPropsInternal.Width = 24;
     controlContainerTool3.ControlName = "rbtnA";
     controlContainerTool3.SharedPropsInternal.Caption = "ѡ��A";
     controlContainerTool4.ControlName = "rbtnB";
     controlContainerTool4.SharedPropsInternal.Caption = "ѡ��B";
     controlContainerTool5.ControlName = "rbtnC";
     controlContainerTool5.SharedPropsInternal.Caption = "ѡ��C";
     controlContainerTool10.ControlName = "tbQueryBatchNo";
     controlContainerTool10.SharedPropsInternal.Caption = "�������Ʊ��";
     controlContainerTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool10.SharedPropsInternal.Width = 192;
     controlContainerTool6.ControlName = "cbx_Other1";
     controlContainerTool6.SharedPropsInternal.Caption = "������1";
     controlContainerTool7.ControlName = "cbx_Other2";
     controlContainerTool7.SharedPropsInternal.Caption = "������2";
     appearance70.Image = ((object)(resources.GetObject("appearance70.Image")));
     buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance70;
     buttonTool5.SharedPropsInternal.Caption = "��¯����";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance71.Image = ((object)(resources.GetObject("appearance71.Image")));
     buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance71;
     buttonTool6.SharedPropsInternal.Caption = "ȡ������";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance177.Image = ((object)(resources.GetObject("appearance177.Image")));
     buttonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance177;
     buttonTool9.SharedPropsInternal.Caption = "����";
     buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool12.ControlName = "cbx_Other3";
     controlContainerTool12.SharedPropsInternal.Caption = "������3";
     appearance119.Image = ((object)(resources.GetObject("appearance119.Image")));
     buttonTool12.SharedPropsInternal.AppearancesLarge.Appearance = appearance119;
     appearance120.Image = ((object)(resources.GetObject("appearance120.Image")));
     buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance120;
     buttonTool12.SharedPropsInternal.Caption = "��������";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool22,
     controlContainerTool23,
     buttonTool44,
     controlContainerTool24,
     buttonTool45,
     buttonTool4,
     controlContainerTool1,
     controlContainerTool3,
     controlContainerTool4,
     controlContainerTool5,
     controlContainerTool10,
     controlContainerTool6,
     controlContainerTool7,
     buttonTool5,
     buttonTool6,
     buttonTool9,
     controlContainerTool12,
     buttonTool12});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1353, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1353, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 745);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1353, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // BoardBandFlowCard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1353, 745);
     this.Controls.Add(this.FrmBase_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(5);
     this.Name = "BoardBandFlowCard";
     this.Text = "������";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.BilletFlowCard_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected override void InitializeComponent()
 {
     _buttomControlLayoutpanel = new System.Windows.Forms.FlowLayoutPanel();
     _addButton    = new System.Windows.Forms.Button();
     _cancelButton = new System.Windows.Forms.Button();
     _divider      = new DialogDivider();
     _userInputTableLayoutPanel   = new System.Windows.Forms.TableLayoutPanel();
     _dateTimePicker              = new System.Windows.Forms.DateTimePicker();
     _requestedLocationTextBox    = new System.Windows.Forms.TextBox();
     _signatureAppliedByDateLabel = new System.Windows.Forms.Label();
     _requestSignerNameLabel      = new System.Windows.Forms.Label();
     _requestLocationLabel        = new System.Windows.Forms.Label();
     _requestedSignerNameTextBox  = new System.Windows.Forms.TextBox();
     _intentLabel                = new System.Windows.Forms.Label();
     _intentComboBox             = new System.Windows.Forms.ComboBox();
     _mainDialogTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     _buttomControlLayoutpanel.SuspendLayout();
     _userInputTableLayoutPanel.SuspendLayout();
     _mainDialogTableLayoutPanel.SuspendLayout();
     SuspendLayout();
     //
     // _buttomControlLayoutpanel
     //
     _buttomControlLayoutpanel.Anchor       = System.Windows.Forms.AnchorStyles.Right;
     _buttomControlLayoutpanel.AutoSize     = true;
     _buttomControlLayoutpanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _buttomControlLayoutpanel.Controls.Add(_cancelButton);
     _buttomControlLayoutpanel.Controls.Add(_addButton);
     _buttomControlLayoutpanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     _buttomControlLayoutpanel.Location      = new System.Drawing.Point(374, 246);
     _buttomControlLayoutpanel.Margin        = new System.Windows.Forms.Padding(10, 2, 0, 0);
     _buttomControlLayoutpanel.Name          = "_buttomControlLayoutpanel";
     _buttomControlLayoutpanel.Size          = new System.Drawing.Size(56, 24);
     //
     // _addButton
     //
     _addButton.AutoSize     = true;
     _addButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _addButton.Name         = "_addButton";
     _addButton.Padding      = new System.Windows.Forms.Padding(20, 0, 20, 0);
     _addButton.Size         = new System.Drawing.Size(65, 6);
     _addButton.TabIndex     = 4;
     _addButton.Click       += new System.EventHandler(_addButton_Click);
     //
     // _cancelButton
     //
     _cancelButton.AutoSize     = true;
     _cancelButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _cancelButton.Name         = "_cancelButton";
     _cancelButton.Padding      = new System.Windows.Forms.Padding(20, 0, 20, 0);
     _cancelButton.Size         = new System.Drawing.Size(65, 6);
     _cancelButton.TabIndex     = 5;
     //
     // _divider
     //
     _divider.Anchor = System.Windows.Forms.AnchorStyles.Left;
     _divider.Margin = new System.Windows.Forms.Padding(0, 20, 0, 5);
     _divider.Name   = "_divider";
     //
     // _userInputTableLayoutPanel
     //
     _userInputTableLayoutPanel.AutoSize     = true;
     _userInputTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _userInputTableLayoutPanel.ColumnCount  = 1;
     _userInputTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     _userInputTableLayoutPanel.Controls.Add(_dateTimePicker, 0, 7);
     _userInputTableLayoutPanel.Controls.Add(_requestedLocationTextBox, 0, 5);
     _userInputTableLayoutPanel.Controls.Add(_signatureAppliedByDateLabel, 0, 6);
     _userInputTableLayoutPanel.Controls.Add(_requestSignerNameLabel, 0, 0);
     _userInputTableLayoutPanel.Controls.Add(_requestLocationLabel, 0, 4);
     _userInputTableLayoutPanel.Controls.Add(_requestedSignerNameTextBox, 0, 1);
     _userInputTableLayoutPanel.Controls.Add(_intentLabel, 0, 2);
     _userInputTableLayoutPanel.Controls.Add(_intentComboBox, 0, 3);
     _userInputTableLayoutPanel.Location = new System.Drawing.Point(10, 23);
     _userInputTableLayoutPanel.Margin   = new System.Windows.Forms.Padding(0);
     _userInputTableLayoutPanel.Name     = "_userInputTableLayoutPanel";
     _userInputTableLayoutPanel.RowCount = 8;
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.Size = new System.Drawing.Size(407, 197);
     //
     // _dateTimePicker
     //
     _dateTimePicker.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _dateTimePicker.Location = new System.Drawing.Point(3, 174);
     _dateTimePicker.Name     = "_dateTimePicker";
     _dateTimePicker.Size     = new System.Drawing.Size(245, 20);
     _dateTimePicker.TabIndex = 3;
     // This mirrors the control if and only if the RightToLeft property (which is
     // retrieved from the parent control) is also set to Yes.
     _dateTimePicker.RightToLeftLayout = true;
     //
     // _requestedLocationTextBox
     //
     _requestedLocationTextBox.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     _requestedLocationTextBox.Location  = new System.Drawing.Point(3, 125);
     _requestedLocationTextBox.MaxLength = _maxLocationLength;
     _requestedLocationTextBox.Name      = "_requestedLocationTextBox";
     _requestedLocationTextBox.Size      = new System.Drawing.Size(401, 20);
     _requestedLocationTextBox.TabIndex  = 2;
     //
     // _signatureAppliedByDateLabel
     //
     _signatureAppliedByDateLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _signatureAppliedByDateLabel.AutoSize = true;
     _signatureAppliedByDateLabel.Location = new System.Drawing.Point(3, 158);
     _signatureAppliedByDateLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _signatureAppliedByDateLabel.Name     = "_signatureAppliedByDateLabel";
     _signatureAppliedByDateLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _requestSignerNameLabel
     //
     _requestSignerNameLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _requestSignerNameLabel.AutoSize = true;
     _requestSignerNameLabel.Location = new System.Drawing.Point(3, 10);
     _requestSignerNameLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _requestSignerNameLabel.Name     = "_requestSignerNameLabel";
     _requestSignerNameLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _requestLocationLabel
     //
     _requestLocationLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _requestLocationLabel.AutoSize = true;
     _requestLocationLabel.Location = new System.Drawing.Point(3, 109);
     _requestLocationLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _requestLocationLabel.Name     = "_requestLocationLabel";
     _requestLocationLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _requestedSignerNameTextBox
     //
     _requestedSignerNameTextBox.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     _requestedSignerNameTextBox.Location  = new System.Drawing.Point(3, 26);
     _requestedSignerNameTextBox.MaxLength = _maxNameLength;
     _requestedSignerNameTextBox.Name      = "_requestedSignerNameTextBox";
     _requestedSignerNameTextBox.Size      = new System.Drawing.Size(401, 20);
     _requestedSignerNameTextBox.TabIndex  = 0;
     //
     // _intentLabel
     //
     _intentLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _intentLabel.AutoSize = true;
     _intentLabel.Location = new System.Drawing.Point(3, 59);
     _intentLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _intentLabel.Name     = "_intentLabel";
     _intentLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _intentComboBox
     //
     _intentComboBox.Anchor            = System.Windows.Forms.AnchorStyles.Left;
     _intentComboBox.FormattingEnabled = true;
     _intentComboBox.Location          = new System.Drawing.Point(3, 75);
     _intentComboBox.MaxLength         = _maxIntentLength;
     _intentComboBox.Name     = "_intentComboBox";
     _intentComboBox.Size     = new System.Drawing.Size(401, 21);
     _intentComboBox.TabIndex = 1;
     //
     // _mainDialogTableLayoutPanel
     //
     _mainDialogTableLayoutPanel.AutoSize     = true;
     _mainDialogTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _mainDialogTableLayoutPanel.ColumnCount  = 1;
     _mainDialogTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     _mainDialogTableLayoutPanel.Controls.Add(_userInputTableLayoutPanel, 0, 0);
     _mainDialogTableLayoutPanel.Controls.Add(_divider, 0, 1);
     _mainDialogTableLayoutPanel.Controls.Add(_buttomControlLayoutpanel, 0, 2);
     _mainDialogTableLayoutPanel.Location = new System.Drawing.Point(9, 9);
     _mainDialogTableLayoutPanel.Margin   = new System.Windows.Forms.Padding(10);
     _mainDialogTableLayoutPanel.Name     = "_mainDialogTableLayoutPanel";
     _mainDialogTableLayoutPanel.RowCount = 2;
     _mainDialogTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _mainDialogTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _mainDialogTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _mainDialogTableLayoutPanel.Size = new System.Drawing.Size(433, 273);
     //
     // RequestedSignatureDialog
     //
     AcceptButton        = _addButton;
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     AutoSize            = true;
     AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     ClientSize          = new System.Drawing.Size(451, 282);
     Controls.Add(_mainDialogTableLayoutPanel);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     MaximizeBox     = false;
     MinimizeBox     = false;
     CancelButton    = _cancelButton;
     Name            = "RequestedSignatureDialog";
     StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     _buttomControlLayoutpanel.ResumeLayout(false);
     _buttomControlLayoutpanel.PerformLayout();
     _userInputTableLayoutPanel.ResumeLayout(false);
     _userInputTableLayoutPanel.PerformLayout();
     _mainDialogTableLayoutPanel.ResumeLayout(false);
     _mainDialogTableLayoutPanel.PerformLayout();
     ResumeLayout(false);
     PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fGetAssembly));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.pBFrontImage = new System.Windows.Forms.PictureBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.panel1 = new System.Windows.Forms.Panel();
     this.dTPCreatorGet = new System.Windows.Forms.DateTimePicker();
     this.label8 = new System.Windows.Forms.Label();
     this.tBCreatorSurname = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.dTPCustomerReturn = new System.Windows.Forms.DateTimePicker();
     this.label7 = new System.Windows.Forms.Label();
     this.tBCustomerSurname = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.pnlFooter = new System.Windows.Forms.Panel();
     this.bttnPrev = new System.Windows.Forms.Button();
     this.bttnNext = new System.Windows.Forms.Button();
     this.bttnCancel = new System.Windows.Forms.Button();
     this.pnlHeader = new System.Windows.Forms.Panel();
     this.lblHeader = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pBFrontImage)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.pnlFooter.SuspendLayout();
     this.pnlHeader.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location = new System.Drawing.Point(-7, -23);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(485, 261);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.pBFrontImage);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(477, 235);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "tabPage1";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // pBFrontImage
     //
     this.pBFrontImage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pBFrontImage.Image = global::UchetUSP.Properties.Resources.masterImage;
     this.pBFrontImage.Location = new System.Drawing.Point(-37, -9);
     this.pBFrontImage.Name = "pBFrontImage";
     this.pBFrontImage.Size = new System.Drawing.Size(196, 244);
     this.pBFrontImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pBFrontImage.TabIndex = 12;
     this.pBFrontImage.TabStop = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(191, 108);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(262, 31);
     this.label2.TabIndex = 10;
     this.label2.Text = "Этот мастер поможет принять сборку УСПО от заказчика с отрывным талоном к форме 2" +
         "424.";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(191, 151);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(262, 31);
     this.label3.TabIndex = 11;
     this.label3.Text = "Для продолжения нажмите кнопку \"Далее\".";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label1.Location = new System.Drawing.Point(191, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(262, 46);
     this.label1.TabIndex = 9;
     this.label1.Text = "Мастер возврата оснастки на участок сборки УСПО";
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage2.Controls.Add(this.panel1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(477, 235);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "tabPage2";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.dTPCreatorGet);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.tBCreatorSurname);
     this.panel1.Controls.Add(this.label9);
     this.panel1.Controls.Add(this.dTPCustomerReturn);
     this.panel1.Controls.Add(this.label7);
     this.panel1.Controls.Add(this.tBCustomerSurname);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Location = new System.Drawing.Point(15, 55);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(447, 157);
     this.panel1.TabIndex = 0;
     //
     // dTPCreatorGet
     //
     this.dTPCreatorGet.Location = new System.Drawing.Point(189, 125);
     this.dTPCreatorGet.Name = "dTPCreatorGet";
     this.dTPCreatorGet.Size = new System.Drawing.Size(146, 20);
     this.dTPCreatorGet.TabIndex = 9;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(186, 109);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(33, 13);
     this.label8.TabIndex = 8;
     this.label8.Text = "Дата";
     //
     // tBCreatorSurname
     //
     this.tBCreatorSurname.Location = new System.Drawing.Point(44, 125);
     this.tBCreatorSurname.Name = "tBCreatorSurname";
     this.tBCreatorSurname.Size = new System.Drawing.Size(100, 20);
     this.tBCreatorSurname.TabIndex = 7;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(41, 109);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(56, 13);
     this.label9.TabIndex = 6;
     this.label9.Text = "Фамилия";
     //
     // dTPCustomerReturn
     //
     this.dTPCustomerReturn.Location = new System.Drawing.Point(189, 57);
     this.dTPCustomerReturn.Name = "dTPCustomerReturn";
     this.dTPCustomerReturn.Size = new System.Drawing.Size(146, 20);
     this.dTPCustomerReturn.TabIndex = 5;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(186, 41);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(33, 13);
     this.label7.TabIndex = 4;
     this.label7.Text = "Дата";
     //
     // tBCustomerSurname
     //
     this.tBCustomerSurname.Location = new System.Drawing.Point(44, 57);
     this.tBCustomerSurname.Name = "tBCustomerSurname";
     this.tBCustomerSurname.Size = new System.Drawing.Size(100, 20);
     this.tBCustomerSurname.TabIndex = 3;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(41, 41);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(56, 13);
     this.label6.TabIndex = 2;
     this.label6.Text = "Фамилия";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(20, 88);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(97, 13);
     this.label5.TabIndex = 1;
     this.label5.Text = "Оснастку принял:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(20, 17);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(85, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Оснастку сдал:";
     //
     // pnlFooter
     //
     this.pnlFooter.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlFooter.Controls.Add(this.bttnPrev);
     this.pnlFooter.Controls.Add(this.bttnNext);
     this.pnlFooter.Controls.Add(this.bttnCancel);
     this.pnlFooter.Location = new System.Drawing.Point(-7, 232);
     this.pnlFooter.Name = "pnlFooter";
     this.pnlFooter.Size = new System.Drawing.Size(505, 78);
     this.pnlFooter.TabIndex = 5;
     //
     // bttnPrev
     //
     this.bttnPrev.Enabled = false;
     this.bttnPrev.Location = new System.Drawing.Point(200, 11);
     this.bttnPrev.Name = "bttnPrev";
     this.bttnPrev.Size = new System.Drawing.Size(74, 22);
     this.bttnPrev.TabIndex = 0;
     this.bttnPrev.Text = "< Назад";
     this.bttnPrev.UseVisualStyleBackColor = true;
     this.bttnPrev.Click += new System.EventHandler(this.bttnPrev_Click);
     //
     // bttnNext
     //
     this.bttnNext.Location = new System.Drawing.Point(280, 11);
     this.bttnNext.Name = "bttnNext";
     this.bttnNext.Size = new System.Drawing.Size(74, 22);
     this.bttnNext.TabIndex = 1;
     this.bttnNext.Text = "Далее >";
     this.bttnNext.UseVisualStyleBackColor = true;
     this.bttnNext.Click += new System.EventHandler(this.bttnNext_Click);
     //
     // bttnCancel
     //
     this.bttnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bttnCancel.Location = new System.Drawing.Point(382, 11);
     this.bttnCancel.Name = "bttnCancel";
     this.bttnCancel.Size = new System.Drawing.Size(74, 22);
     this.bttnCancel.TabIndex = 2;
     this.bttnCancel.Text = "Отмена";
     this.bttnCancel.UseVisualStyleBackColor = true;
     this.bttnCancel.Click += new System.EventHandler(this.bttnCancel_Click);
     //
     // pnlHeader
     //
     this.pnlHeader.BackColor = System.Drawing.Color.White;
     this.pnlHeader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlHeader.Controls.Add(this.lblHeader);
     this.pnlHeader.Location = new System.Drawing.Point(-7, -37);
     this.pnlHeader.Name = "pnlHeader";
     this.pnlHeader.Size = new System.Drawing.Size(485, 94);
     this.pnlHeader.TabIndex = 7;
     this.pnlHeader.Visible = false;
     //
     // lblHeader
     //
     this.lblHeader.AutoSize = true;
     this.lblHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.lblHeader.Location = new System.Drawing.Point(16, 55);
     this.lblHeader.Name = "lblHeader";
     this.lblHeader.Size = new System.Drawing.Size(224, 13);
     this.lblHeader.TabIndex = 0;
     this.lblHeader.Text = "Введите данные исполнения заказа";
     //
     // fGetAssembly
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(472, 280);
     this.Controls.Add(this.pnlHeader);
     this.Controls.Add(this.pnlFooter);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "fGetAssembly";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Мастер возврата оснастки на участок сборки УСПО";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pBFrontImage)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.pnlFooter.ResumeLayout(false);
     this.pnlHeader.ResumeLayout(false);
     this.pnlHeader.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Descrip_TextBox = new System.Windows.Forms.TextBox();
     this.Visibilidad_Label = new System.Windows.Forms.Label();
     this.Descripcion_Label = new System.Windows.Forms.Label();
     this.Visibilidad_ComboBox = new System.Windows.Forms.ComboBox();
     this.Stock_Label = new System.Windows.Forms.Label();
     this.Stock_TextBox = new System.Windows.Forms.TextBox();
     this.FechaFin_Label = new System.Windows.Forms.Label();
     this.Estado_Label = new System.Windows.Forms.Label();
     this.Estado_ComboBox = new System.Windows.Forms.ComboBox();
     this.Tipo_Label = new System.Windows.Forms.Label();
     this.TipoPubli_ComboBox = new System.Windows.Forms.ComboBox();
     this.FechaFin_DateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.Precio_textBox = new System.Windows.Forms.TextBox();
     this.Precio_Label = new System.Windows.Forms.Label();
     this.Limpiar_button = new System.Windows.Forms.Button();
     this.Guardar_button = new System.Windows.Forms.Button();
     this.PermitirPreg_label = new System.Windows.Forms.Label();
     this.PermitirPreguntas_Checkbox = new System.Windows.Forms.CheckBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.volverButton = new System.Windows.Forms.Button();
     this.Rubro_checkedListBox = new System.Windows.Forms.CheckedListBox();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // Descrip_TextBox
     //
     this.Descrip_TextBox.Location = new System.Drawing.Point(156, 59);
     this.Descrip_TextBox.Name = "Descrip_TextBox";
     this.Descrip_TextBox.Size = new System.Drawing.Size(200, 20);
     this.Descrip_TextBox.TabIndex = 2;
     this.Descrip_TextBox.TextChanged += new System.EventHandler(this.Descrip_TextBox_TextChanged);
     //
     // Visibilidad_Label
     //
     this.Visibilidad_Label.AutoSize = true;
     this.Visibilidad_Label.Location = new System.Drawing.Point(16, 35);
     this.Visibilidad_Label.Name = "Visibilidad_Label";
     this.Visibilidad_Label.Size = new System.Drawing.Size(53, 13);
     this.Visibilidad_Label.TabIndex = 1;
     this.Visibilidad_Label.Text = "Visibilidad";
     //
     // Descripcion_Label
     //
     this.Descripcion_Label.AutoSize = true;
     this.Descripcion_Label.Location = new System.Drawing.Point(16, 62);
     this.Descripcion_Label.Name = "Descripcion_Label";
     this.Descripcion_Label.Size = new System.Drawing.Size(63, 13);
     this.Descripcion_Label.TabIndex = 2;
     this.Descripcion_Label.Text = "Descripción";
     //
     // Visibilidad_ComboBox
     //
     this.Visibilidad_ComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Visibilidad_ComboBox.FormattingEnabled = true;
     this.Visibilidad_ComboBox.Location = new System.Drawing.Point(156, 32);
     this.Visibilidad_ComboBox.Name = "Visibilidad_ComboBox";
     this.Visibilidad_ComboBox.Size = new System.Drawing.Size(200, 21);
     this.Visibilidad_ComboBox.TabIndex = 1;
     this.Visibilidad_ComboBox.SelectedIndexChanged += new System.EventHandler(this.Visibilidad_ComboBox_SelectedIndexChanged);
     //
     // Stock_Label
     //
     this.Stock_Label.AutoSize = true;
     this.Stock_Label.Location = new System.Drawing.Point(16, 88);
     this.Stock_Label.Name = "Stock_Label";
     this.Stock_Label.Size = new System.Drawing.Size(35, 13);
     this.Stock_Label.TabIndex = 4;
     this.Stock_Label.Text = "Stock";
     //
     // Stock_TextBox
     //
     this.Stock_TextBox.Location = new System.Drawing.Point(156, 85);
     this.Stock_TextBox.Name = "Stock_TextBox";
     this.Stock_TextBox.Size = new System.Drawing.Size(200, 20);
     this.Stock_TextBox.TabIndex = 3;
     this.Stock_TextBox.TextChanged += new System.EventHandler(this.Stock_TextBox_TextChanged);
     this.Stock_TextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Stock_TextBox_KeyPress);
     //
     // FechaFin_Label
     //
     this.FechaFin_Label.AutoSize = true;
     this.FechaFin_Label.Location = new System.Drawing.Point(16, 115);
     this.FechaFin_Label.Name = "FechaFin_Label";
     this.FechaFin_Label.Size = new System.Drawing.Size(110, 13);
     this.FechaFin_Label.TabIndex = 6;
     this.FechaFin_Label.Text = "Fecha de Finalización";
     //
     // Estado_Label
     //
     this.Estado_Label.AutoSize = true;
     this.Estado_Label.Location = new System.Drawing.Point(16, 140);
     this.Estado_Label.Name = "Estado_Label";
     this.Estado_Label.Size = new System.Drawing.Size(40, 13);
     this.Estado_Label.TabIndex = 8;
     this.Estado_Label.Text = "Estado";
     //
     // Estado_ComboBox
     //
     this.Estado_ComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Estado_ComboBox.FormattingEnabled = true;
     this.Estado_ComboBox.Location = new System.Drawing.Point(156, 137);
     this.Estado_ComboBox.Name = "Estado_ComboBox";
     this.Estado_ComboBox.Size = new System.Drawing.Size(200, 21);
     this.Estado_ComboBox.TabIndex = 5;
     this.Estado_ComboBox.SelectedIndexChanged += new System.EventHandler(this.Estado_ComboBox_SelectedIndexChanged);
     //
     // Tipo_Label
     //
     this.Tipo_Label.AutoSize = true;
     this.Tipo_Label.Location = new System.Drawing.Point(16, 167);
     this.Tipo_Label.Name = "Tipo_Label";
     this.Tipo_Label.Size = new System.Drawing.Size(28, 13);
     this.Tipo_Label.TabIndex = 11;
     this.Tipo_Label.Text = "Tipo";
     //
     // TipoPubli_ComboBox
     //
     this.TipoPubli_ComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.TipoPubli_ComboBox.FormattingEnabled = true;
     this.TipoPubli_ComboBox.Location = new System.Drawing.Point(156, 164);
     this.TipoPubli_ComboBox.Name = "TipoPubli_ComboBox";
     this.TipoPubli_ComboBox.Size = new System.Drawing.Size(200, 21);
     this.TipoPubli_ComboBox.TabIndex = 6;
     this.TipoPubli_ComboBox.SelectedIndexChanged += new System.EventHandler(this.TipoPubli_ComboBox_SelectedIndexChanged);
     //
     // FechaFin_DateTimePicker
     //
     this.FechaFin_DateTimePicker.Location = new System.Drawing.Point(156, 111);
     this.FechaFin_DateTimePicker.Name = "FechaFin_DateTimePicker";
     this.FechaFin_DateTimePicker.Size = new System.Drawing.Size(200, 20);
     this.FechaFin_DateTimePicker.TabIndex = 4;
     this.FechaFin_DateTimePicker.ValueChanged += new System.EventHandler(this.FechaFin_DateTimePicker_ValueChanged);
     //
     // Precio_textBox
     //
     this.Precio_textBox.Location = new System.Drawing.Point(156, 307);
     this.Precio_textBox.Name = "Precio_textBox";
     this.Precio_textBox.Size = new System.Drawing.Size(200, 20);
     this.Precio_textBox.TabIndex = 8;
     this.Precio_textBox.TextChanged += new System.EventHandler(this.Precio_textBox_TextChanged);
     this.Precio_textBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Precio_textBox_KeyPress);
     //
     // Precio_Label
     //
     this.Precio_Label.AutoSize = true;
     this.Precio_Label.Location = new System.Drawing.Point(16, 310);
     this.Precio_Label.Name = "Precio_Label";
     this.Precio_Label.Size = new System.Drawing.Size(37, 13);
     this.Precio_Label.TabIndex = 15;
     this.Precio_Label.Text = "Precio";
     //
     // Limpiar_button
     //
     this.Limpiar_button.Location = new System.Drawing.Point(142, 368);
     this.Limpiar_button.Name = "Limpiar_button";
     this.Limpiar_button.Size = new System.Drawing.Size(105, 38);
     this.Limpiar_button.TabIndex = 11;
     this.Limpiar_button.Text = "Limpiar";
     this.Limpiar_button.UseVisualStyleBackColor = true;
     this.Limpiar_button.Click += new System.EventHandler(this.Limpiar_button_Click);
     //
     // Guardar_button
     //
     this.Guardar_button.Location = new System.Drawing.Point(263, 368);
     this.Guardar_button.Name = "Guardar_button";
     this.Guardar_button.Size = new System.Drawing.Size(105, 38);
     this.Guardar_button.TabIndex = 10;
     this.Guardar_button.Text = "Guardar";
     this.Guardar_button.UseVisualStyleBackColor = true;
     this.Guardar_button.Click += new System.EventHandler(this.Guardar_button_Click);
     //
     // PermitirPreg_label
     //
     this.PermitirPreg_label.AutoSize = true;
     this.PermitirPreg_label.Location = new System.Drawing.Point(16, 333);
     this.PermitirPreg_label.Name = "PermitirPreg_label";
     this.PermitirPreg_label.Size = new System.Drawing.Size(92, 13);
     this.PermitirPreg_label.TabIndex = 21;
     this.PermitirPreg_label.Text = "Permitir Preguntas";
     //
     // PermitirPreguntas_Checkbox
     //
     this.PermitirPreguntas_Checkbox.AutoSize = true;
     this.PermitirPreguntas_Checkbox.Location = new System.Drawing.Point(156, 332);
     this.PermitirPreguntas_Checkbox.Name = "PermitirPreguntas_Checkbox";
     this.PermitirPreguntas_Checkbox.Size = new System.Drawing.Size(15, 14);
     this.PermitirPreguntas_Checkbox.TabIndex = 9;
     this.PermitirPreguntas_Checkbox.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.volverButton);
     this.groupBox1.Controls.Add(this.Rubro_checkedListBox);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.PermitirPreguntas_Checkbox);
     this.groupBox1.Controls.Add(this.PermitirPreg_label);
     this.groupBox1.Controls.Add(this.Guardar_button);
     this.groupBox1.Controls.Add(this.Limpiar_button);
     this.groupBox1.Controls.Add(this.Precio_Label);
     this.groupBox1.Controls.Add(this.Precio_textBox);
     this.groupBox1.Controls.Add(this.FechaFin_DateTimePicker);
     this.groupBox1.Controls.Add(this.TipoPubli_ComboBox);
     this.groupBox1.Controls.Add(this.Tipo_Label);
     this.groupBox1.Controls.Add(this.Estado_ComboBox);
     this.groupBox1.Controls.Add(this.Estado_Label);
     this.groupBox1.Controls.Add(this.FechaFin_Label);
     this.groupBox1.Controls.Add(this.Stock_TextBox);
     this.groupBox1.Controls.Add(this.Stock_Label);
     this.groupBox1.Controls.Add(this.Visibilidad_ComboBox);
     this.groupBox1.Controls.Add(this.Descripcion_Label);
     this.groupBox1.Controls.Add(this.Visibilidad_Label);
     this.groupBox1.Controls.Add(this.Descrip_TextBox);
     this.groupBox1.Location = new System.Drawing.Point(17, 14);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(393, 427);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Creación o Modificación de Publicación";
     //
     // volverButton
     //
     this.volverButton.Location = new System.Drawing.Point(19, 368);
     this.volverButton.Name = "volverButton";
     this.volverButton.Size = new System.Drawing.Size(105, 38);
     this.volverButton.TabIndex = 26;
     this.volverButton.Text = "<< Volver";
     this.volverButton.UseVisualStyleBackColor = true;
     this.volverButton.Click += new System.EventHandler(this.volverButton_Click);
     //
     // Rubro_checkedListBox
     //
     this.Rubro_checkedListBox.FormattingEnabled = true;
     this.Rubro_checkedListBox.Location = new System.Drawing.Point(156, 192);
     this.Rubro_checkedListBox.Name = "Rubro_checkedListBox";
     this.Rubro_checkedListBox.Size = new System.Drawing.Size(200, 109);
     this.Rubro_checkedListBox.TabIndex = 7;
     this.Rubro_checkedListBox.SelectedIndexChanged += new System.EventHandler(this.Rubro_checkedListBox_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 195);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(36, 13);
     this.label1.TabIndex = 25;
     this.label1.Text = "Rubro";
     //
     // GenerarPubliForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(434, 453);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "GenerarPubliForm";
     this.Text = "Administrar Publicaciones - Mercado Negro";
     this.Load += new System.EventHandler(this.GenerarPubliForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Welcome));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.room125Button = new System.Windows.Forms.Button();
     this.room124Button = new System.Windows.Forms.Button();
     this.room118Button = new System.Windows.Forms.Button();
     this.room109Button = new System.Windows.Forms.Button();
     this.room126Button = new System.Windows.Forms.Button();
     this.room127Button = new System.Windows.Forms.Button();
     this.room128Button = new System.Windows.Forms.Button();
     this.room123Button = new System.Windows.Forms.Button();
     this.room122Button = new System.Windows.Forms.Button();
     this.room121Button = new System.Windows.Forms.Button();
     this.room117Button = new System.Windows.Forms.Button();
     this.room116Button = new System.Windows.Forms.Button();
     this.rom115Button = new System.Windows.Forms.Button();
     this.room108Button = new System.Windows.Forms.Button();
     this.room107Button = new System.Windows.Forms.Button();
     this.room106Button = new System.Windows.Forms.Button();
     this.room129Button = new System.Windows.Forms.Button();
     this.room130Button = new System.Windows.Forms.Button();
     this.room120Button = new System.Windows.Forms.Button();
     this.room119Button = new System.Windows.Forms.Button();
     this.room114Button = new System.Windows.Forms.Button();
     this.room113Button = new System.Windows.Forms.Button();
     this.room112Button = new System.Windows.Forms.Button();
     this.room111Button = new System.Windows.Forms.Button();
     this.room110Button = new System.Windows.Forms.Button();
     this.room105Button = new System.Windows.Forms.Button();
     this.room104Button = new System.Windows.Forms.Button();
     this.room102Button = new System.Windows.Forms.Button();
     this.room103Button = new System.Windows.Forms.Button();
     this.room101Button = new System.Windows.Forms.Button();
     this.label10 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.room272Button = new System.Windows.Forms.Button();
     this.room263Button = new System.Windows.Forms.Button();
     this.room271Button = new System.Windows.Forms.Button();
     this.room270Button = new System.Windows.Forms.Button();
     this.room269Button = new System.Windows.Forms.Button();
     this.room262Button = new System.Windows.Forms.Button();
     this.room261Button = new System.Windows.Forms.Button();
     this.room260Button = new System.Windows.Forms.Button();
     this.room268Button = new System.Windows.Forms.Button();
     this.room267Button = new System.Windows.Forms.Button();
     this.room266Button = new System.Windows.Forms.Button();
     this.room265Button = new System.Windows.Forms.Button();
     this.room264Button = new System.Windows.Forms.Button();
     this.room259Button = new System.Windows.Forms.Button();
     this.room258Button = new System.Windows.Forms.Button();
     this.room256Button = new System.Windows.Forms.Button();
     this.room257Button = new System.Windows.Forms.Button();
     this.room255Button = new System.Windows.Forms.Button();
     this.room254Button = new System.Windows.Forms.Button();
     this.room245Button = new System.Windows.Forms.Button();
     this.room253Button = new System.Windows.Forms.Button();
     this.room252Button = new System.Windows.Forms.Button();
     this.room251Button = new System.Windows.Forms.Button();
     this.room244Button = new System.Windows.Forms.Button();
     this.room243Button = new System.Windows.Forms.Button();
     this.room242Button = new System.Windows.Forms.Button();
     this.room250Button = new System.Windows.Forms.Button();
     this.room249Button = new System.Windows.Forms.Button();
     this.room248Button = new System.Windows.Forms.Button();
     this.room247Button = new System.Windows.Forms.Button();
     this.room246Button = new System.Windows.Forms.Button();
     this.rom241Button = new System.Windows.Forms.Button();
     this.room240Button = new System.Windows.Forms.Button();
     this.room238Button = new System.Windows.Forms.Button();
     this.room239Button = new System.Windows.Forms.Button();
     this.rom237Button = new System.Windows.Forms.Button();
     this.room236Button = new System.Windows.Forms.Button();
     this.room227Button = new System.Windows.Forms.Button();
     this.room235Button = new System.Windows.Forms.Button();
     this.room234Button = new System.Windows.Forms.Button();
     this.room233Button = new System.Windows.Forms.Button();
     this.room226Button = new System.Windows.Forms.Button();
     this.room225Button = new System.Windows.Forms.Button();
     this.room224Button = new System.Windows.Forms.Button();
     this.room232Button = new System.Windows.Forms.Button();
     this.room231Button = new System.Windows.Forms.Button();
     this.room230Button = new System.Windows.Forms.Button();
     this.room229Button = new System.Windows.Forms.Button();
     this.room228Button = new System.Windows.Forms.Button();
     this.room223Button = new System.Windows.Forms.Button();
     this.room222Button = new System.Windows.Forms.Button();
     this.room220Button = new System.Windows.Forms.Button();
     this.room221Button = new System.Windows.Forms.Button();
     this.room219Button = new System.Windows.Forms.Button();
     this.room218Button = new System.Windows.Forms.Button();
     this.room209Button = new System.Windows.Forms.Button();
     this.room217Button = new System.Windows.Forms.Button();
     this.room216Button = new System.Windows.Forms.Button();
     this.room215Button = new System.Windows.Forms.Button();
     this.room208Button = new System.Windows.Forms.Button();
     this.room207Button = new System.Windows.Forms.Button();
     this.room206Button = new System.Windows.Forms.Button();
     this.room214Button = new System.Windows.Forms.Button();
     this.room213Button = new System.Windows.Forms.Button();
     this.room212Button = new System.Windows.Forms.Button();
     this.room211Button = new System.Windows.Forms.Button();
     this.room210Button = new System.Windows.Forms.Button();
     this.room205Button = new System.Windows.Forms.Button();
     this.room204Button = new System.Windows.Forms.Button();
     this.room202Button = new System.Windows.Forms.Button();
     this.room203Button = new System.Windows.Forms.Button();
     this.room201Button = new System.Windows.Forms.Button();
     this.label19 = new System.Windows.Forms.Label();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.checkOutDateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.checkInDateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.checkAvailabilityButton = new System.Windows.Forms.Button();
     this.clearButton = new System.Windows.Forms.Button();
     this.roomLevelComboBox = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.roomTypeComboBox = new System.Windows.Forms.ComboBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.clearNamesButton = new System.Windows.Forms.Button();
     this.lastNameTextBox = new System.Windows.Forms.TextBox();
     this.firstNameTextBox = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.retrieveBookingButton = new System.Windows.Forms.Button();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label17 = new System.Windows.Forms.Label();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.programmingManualToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Controls.Add(this.tabPage5);
     this.tabControl1.Location = new System.Drawing.Point(11, 199);
     this.tabControl1.Margin = new System.Windows.Forms.Padding(2);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(639, 377);
     this.tabControl1.TabIndex = 92;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.label12);
     this.tabPage1.Controls.Add(this.label11);
     this.tabPage1.Controls.Add(this.label9);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.room125Button);
     this.tabPage1.Controls.Add(this.room124Button);
     this.tabPage1.Controls.Add(this.room118Button);
     this.tabPage1.Controls.Add(this.room109Button);
     this.tabPage1.Controls.Add(this.room126Button);
     this.tabPage1.Controls.Add(this.room127Button);
     this.tabPage1.Controls.Add(this.room128Button);
     this.tabPage1.Controls.Add(this.room123Button);
     this.tabPage1.Controls.Add(this.room122Button);
     this.tabPage1.Controls.Add(this.room121Button);
     this.tabPage1.Controls.Add(this.room117Button);
     this.tabPage1.Controls.Add(this.room116Button);
     this.tabPage1.Controls.Add(this.rom115Button);
     this.tabPage1.Controls.Add(this.room108Button);
     this.tabPage1.Controls.Add(this.room107Button);
     this.tabPage1.Controls.Add(this.room106Button);
     this.tabPage1.Controls.Add(this.room129Button);
     this.tabPage1.Controls.Add(this.room130Button);
     this.tabPage1.Controls.Add(this.room120Button);
     this.tabPage1.Controls.Add(this.room119Button);
     this.tabPage1.Controls.Add(this.room114Button);
     this.tabPage1.Controls.Add(this.room113Button);
     this.tabPage1.Controls.Add(this.room112Button);
     this.tabPage1.Controls.Add(this.room111Button);
     this.tabPage1.Controls.Add(this.room110Button);
     this.tabPage1.Controls.Add(this.room105Button);
     this.tabPage1.Controls.Add(this.room104Button);
     this.tabPage1.Controls.Add(this.room102Button);
     this.tabPage1.Controls.Add(this.room103Button);
     this.tabPage1.Controls.Add(this.room101Button);
     this.tabPage1.Controls.Add(this.label10);
     this.tabPage1.Controls.Add(this.label18);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(2);
     this.tabPage1.Size = new System.Drawing.Size(631, 351);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Lobby";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // label12
     //
     this.label12.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label12.Location = new System.Drawing.Point(419, 77);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(207, 197);
     this.label12.TabIndex = 102;
     this.label12.Text = "Swimming Pool";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label11
     //
     this.label11.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label11.Location = new System.Drawing.Point(112, 83);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(196, 53);
     this.label11.TabIndex = 101;
     this.label11.Text = "Reception";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label9.Location = new System.Drawing.Point(8, 77);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(94, 197);
     this.label9.TabIndex = 99;
     this.label9.Text = "Hall";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Location = new System.Drawing.Point(6, 283);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(221, 62);
     this.label1.TabIndex = 97;
     this.label1.Text = "Main Entrance";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // room125Button
     //
     this.room125Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room125Button.Location = new System.Drawing.Point(564, 314);
     this.room125Button.Name = "room125Button";
     this.room125Button.Size = new System.Drawing.Size(62, 30);
     this.room125Button.TabIndex = 96;
     this.room125Button.Text = "125";
     this.room125Button.UseVisualStyleBackColor = true;
     this.room125Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room124Button
     //
     this.room124Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room124Button.Location = new System.Drawing.Point(565, 279);
     this.room124Button.Name = "room124Button";
     this.room124Button.Size = new System.Drawing.Size(62, 30);
     this.room124Button.TabIndex = 95;
     this.room124Button.Text = "124";
     this.room124Button.UseVisualStyleBackColor = true;
     this.room124Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room118Button
     //
     this.room118Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room118Button.Location = new System.Drawing.Point(564, 41);
     this.room118Button.Name = "room118Button";
     this.room118Button.Size = new System.Drawing.Size(62, 30);
     this.room118Button.TabIndex = 94;
     this.room118Button.Text = "118";
     this.room118Button.UseVisualStyleBackColor = true;
     this.room118Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room109Button
     //
     this.room109Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room109Button.Location = new System.Drawing.Point(564, 5);
     this.room109Button.Name = "room109Button";
     this.room109Button.Size = new System.Drawing.Size(62, 30);
     this.room109Button.TabIndex = 93;
     this.room109Button.Text = "109";
     this.room109Button.UseVisualStyleBackColor = true;
     this.room109Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room126Button
     //
     this.room126Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room126Button.Location = new System.Drawing.Point(498, 314);
     this.room126Button.Name = "room126Button";
     this.room126Button.Size = new System.Drawing.Size(62, 30);
     this.room126Button.TabIndex = 92;
     this.room126Button.Text = "126";
     this.room126Button.UseVisualStyleBackColor = true;
     this.room126Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room127Button
     //
     this.room127Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room127Button.Location = new System.Drawing.Point(432, 314);
     this.room127Button.Name = "room127Button";
     this.room127Button.Size = new System.Drawing.Size(62, 30);
     this.room127Button.TabIndex = 91;
     this.room127Button.Text = "127";
     this.room127Button.UseVisualStyleBackColor = true;
     this.room127Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room128Button
     //
     this.room128Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room128Button.Location = new System.Drawing.Point(366, 314);
     this.room128Button.Name = "room128Button";
     this.room128Button.Size = new System.Drawing.Size(62, 30);
     this.room128Button.TabIndex = 90;
     this.room128Button.Text = "128";
     this.room128Button.UseVisualStyleBackColor = true;
     this.room128Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room123Button
     //
     this.room123Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room123Button.Location = new System.Drawing.Point(499, 279);
     this.room123Button.Name = "room123Button";
     this.room123Button.Size = new System.Drawing.Size(62, 30);
     this.room123Button.TabIndex = 89;
     this.room123Button.Text = "123";
     this.room123Button.UseVisualStyleBackColor = true;
     this.room123Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room122Button
     //
     this.room122Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room122Button.Location = new System.Drawing.Point(433, 279);
     this.room122Button.Name = "room122Button";
     this.room122Button.Size = new System.Drawing.Size(62, 30);
     this.room122Button.TabIndex = 88;
     this.room122Button.Text = "122";
     this.room122Button.UseVisualStyleBackColor = true;
     this.room122Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room121Button
     //
     this.room121Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room121Button.Location = new System.Drawing.Point(367, 279);
     this.room121Button.Name = "room121Button";
     this.room121Button.Size = new System.Drawing.Size(62, 30);
     this.room121Button.TabIndex = 87;
     this.room121Button.Text = "121";
     this.room121Button.UseVisualStyleBackColor = true;
     this.room121Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room117Button
     //
     this.room117Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room117Button.Location = new System.Drawing.Point(498, 41);
     this.room117Button.Name = "room117Button";
     this.room117Button.Size = new System.Drawing.Size(62, 30);
     this.room117Button.TabIndex = 86;
     this.room117Button.Text = "117";
     this.room117Button.UseVisualStyleBackColor = true;
     this.room117Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room116Button
     //
     this.room116Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room116Button.Location = new System.Drawing.Point(432, 41);
     this.room116Button.Name = "room116Button";
     this.room116Button.Size = new System.Drawing.Size(62, 30);
     this.room116Button.TabIndex = 85;
     this.room116Button.Text = "116";
     this.room116Button.UseVisualStyleBackColor = true;
     this.room116Button.Click += new System.EventHandler(this.Room_Click);
     //
     // rom115Button
     //
     this.rom115Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rom115Button.Location = new System.Drawing.Point(366, 41);
     this.rom115Button.Name = "rom115Button";
     this.rom115Button.Size = new System.Drawing.Size(62, 30);
     this.rom115Button.TabIndex = 84;
     this.rom115Button.Text = "115";
     this.rom115Button.UseVisualStyleBackColor = true;
     this.rom115Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room108Button
     //
     this.room108Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room108Button.Location = new System.Drawing.Point(498, 5);
     this.room108Button.Name = "room108Button";
     this.room108Button.Size = new System.Drawing.Size(62, 30);
     this.room108Button.TabIndex = 83;
     this.room108Button.Text = "108";
     this.room108Button.UseVisualStyleBackColor = true;
     this.room108Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room107Button
     //
     this.room107Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room107Button.Location = new System.Drawing.Point(432, 5);
     this.room107Button.Name = "room107Button";
     this.room107Button.Size = new System.Drawing.Size(62, 30);
     this.room107Button.TabIndex = 82;
     this.room107Button.Text = "107";
     this.room107Button.UseVisualStyleBackColor = true;
     this.room107Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room106Button
     //
     this.room106Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room106Button.Location = new System.Drawing.Point(366, 5);
     this.room106Button.Name = "room106Button";
     this.room106Button.Size = new System.Drawing.Size(62, 30);
     this.room106Button.TabIndex = 81;
     this.room106Button.Text = "106";
     this.room106Button.UseVisualStyleBackColor = true;
     this.room106Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room129Button
     //
     this.room129Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room129Button.Location = new System.Drawing.Point(300, 314);
     this.room129Button.Name = "room129Button";
     this.room129Button.Size = new System.Drawing.Size(62, 30);
     this.room129Button.TabIndex = 79;
     this.room129Button.Text = "129";
     this.room129Button.UseVisualStyleBackColor = true;
     this.room129Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room130Button
     //
     this.room130Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room130Button.Location = new System.Drawing.Point(232, 314);
     this.room130Button.Name = "room130Button";
     this.room130Button.Size = new System.Drawing.Size(62, 30);
     this.room130Button.TabIndex = 78;
     this.room130Button.Text = "130";
     this.room130Button.UseVisualStyleBackColor = true;
     this.room130Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room120Button
     //
     this.room120Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room120Button.Location = new System.Drawing.Point(301, 279);
     this.room120Button.Name = "room120Button";
     this.room120Button.Size = new System.Drawing.Size(62, 30);
     this.room120Button.TabIndex = 74;
     this.room120Button.Text = "120";
     this.room120Button.UseVisualStyleBackColor = true;
     this.room120Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room119Button
     //
     this.room119Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room119Button.Location = new System.Drawing.Point(233, 279);
     this.room119Button.Name = "room119Button";
     this.room119Button.Size = new System.Drawing.Size(62, 30);
     this.room119Button.TabIndex = 73;
     this.room119Button.Text = "119";
     this.room119Button.UseVisualStyleBackColor = true;
     this.room119Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room114Button
     //
     this.room114Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room114Button.Location = new System.Drawing.Point(300, 41);
     this.room114Button.Name = "room114Button";
     this.room114Button.Size = new System.Drawing.Size(62, 30);
     this.room114Button.TabIndex = 63;
     this.room114Button.Text = "114";
     this.room114Button.UseVisualStyleBackColor = true;
     this.room114Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room113Button
     //
     this.room113Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room113Button.Location = new System.Drawing.Point(201, 41);
     this.room113Button.Name = "room113Button";
     this.room113Button.Size = new System.Drawing.Size(62, 30);
     this.room113Button.TabIndex = 62;
     this.room113Button.Text = "113";
     this.room113Button.UseVisualStyleBackColor = true;
     this.room113Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room112Button
     //
     this.room112Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room112Button.Location = new System.Drawing.Point(135, 41);
     this.room112Button.Name = "room112Button";
     this.room112Button.Size = new System.Drawing.Size(62, 30);
     this.room112Button.TabIndex = 61;
     this.room112Button.Text = "112";
     this.room112Button.UseVisualStyleBackColor = true;
     this.room112Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room111Button
     //
     this.room111Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room111Button.Location = new System.Drawing.Point(69, 41);
     this.room111Button.Name = "room111Button";
     this.room111Button.Size = new System.Drawing.Size(62, 30);
     this.room111Button.TabIndex = 60;
     this.room111Button.Text = "111";
     this.room111Button.UseVisualStyleBackColor = true;
     this.room111Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room110Button
     //
     this.room110Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room110Button.Location = new System.Drawing.Point(3, 41);
     this.room110Button.Name = "room110Button";
     this.room110Button.Size = new System.Drawing.Size(62, 30);
     this.room110Button.TabIndex = 59;
     this.room110Button.Text = "110";
     this.room110Button.UseVisualStyleBackColor = true;
     this.room110Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room105Button
     //
     this.room105Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room105Button.Location = new System.Drawing.Point(300, 5);
     this.room105Button.Name = "room105Button";
     this.room105Button.Size = new System.Drawing.Size(62, 30);
     this.room105Button.TabIndex = 58;
     this.room105Button.Text = "105";
     this.room105Button.UseVisualStyleBackColor = true;
     this.room105Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room104Button
     //
     this.room104Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room104Button.Location = new System.Drawing.Point(201, 5);
     this.room104Button.Name = "room104Button";
     this.room104Button.Size = new System.Drawing.Size(62, 30);
     this.room104Button.TabIndex = 57;
     this.room104Button.Text = "104";
     this.room104Button.UseVisualStyleBackColor = true;
     this.room104Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room102Button
     //
     this.room102Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room102Button.Location = new System.Drawing.Point(69, 5);
     this.room102Button.Name = "room102Button";
     this.room102Button.Size = new System.Drawing.Size(62, 30);
     this.room102Button.TabIndex = 56;
     this.room102Button.Text = "102";
     this.room102Button.UseVisualStyleBackColor = true;
     this.room102Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room103Button
     //
     this.room103Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room103Button.Location = new System.Drawing.Point(135, 5);
     this.room103Button.Name = "room103Button";
     this.room103Button.Size = new System.Drawing.Size(62, 30);
     this.room103Button.TabIndex = 55;
     this.room103Button.Text = "103";
     this.room103Button.UseVisualStyleBackColor = true;
     this.room103Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room101Button
     //
     this.room101Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room101Button.Location = new System.Drawing.Point(3, 5);
     this.room101Button.Name = "room101Button";
     this.room101Button.Size = new System.Drawing.Size(62, 30);
     this.room101Button.TabIndex = 54;
     this.room101Button.Text = "101";
     this.room101Button.UseVisualStyleBackColor = true;
     this.room101Button.Click += new System.EventHandler(this.Room_Click);
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label10.Location = new System.Drawing.Point(108, 77);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(305, 197);
     this.label10.TabIndex = 100;
     this.label10.Text = "Lobby";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label18
     //
     this.label18.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label18.Location = new System.Drawing.Point(261, 5);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(42, 66);
     this.label18.TabIndex = 107;
     this.label18.Text = "Stairs";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.room272Button);
     this.tabPage2.Controls.Add(this.room263Button);
     this.tabPage2.Controls.Add(this.room271Button);
     this.tabPage2.Controls.Add(this.room270Button);
     this.tabPage2.Controls.Add(this.room269Button);
     this.tabPage2.Controls.Add(this.room262Button);
     this.tabPage2.Controls.Add(this.room261Button);
     this.tabPage2.Controls.Add(this.room260Button);
     this.tabPage2.Controls.Add(this.room268Button);
     this.tabPage2.Controls.Add(this.room267Button);
     this.tabPage2.Controls.Add(this.room266Button);
     this.tabPage2.Controls.Add(this.room265Button);
     this.tabPage2.Controls.Add(this.room264Button);
     this.tabPage2.Controls.Add(this.room259Button);
     this.tabPage2.Controls.Add(this.room258Button);
     this.tabPage2.Controls.Add(this.room256Button);
     this.tabPage2.Controls.Add(this.room257Button);
     this.tabPage2.Controls.Add(this.room255Button);
     this.tabPage2.Controls.Add(this.room254Button);
     this.tabPage2.Controls.Add(this.room245Button);
     this.tabPage2.Controls.Add(this.room253Button);
     this.tabPage2.Controls.Add(this.room252Button);
     this.tabPage2.Controls.Add(this.room251Button);
     this.tabPage2.Controls.Add(this.room244Button);
     this.tabPage2.Controls.Add(this.room243Button);
     this.tabPage2.Controls.Add(this.room242Button);
     this.tabPage2.Controls.Add(this.room250Button);
     this.tabPage2.Controls.Add(this.room249Button);
     this.tabPage2.Controls.Add(this.room248Button);
     this.tabPage2.Controls.Add(this.room247Button);
     this.tabPage2.Controls.Add(this.room246Button);
     this.tabPage2.Controls.Add(this.rom241Button);
     this.tabPage2.Controls.Add(this.room240Button);
     this.tabPage2.Controls.Add(this.room238Button);
     this.tabPage2.Controls.Add(this.room239Button);
     this.tabPage2.Controls.Add(this.rom237Button);
     this.tabPage2.Controls.Add(this.room236Button);
     this.tabPage2.Controls.Add(this.room227Button);
     this.tabPage2.Controls.Add(this.room235Button);
     this.tabPage2.Controls.Add(this.room234Button);
     this.tabPage2.Controls.Add(this.room233Button);
     this.tabPage2.Controls.Add(this.room226Button);
     this.tabPage2.Controls.Add(this.room225Button);
     this.tabPage2.Controls.Add(this.room224Button);
     this.tabPage2.Controls.Add(this.room232Button);
     this.tabPage2.Controls.Add(this.room231Button);
     this.tabPage2.Controls.Add(this.room230Button);
     this.tabPage2.Controls.Add(this.room229Button);
     this.tabPage2.Controls.Add(this.room228Button);
     this.tabPage2.Controls.Add(this.room223Button);
     this.tabPage2.Controls.Add(this.room222Button);
     this.tabPage2.Controls.Add(this.room220Button);
     this.tabPage2.Controls.Add(this.room221Button);
     this.tabPage2.Controls.Add(this.room219Button);
     this.tabPage2.Controls.Add(this.room218Button);
     this.tabPage2.Controls.Add(this.room209Button);
     this.tabPage2.Controls.Add(this.room217Button);
     this.tabPage2.Controls.Add(this.room216Button);
     this.tabPage2.Controls.Add(this.room215Button);
     this.tabPage2.Controls.Add(this.room208Button);
     this.tabPage2.Controls.Add(this.room207Button);
     this.tabPage2.Controls.Add(this.room206Button);
     this.tabPage2.Controls.Add(this.room214Button);
     this.tabPage2.Controls.Add(this.room213Button);
     this.tabPage2.Controls.Add(this.room212Button);
     this.tabPage2.Controls.Add(this.room211Button);
     this.tabPage2.Controls.Add(this.room210Button);
     this.tabPage2.Controls.Add(this.room205Button);
     this.tabPage2.Controls.Add(this.room204Button);
     this.tabPage2.Controls.Add(this.room202Button);
     this.tabPage2.Controls.Add(this.room203Button);
     this.tabPage2.Controls.Add(this.room201Button);
     this.tabPage2.Controls.Add(this.label19);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(2);
     this.tabPage2.Size = new System.Drawing.Size(631, 351);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "2nd Floor";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // room272Button
     //
     this.room272Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room272Button.Location = new System.Drawing.Point(566, 313);
     this.room272Button.Name = "room272Button";
     this.room272Button.Size = new System.Drawing.Size(62, 30);
     this.room272Button.TabIndex = 181;
     this.room272Button.Text = "272";
     this.room272Button.UseVisualStyleBackColor = true;
     this.room272Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room263Button
     //
     this.room263Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room263Button.Location = new System.Drawing.Point(566, 277);
     this.room263Button.Name = "room263Button";
     this.room263Button.Size = new System.Drawing.Size(62, 30);
     this.room263Button.TabIndex = 180;
     this.room263Button.Text = "263";
     this.room263Button.UseVisualStyleBackColor = true;
     this.room263Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room271Button
     //
     this.room271Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room271Button.Location = new System.Drawing.Point(500, 313);
     this.room271Button.Name = "room271Button";
     this.room271Button.Size = new System.Drawing.Size(62, 30);
     this.room271Button.TabIndex = 179;
     this.room271Button.Text = "271";
     this.room271Button.UseVisualStyleBackColor = true;
     this.room271Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room270Button
     //
     this.room270Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room270Button.Location = new System.Drawing.Point(434, 313);
     this.room270Button.Name = "room270Button";
     this.room270Button.Size = new System.Drawing.Size(62, 30);
     this.room270Button.TabIndex = 178;
     this.room270Button.Text = "270";
     this.room270Button.UseVisualStyleBackColor = true;
     this.room270Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room269Button
     //
     this.room269Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room269Button.Location = new System.Drawing.Point(368, 313);
     this.room269Button.Name = "room269Button";
     this.room269Button.Size = new System.Drawing.Size(62, 30);
     this.room269Button.TabIndex = 177;
     this.room269Button.Text = "269";
     this.room269Button.UseVisualStyleBackColor = true;
     this.room269Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room262Button
     //
     this.room262Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room262Button.Location = new System.Drawing.Point(500, 277);
     this.room262Button.Name = "room262Button";
     this.room262Button.Size = new System.Drawing.Size(62, 30);
     this.room262Button.TabIndex = 176;
     this.room262Button.Text = "262";
     this.room262Button.UseVisualStyleBackColor = true;
     this.room262Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room261Button
     //
     this.room261Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room261Button.Location = new System.Drawing.Point(434, 277);
     this.room261Button.Name = "room261Button";
     this.room261Button.Size = new System.Drawing.Size(62, 30);
     this.room261Button.TabIndex = 175;
     this.room261Button.Text = "261";
     this.room261Button.UseVisualStyleBackColor = true;
     this.room261Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room260Button
     //
     this.room260Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room260Button.Location = new System.Drawing.Point(368, 277);
     this.room260Button.Name = "room260Button";
     this.room260Button.Size = new System.Drawing.Size(62, 30);
     this.room260Button.TabIndex = 174;
     this.room260Button.Text = "260";
     this.room260Button.UseVisualStyleBackColor = true;
     this.room260Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room268Button
     //
     this.room268Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room268Button.Location = new System.Drawing.Point(302, 313);
     this.room268Button.Name = "room268Button";
     this.room268Button.Size = new System.Drawing.Size(62, 30);
     this.room268Button.TabIndex = 173;
     this.room268Button.Text = "268";
     this.room268Button.UseVisualStyleBackColor = true;
     this.room268Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room267Button
     //
     this.room267Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room267Button.Location = new System.Drawing.Point(203, 313);
     this.room267Button.Name = "room267Button";
     this.room267Button.Size = new System.Drawing.Size(62, 30);
     this.room267Button.TabIndex = 172;
     this.room267Button.Text = "267";
     this.room267Button.UseVisualStyleBackColor = true;
     this.room267Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room266Button
     //
     this.room266Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room266Button.Location = new System.Drawing.Point(137, 313);
     this.room266Button.Name = "room266Button";
     this.room266Button.Size = new System.Drawing.Size(62, 30);
     this.room266Button.TabIndex = 171;
     this.room266Button.Text = "266";
     this.room266Button.UseVisualStyleBackColor = true;
     this.room266Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room265Button
     //
     this.room265Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room265Button.Location = new System.Drawing.Point(71, 313);
     this.room265Button.Name = "room265Button";
     this.room265Button.Size = new System.Drawing.Size(62, 30);
     this.room265Button.TabIndex = 170;
     this.room265Button.Text = "265";
     this.room265Button.UseVisualStyleBackColor = true;
     this.room265Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room264Button
     //
     this.room264Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room264Button.Location = new System.Drawing.Point(5, 313);
     this.room264Button.Name = "room264Button";
     this.room264Button.Size = new System.Drawing.Size(62, 30);
     this.room264Button.TabIndex = 169;
     this.room264Button.Text = "264";
     this.room264Button.UseVisualStyleBackColor = true;
     this.room264Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room259Button
     //
     this.room259Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room259Button.Location = new System.Drawing.Point(302, 277);
     this.room259Button.Name = "room259Button";
     this.room259Button.Size = new System.Drawing.Size(62, 30);
     this.room259Button.TabIndex = 168;
     this.room259Button.Text = "259";
     this.room259Button.UseVisualStyleBackColor = true;
     this.room259Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room258Button
     //
     this.room258Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room258Button.Location = new System.Drawing.Point(203, 277);
     this.room258Button.Name = "room258Button";
     this.room258Button.Size = new System.Drawing.Size(62, 30);
     this.room258Button.TabIndex = 167;
     this.room258Button.Text = "258";
     this.room258Button.UseVisualStyleBackColor = true;
     this.room258Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room256Button
     //
     this.room256Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room256Button.Location = new System.Drawing.Point(71, 277);
     this.room256Button.Name = "room256Button";
     this.room256Button.Size = new System.Drawing.Size(62, 30);
     this.room256Button.TabIndex = 166;
     this.room256Button.Text = "256";
     this.room256Button.UseVisualStyleBackColor = true;
     this.room256Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room257Button
     //
     this.room257Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room257Button.Location = new System.Drawing.Point(137, 277);
     this.room257Button.Name = "room257Button";
     this.room257Button.Size = new System.Drawing.Size(62, 30);
     this.room257Button.TabIndex = 165;
     this.room257Button.Text = "257";
     this.room257Button.UseVisualStyleBackColor = true;
     this.room257Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room255Button
     //
     this.room255Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room255Button.Location = new System.Drawing.Point(5, 277);
     this.room255Button.Name = "room255Button";
     this.room255Button.Size = new System.Drawing.Size(62, 30);
     this.room255Button.TabIndex = 164;
     this.room255Button.Text = "255";
     this.room255Button.UseVisualStyleBackColor = true;
     this.room255Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room254Button
     //
     this.room254Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room254Button.Location = new System.Drawing.Point(564, 227);
     this.room254Button.Name = "room254Button";
     this.room254Button.Size = new System.Drawing.Size(62, 30);
     this.room254Button.TabIndex = 162;
     this.room254Button.Text = "254";
     this.room254Button.UseVisualStyleBackColor = true;
     this.room254Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room245Button
     //
     this.room245Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room245Button.Location = new System.Drawing.Point(564, 191);
     this.room245Button.Name = "room245Button";
     this.room245Button.Size = new System.Drawing.Size(62, 30);
     this.room245Button.TabIndex = 161;
     this.room245Button.Text = "245";
     this.room245Button.UseVisualStyleBackColor = true;
     this.room245Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room253Button
     //
     this.room253Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room253Button.Location = new System.Drawing.Point(498, 227);
     this.room253Button.Name = "room253Button";
     this.room253Button.Size = new System.Drawing.Size(62, 30);
     this.room253Button.TabIndex = 160;
     this.room253Button.Text = "253";
     this.room253Button.UseVisualStyleBackColor = true;
     this.room253Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room252Button
     //
     this.room252Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room252Button.Location = new System.Drawing.Point(432, 227);
     this.room252Button.Name = "room252Button";
     this.room252Button.Size = new System.Drawing.Size(62, 30);
     this.room252Button.TabIndex = 159;
     this.room252Button.Text = "252";
     this.room252Button.UseVisualStyleBackColor = true;
     this.room252Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room251Button
     //
     this.room251Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room251Button.Location = new System.Drawing.Point(366, 227);
     this.room251Button.Name = "room251Button";
     this.room251Button.Size = new System.Drawing.Size(62, 30);
     this.room251Button.TabIndex = 158;
     this.room251Button.Text = "251";
     this.room251Button.UseVisualStyleBackColor = true;
     this.room251Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room244Button
     //
     this.room244Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room244Button.Location = new System.Drawing.Point(498, 191);
     this.room244Button.Name = "room244Button";
     this.room244Button.Size = new System.Drawing.Size(62, 30);
     this.room244Button.TabIndex = 157;
     this.room244Button.Text = "244";
     this.room244Button.UseVisualStyleBackColor = true;
     this.room244Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room243Button
     //
     this.room243Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room243Button.Location = new System.Drawing.Point(432, 191);
     this.room243Button.Name = "room243Button";
     this.room243Button.Size = new System.Drawing.Size(62, 30);
     this.room243Button.TabIndex = 156;
     this.room243Button.Text = "243";
     this.room243Button.UseVisualStyleBackColor = true;
     this.room243Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room242Button
     //
     this.room242Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room242Button.Location = new System.Drawing.Point(366, 191);
     this.room242Button.Name = "room242Button";
     this.room242Button.Size = new System.Drawing.Size(62, 30);
     this.room242Button.TabIndex = 155;
     this.room242Button.Text = "242";
     this.room242Button.UseVisualStyleBackColor = true;
     this.room242Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room250Button
     //
     this.room250Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room250Button.Location = new System.Drawing.Point(300, 227);
     this.room250Button.Name = "room250Button";
     this.room250Button.Size = new System.Drawing.Size(62, 30);
     this.room250Button.TabIndex = 154;
     this.room250Button.Text = "250";
     this.room250Button.UseVisualStyleBackColor = true;
     this.room250Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room249Button
     //
     this.room249Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room249Button.Location = new System.Drawing.Point(201, 227);
     this.room249Button.Name = "room249Button";
     this.room249Button.Size = new System.Drawing.Size(62, 30);
     this.room249Button.TabIndex = 153;
     this.room249Button.Text = "249";
     this.room249Button.UseVisualStyleBackColor = true;
     this.room249Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room248Button
     //
     this.room248Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room248Button.Location = new System.Drawing.Point(135, 227);
     this.room248Button.Name = "room248Button";
     this.room248Button.Size = new System.Drawing.Size(62, 30);
     this.room248Button.TabIndex = 152;
     this.room248Button.Text = "248";
     this.room248Button.UseVisualStyleBackColor = true;
     this.room248Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room247Button
     //
     this.room247Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room247Button.Location = new System.Drawing.Point(69, 227);
     this.room247Button.Name = "room247Button";
     this.room247Button.Size = new System.Drawing.Size(62, 30);
     this.room247Button.TabIndex = 151;
     this.room247Button.Text = "247";
     this.room247Button.UseVisualStyleBackColor = true;
     this.room247Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room246Button
     //
     this.room246Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room246Button.Location = new System.Drawing.Point(3, 227);
     this.room246Button.Name = "room246Button";
     this.room246Button.Size = new System.Drawing.Size(62, 30);
     this.room246Button.TabIndex = 150;
     this.room246Button.Text = "246";
     this.room246Button.UseVisualStyleBackColor = true;
     this.room246Button.Click += new System.EventHandler(this.Room_Click);
     //
     // rom241Button
     //
     this.rom241Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rom241Button.Location = new System.Drawing.Point(300, 191);
     this.rom241Button.Name = "rom241Button";
     this.rom241Button.Size = new System.Drawing.Size(62, 30);
     this.rom241Button.TabIndex = 149;
     this.rom241Button.Text = "241";
     this.rom241Button.UseVisualStyleBackColor = true;
     this.rom241Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room240Button
     //
     this.room240Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room240Button.Location = new System.Drawing.Point(201, 191);
     this.room240Button.Name = "room240Button";
     this.room240Button.Size = new System.Drawing.Size(62, 30);
     this.room240Button.TabIndex = 148;
     this.room240Button.Text = "240";
     this.room240Button.UseVisualStyleBackColor = true;
     this.room240Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room238Button
     //
     this.room238Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room238Button.Location = new System.Drawing.Point(69, 191);
     this.room238Button.Name = "room238Button";
     this.room238Button.Size = new System.Drawing.Size(62, 30);
     this.room238Button.TabIndex = 147;
     this.room238Button.Text = "238";
     this.room238Button.UseVisualStyleBackColor = true;
     this.room238Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room239Button
     //
     this.room239Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room239Button.Location = new System.Drawing.Point(135, 191);
     this.room239Button.Name = "room239Button";
     this.room239Button.Size = new System.Drawing.Size(62, 30);
     this.room239Button.TabIndex = 146;
     this.room239Button.Text = "239";
     this.room239Button.UseVisualStyleBackColor = true;
     this.room239Button.Click += new System.EventHandler(this.Room_Click);
     //
     // rom237Button
     //
     this.rom237Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rom237Button.Location = new System.Drawing.Point(3, 191);
     this.rom237Button.Name = "rom237Button";
     this.rom237Button.Size = new System.Drawing.Size(62, 30);
     this.rom237Button.TabIndex = 145;
     this.rom237Button.Text = "237";
     this.rom237Button.UseVisualStyleBackColor = true;
     this.rom237Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room236Button
     //
     this.room236Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room236Button.Location = new System.Drawing.Point(566, 134);
     this.room236Button.Name = "room236Button";
     this.room236Button.Size = new System.Drawing.Size(62, 30);
     this.room236Button.TabIndex = 144;
     this.room236Button.Text = "236";
     this.room236Button.UseVisualStyleBackColor = true;
     this.room236Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room227Button
     //
     this.room227Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room227Button.Location = new System.Drawing.Point(566, 98);
     this.room227Button.Name = "room227Button";
     this.room227Button.Size = new System.Drawing.Size(62, 30);
     this.room227Button.TabIndex = 143;
     this.room227Button.Text = "227";
     this.room227Button.UseVisualStyleBackColor = true;
     this.room227Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room235Button
     //
     this.room235Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room235Button.Location = new System.Drawing.Point(500, 134);
     this.room235Button.Name = "room235Button";
     this.room235Button.Size = new System.Drawing.Size(62, 30);
     this.room235Button.TabIndex = 142;
     this.room235Button.Text = "235";
     this.room235Button.UseVisualStyleBackColor = true;
     this.room235Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room234Button
     //
     this.room234Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room234Button.Location = new System.Drawing.Point(434, 134);
     this.room234Button.Name = "room234Button";
     this.room234Button.Size = new System.Drawing.Size(62, 30);
     this.room234Button.TabIndex = 141;
     this.room234Button.Text = "234";
     this.room234Button.UseVisualStyleBackColor = true;
     this.room234Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room233Button
     //
     this.room233Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room233Button.Location = new System.Drawing.Point(368, 134);
     this.room233Button.Name = "room233Button";
     this.room233Button.Size = new System.Drawing.Size(62, 30);
     this.room233Button.TabIndex = 140;
     this.room233Button.Text = "233";
     this.room233Button.UseVisualStyleBackColor = true;
     this.room233Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room226Button
     //
     this.room226Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room226Button.Location = new System.Drawing.Point(500, 98);
     this.room226Button.Name = "room226Button";
     this.room226Button.Size = new System.Drawing.Size(62, 30);
     this.room226Button.TabIndex = 139;
     this.room226Button.Text = "226";
     this.room226Button.UseVisualStyleBackColor = true;
     this.room226Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room225Button
     //
     this.room225Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room225Button.Location = new System.Drawing.Point(434, 98);
     this.room225Button.Name = "room225Button";
     this.room225Button.Size = new System.Drawing.Size(62, 30);
     this.room225Button.TabIndex = 138;
     this.room225Button.Text = "225";
     this.room225Button.UseVisualStyleBackColor = true;
     this.room225Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room224Button
     //
     this.room224Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room224Button.Location = new System.Drawing.Point(368, 98);
     this.room224Button.Name = "room224Button";
     this.room224Button.Size = new System.Drawing.Size(62, 30);
     this.room224Button.TabIndex = 137;
     this.room224Button.Text = "224";
     this.room224Button.UseVisualStyleBackColor = true;
     this.room224Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room232Button
     //
     this.room232Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room232Button.Location = new System.Drawing.Point(302, 134);
     this.room232Button.Name = "room232Button";
     this.room232Button.Size = new System.Drawing.Size(62, 30);
     this.room232Button.TabIndex = 136;
     this.room232Button.Text = "232";
     this.room232Button.UseVisualStyleBackColor = true;
     this.room232Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room231Button
     //
     this.room231Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room231Button.Location = new System.Drawing.Point(203, 134);
     this.room231Button.Name = "room231Button";
     this.room231Button.Size = new System.Drawing.Size(62, 30);
     this.room231Button.TabIndex = 135;
     this.room231Button.Text = "231";
     this.room231Button.UseVisualStyleBackColor = true;
     this.room231Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room230Button
     //
     this.room230Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room230Button.Location = new System.Drawing.Point(137, 134);
     this.room230Button.Name = "room230Button";
     this.room230Button.Size = new System.Drawing.Size(62, 30);
     this.room230Button.TabIndex = 134;
     this.room230Button.Text = "230";
     this.room230Button.UseVisualStyleBackColor = true;
     this.room230Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room229Button
     //
     this.room229Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room229Button.Location = new System.Drawing.Point(71, 134);
     this.room229Button.Name = "room229Button";
     this.room229Button.Size = new System.Drawing.Size(62, 30);
     this.room229Button.TabIndex = 133;
     this.room229Button.Text = "229";
     this.room229Button.UseVisualStyleBackColor = true;
     this.room229Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room228Button
     //
     this.room228Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room228Button.Location = new System.Drawing.Point(5, 134);
     this.room228Button.Name = "room228Button";
     this.room228Button.Size = new System.Drawing.Size(62, 30);
     this.room228Button.TabIndex = 132;
     this.room228Button.Text = "228";
     this.room228Button.UseVisualStyleBackColor = true;
     this.room228Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room223Button
     //
     this.room223Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room223Button.Location = new System.Drawing.Point(302, 98);
     this.room223Button.Name = "room223Button";
     this.room223Button.Size = new System.Drawing.Size(62, 30);
     this.room223Button.TabIndex = 131;
     this.room223Button.Text = "223";
     this.room223Button.UseVisualStyleBackColor = true;
     this.room223Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room222Button
     //
     this.room222Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room222Button.Location = new System.Drawing.Point(203, 98);
     this.room222Button.Name = "room222Button";
     this.room222Button.Size = new System.Drawing.Size(62, 30);
     this.room222Button.TabIndex = 130;
     this.room222Button.Text = "222";
     this.room222Button.UseVisualStyleBackColor = true;
     this.room222Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room220Button
     //
     this.room220Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room220Button.Location = new System.Drawing.Point(71, 98);
     this.room220Button.Name = "room220Button";
     this.room220Button.Size = new System.Drawing.Size(62, 30);
     this.room220Button.TabIndex = 129;
     this.room220Button.Text = "220";
     this.room220Button.UseVisualStyleBackColor = true;
     this.room220Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room221Button
     //
     this.room221Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room221Button.Location = new System.Drawing.Point(137, 98);
     this.room221Button.Name = "room221Button";
     this.room221Button.Size = new System.Drawing.Size(62, 30);
     this.room221Button.TabIndex = 128;
     this.room221Button.Text = "221";
     this.room221Button.UseVisualStyleBackColor = true;
     this.room221Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room219Button
     //
     this.room219Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room219Button.Location = new System.Drawing.Point(5, 98);
     this.room219Button.Name = "room219Button";
     this.room219Button.Size = new System.Drawing.Size(62, 30);
     this.room219Button.TabIndex = 127;
     this.room219Button.Text = "219";
     this.room219Button.UseVisualStyleBackColor = true;
     this.room219Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room218Button
     //
     this.room218Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room218Button.Location = new System.Drawing.Point(566, 41);
     this.room218Button.Name = "room218Button";
     this.room218Button.Size = new System.Drawing.Size(62, 30);
     this.room218Button.TabIndex = 125;
     this.room218Button.Text = "218";
     this.room218Button.UseVisualStyleBackColor = true;
     this.room218Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room209Button
     //
     this.room209Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room209Button.Location = new System.Drawing.Point(566, 5);
     this.room209Button.Name = "room209Button";
     this.room209Button.Size = new System.Drawing.Size(62, 30);
     this.room209Button.TabIndex = 124;
     this.room209Button.Text = "209";
     this.room209Button.UseVisualStyleBackColor = true;
     this.room209Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room217Button
     //
     this.room217Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room217Button.Location = new System.Drawing.Point(500, 41);
     this.room217Button.Name = "room217Button";
     this.room217Button.Size = new System.Drawing.Size(62, 30);
     this.room217Button.TabIndex = 123;
     this.room217Button.Text = "217";
     this.room217Button.UseVisualStyleBackColor = true;
     this.room217Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room216Button
     //
     this.room216Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room216Button.Location = new System.Drawing.Point(434, 41);
     this.room216Button.Name = "room216Button";
     this.room216Button.Size = new System.Drawing.Size(62, 30);
     this.room216Button.TabIndex = 122;
     this.room216Button.Text = "216";
     this.room216Button.UseVisualStyleBackColor = true;
     this.room216Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room215Button
     //
     this.room215Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room215Button.Location = new System.Drawing.Point(368, 41);
     this.room215Button.Name = "room215Button";
     this.room215Button.Size = new System.Drawing.Size(62, 30);
     this.room215Button.TabIndex = 121;
     this.room215Button.Text = "215";
     this.room215Button.UseVisualStyleBackColor = true;
     this.room215Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room208Button
     //
     this.room208Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room208Button.Location = new System.Drawing.Point(500, 5);
     this.room208Button.Name = "room208Button";
     this.room208Button.Size = new System.Drawing.Size(62, 30);
     this.room208Button.TabIndex = 120;
     this.room208Button.Text = "208";
     this.room208Button.UseVisualStyleBackColor = true;
     this.room208Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room207Button
     //
     this.room207Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room207Button.Location = new System.Drawing.Point(434, 5);
     this.room207Button.Name = "room207Button";
     this.room207Button.Size = new System.Drawing.Size(62, 30);
     this.room207Button.TabIndex = 119;
     this.room207Button.Text = "207";
     this.room207Button.UseVisualStyleBackColor = true;
     this.room207Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room206Button
     //
     this.room206Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room206Button.Location = new System.Drawing.Point(368, 5);
     this.room206Button.Name = "room206Button";
     this.room206Button.Size = new System.Drawing.Size(62, 30);
     this.room206Button.TabIndex = 118;
     this.room206Button.Text = "206";
     this.room206Button.UseVisualStyleBackColor = true;
     this.room206Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room214Button
     //
     this.room214Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room214Button.Location = new System.Drawing.Point(302, 41);
     this.room214Button.Name = "room214Button";
     this.room214Button.Size = new System.Drawing.Size(62, 30);
     this.room214Button.TabIndex = 117;
     this.room214Button.Text = "214";
     this.room214Button.UseVisualStyleBackColor = true;
     this.room214Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room213Button
     //
     this.room213Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room213Button.Location = new System.Drawing.Point(203, 41);
     this.room213Button.Name = "room213Button";
     this.room213Button.Size = new System.Drawing.Size(62, 30);
     this.room213Button.TabIndex = 116;
     this.room213Button.Text = "213";
     this.room213Button.UseVisualStyleBackColor = true;
     this.room213Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room212Button
     //
     this.room212Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room212Button.Location = new System.Drawing.Point(137, 41);
     this.room212Button.Name = "room212Button";
     this.room212Button.Size = new System.Drawing.Size(62, 30);
     this.room212Button.TabIndex = 115;
     this.room212Button.Text = "212";
     this.room212Button.UseVisualStyleBackColor = true;
     this.room212Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room211Button
     //
     this.room211Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room211Button.Location = new System.Drawing.Point(71, 41);
     this.room211Button.Name = "room211Button";
     this.room211Button.Size = new System.Drawing.Size(62, 30);
     this.room211Button.TabIndex = 114;
     this.room211Button.Text = "211";
     this.room211Button.UseVisualStyleBackColor = true;
     this.room211Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room210Button
     //
     this.room210Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room210Button.Location = new System.Drawing.Point(5, 41);
     this.room210Button.Name = "room210Button";
     this.room210Button.Size = new System.Drawing.Size(62, 30);
     this.room210Button.TabIndex = 113;
     this.room210Button.Text = "210";
     this.room210Button.UseVisualStyleBackColor = true;
     this.room210Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room205Button
     //
     this.room205Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room205Button.Location = new System.Drawing.Point(302, 5);
     this.room205Button.Name = "room205Button";
     this.room205Button.Size = new System.Drawing.Size(62, 30);
     this.room205Button.TabIndex = 112;
     this.room205Button.Text = "205";
     this.room205Button.UseVisualStyleBackColor = true;
     this.room205Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room204Button
     //
     this.room204Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room204Button.Location = new System.Drawing.Point(203, 5);
     this.room204Button.Name = "room204Button";
     this.room204Button.Size = new System.Drawing.Size(62, 30);
     this.room204Button.TabIndex = 111;
     this.room204Button.Text = "204";
     this.room204Button.UseVisualStyleBackColor = true;
     this.room204Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room202Button
     //
     this.room202Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room202Button.Location = new System.Drawing.Point(71, 5);
     this.room202Button.Name = "room202Button";
     this.room202Button.Size = new System.Drawing.Size(62, 30);
     this.room202Button.TabIndex = 110;
     this.room202Button.Text = "202";
     this.room202Button.UseVisualStyleBackColor = true;
     this.room202Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room203Button
     //
     this.room203Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room203Button.Location = new System.Drawing.Point(137, 5);
     this.room203Button.Name = "room203Button";
     this.room203Button.Size = new System.Drawing.Size(62, 30);
     this.room203Button.TabIndex = 109;
     this.room203Button.Text = "203";
     this.room203Button.UseVisualStyleBackColor = true;
     this.room203Button.Click += new System.EventHandler(this.Room_Click);
     //
     // room201Button
     //
     this.room201Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.room201Button.Location = new System.Drawing.Point(5, 5);
     this.room201Button.Name = "room201Button";
     this.room201Button.Size = new System.Drawing.Size(62, 30);
     this.room201Button.TabIndex = 108;
     this.room201Button.Text = "201";
     this.room201Button.UseVisualStyleBackColor = true;
     this.room201Button.Click += new System.EventHandler(this.Room_Click);
     //
     // label19
     //
     this.label19.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label19.Location = new System.Drawing.Point(263, 5);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(42, 66);
     this.label19.TabIndex = 126;
     this.label19.Text = "Stairs";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.label19.Click += new System.EventHandler(this.Room_Click);
     //
     // tabPage3
     //
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Size = new System.Drawing.Size(631, 351);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "3rd Floor";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // tabPage4
     //
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Size = new System.Drawing.Size(631, 351);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "4th Floor";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // tabPage5
     //
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Margin = new System.Windows.Forms.Padding(2);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Size = new System.Drawing.Size(631, 351);
     this.tabPage5.TabIndex = 4;
     this.tabPage5.Text = "5th Floor";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // label16
     //
     this.label16.BackColor = System.Drawing.Color.SkyBlue;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(486, 599);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(145, 65);
     this.label16.TabIndex = 106;
     this.label16.Text = "Booked";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label15
     //
     this.label15.BackColor = System.Drawing.Color.MediumSeaGreen;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(335, 599);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(145, 65);
     this.label15.TabIndex = 105;
     this.label15.Text = "Available";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label14
     //
     this.label14.BackColor = System.Drawing.Color.MediumSlateBlue;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(184, 599);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(145, 65);
     this.label14.TabIndex = 104;
     this.label14.Text = "Guest Checked-In";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label13
     //
     this.label13.BackColor = System.Drawing.Color.Tomato;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(33, 599);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(145, 65);
     this.label13.TabIndex = 103;
     this.label13.Text = "Check-out pending";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.WhiteSmoke;
     this.label8.Location = new System.Drawing.Point(12, 582);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(634, 88);
     this.label8.TabIndex = 98;
     this.label8.Text = "Color Codes";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.checkOutDateTimePicker);
     this.groupBox1.Controls.Add(this.checkInDateTimePicker);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.checkAvailabilityButton);
     this.groupBox1.Controls.Add(this.clearButton);
     this.groupBox1.Controls.Add(this.roomLevelComboBox);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.roomTypeComboBox);
     this.groupBox1.Location = new System.Drawing.Point(255, 93);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
     this.groupBox1.Size = new System.Drawing.Size(391, 101);
     this.groupBox1.TabIndex = 94;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Check Availability";
     //
     // checkOutDateTimePicker
     //
     this.checkOutDateTimePicker.CustomFormat = "yyyy-MM-dd";
     this.checkOutDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.checkOutDateTimePicker.Location = new System.Drawing.Point(61, 43);
     this.checkOutDateTimePicker.Margin = new System.Windows.Forms.Padding(2);
     this.checkOutDateTimePicker.Name = "checkOutDateTimePicker";
     this.checkOutDateTimePicker.Size = new System.Drawing.Size(99, 20);
     this.checkOutDateTimePicker.TabIndex = 103;
     this.checkOutDateTimePicker.Value = new System.DateTime(2012, 12, 5, 0, 0, 0, 0);
     //
     // checkInDateTimePicker
     //
     this.checkInDateTimePicker.CustomFormat = "yyyy-MM-dd";
     this.checkInDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.checkInDateTimePicker.Location = new System.Drawing.Point(61, 19);
     this.checkInDateTimePicker.Margin = new System.Windows.Forms.Padding(2);
     this.checkInDateTimePicker.Name = "checkInDateTimePicker";
     this.checkInDateTimePicker.Size = new System.Drawing.Size(99, 20);
     this.checkInDateTimePicker.TabIndex = 102;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(5, 49);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(50, 13);
     this.label3.TabIndex = 93;
     this.label3.Text = "Date Out";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(5, 25);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(42, 13);
     this.label2.TabIndex = 92;
     this.label2.Text = "Date In";
     //
     // checkAvailabilityButton
     //
     this.checkAvailabilityButton.Location = new System.Drawing.Point(271, 68);
     this.checkAvailabilityButton.Name = "checkAvailabilityButton";
     this.checkAvailabilityButton.Size = new System.Drawing.Size(47, 26);
     this.checkAvailabilityButton.TabIndex = 100;
     this.checkAvailabilityButton.Text = "Check";
     this.checkAvailabilityButton.UseVisualStyleBackColor = true;
     this.checkAvailabilityButton.Click += new System.EventHandler(this.checkAvailabilityButton_Click);
     //
     // clearButton
     //
     this.clearButton.Location = new System.Drawing.Point(327, 68);
     this.clearButton.Name = "clearButton";
     this.clearButton.Size = new System.Drawing.Size(47, 26);
     this.clearButton.TabIndex = 101;
     this.clearButton.Text = "Clear";
     this.clearButton.UseVisualStyleBackColor = true;
     this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
     //
     // roomLevelComboBox
     //
     this.roomLevelComboBox.FormattingEnabled = true;
     this.roomLevelComboBox.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11"});
     this.roomLevelComboBox.Location = new System.Drawing.Point(275, 41);
     this.roomLevelComboBox.Name = "roomLevelComboBox";
     this.roomLevelComboBox.Size = new System.Drawing.Size(99, 21);
     this.roomLevelComboBox.TabIndex = 99;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(196, 22);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(62, 13);
     this.label4.TabIndex = 96;
     this.label4.Text = "Room Type";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(196, 49);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(64, 13);
     this.label5.TabIndex = 98;
     this.label5.Text = "Room Level";
     //
     // roomTypeComboBox
     //
     this.roomTypeComboBox.FormattingEnabled = true;
     this.roomTypeComboBox.Items.AddRange(new object[] {
     "Single",
     "Double",
     "King",
     "Luxery",
     "Presidential"});
     this.roomTypeComboBox.Location = new System.Drawing.Point(275, 14);
     this.roomTypeComboBox.Name = "roomTypeComboBox";
     this.roomTypeComboBox.Size = new System.Drawing.Size(99, 21);
     this.roomTypeComboBox.TabIndex = 97;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.clearNamesButton);
     this.groupBox2.Controls.Add(this.lastNameTextBox);
     this.groupBox2.Controls.Add(this.firstNameTextBox);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.retrieveBookingButton);
     this.groupBox2.Location = new System.Drawing.Point(13, 93);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(237, 101);
     this.groupBox2.TabIndex = 96;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Retrieve Existing Booking";
     //
     // clearNamesButton
     //
     this.clearNamesButton.Location = new System.Drawing.Point(163, 68);
     this.clearNamesButton.Margin = new System.Windows.Forms.Padding(2);
     this.clearNamesButton.Name = "clearNamesButton";
     this.clearNamesButton.Size = new System.Drawing.Size(61, 27);
     this.clearNamesButton.TabIndex = 107;
     this.clearNamesButton.Text = "Clear";
     this.clearNamesButton.UseVisualStyleBackColor = true;
     this.clearNamesButton.Click += new System.EventHandler(this.clearNamesButton_Click);
     //
     // lastNameTextBox
     //
     this.lastNameTextBox.Location = new System.Drawing.Point(86, 43);
     this.lastNameTextBox.Name = "lastNameTextBox";
     this.lastNameTextBox.Size = new System.Drawing.Size(138, 20);
     this.lastNameTextBox.TabIndex = 106;
     //
     // firstNameTextBox
     //
     this.firstNameTextBox.Location = new System.Drawing.Point(86, 17);
     this.firstNameTextBox.Name = "firstNameTextBox";
     this.firstNameTextBox.Size = new System.Drawing.Size(138, 20);
     this.firstNameTextBox.TabIndex = 105;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(4, 50);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(58, 13);
     this.label7.TabIndex = 104;
     this.label7.Text = "Last Name";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(4, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(57, 13);
     this.label6.TabIndex = 103;
     this.label6.Text = "First Name";
     //
     // retrieveBookingButton
     //
     this.retrieveBookingButton.Location = new System.Drawing.Point(98, 68);
     this.retrieveBookingButton.Margin = new System.Windows.Forms.Padding(2);
     this.retrieveBookingButton.Name = "retrieveBookingButton";
     this.retrieveBookingButton.Size = new System.Drawing.Size(61, 27);
     this.retrieveBookingButton.TabIndex = 102;
     this.retrieveBookingButton.Text = "Retrieve";
     this.retrieveBookingButton.UseVisualStyleBackColor = true;
     this.retrieveBookingButton.Click += new System.EventHandler(this.retrieveBookingButton_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(13, 12);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(207, 75);
     this.pictureBox1.TabIndex = 97;
     this.pictureBox1.TabStop = false;
     //
     // label17
     //
     this.label17.BackColor = System.Drawing.SystemColors.Window;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(12, 24);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(634, 63);
     this.label17.TabIndex = 98;
     this.label17.Text = "Conestoga Inn - Hotel Reservation System";
     this.label17.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(661, 24);
     this.menuStrip1.TabIndex = 107;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.exitToolStripMenuItem.Text = "E&xit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.viewHelpToolStripMenuItem,
     this.programmingManualToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // viewHelpToolStripMenuItem
     //
     this.viewHelpToolStripMenuItem.Name = "viewHelpToolStripMenuItem";
     this.viewHelpToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
     this.viewHelpToolStripMenuItem.Text = "View Help";
     this.viewHelpToolStripMenuItem.Click += new System.EventHandler(this.viewHelpToolStripMenuItem_Click);
     //
     // programmingManualToolStripMenuItem
     //
     this.programmingManualToolStripMenuItem.Name = "programmingManualToolStripMenuItem";
     this.programmingManualToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
     this.programmingManualToolStripMenuItem.Text = "Programmer\'s Reference";
     this.programmingManualToolStripMenuItem.Click += new System.EventHandler(this.programmingManualToolStripMenuItem_Click);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
     this.aboutToolStripMenuItem.Text = "&About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // Welcome
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(661, 674);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.label8);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MainMenuStrip = this.menuStrip1;
     this.MaximizeBox = false;
     this.Name = "Welcome";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Welcome - Conestoga Inn Hotel Reservation System";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Welcome_FormClosed);
     this.Load += new System.EventHandler(this.Welcome_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 33
0
        private void InitializeComponent()
        {
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            this.buttonClose = new System.Windows.Forms.Button();
            this.buttonCrudeDefaultPerformanceIssueAdd    = new System.Windows.Forms.Button();
            this.buttonCrudeDefaultPerformanceIssueEdit   = new System.Windows.Forms.Button();
            this.buttonCrudeDefaultPerformanceIssueSearch = new System.Windows.Forms.Button();
            this.dataGridViewCrudeDefaultPerformanceIssue = new System.Windows.Forms.DataGridView();
            this.labelCommandName          = new System.Windows.Forms.Label();
            this.textBoxCommandName        = new System.Windows.Forms.TextBox();
            this.labelCommandText          = new System.Windows.Forms.Label();
            this.textBoxCommandText        = new System.Windows.Forms.TextBox();
            this.labelMilliseconds         = new System.Windows.Forms.Label();
            this.maskedTextBoxMilliseconds = new System.Windows.Forms.MaskedTextBox();
            this.labelDateTime             = new System.Windows.Forms.Label();
            this.dateTimePickerDateTime    = new System.Windows.Forms.DateTimePicker();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewCrudeDefaultPerformanceIssue)).BeginInit();
            this.SuspendLayout();
            //
            // labelCommandName
            //
            this.labelCommandName.AutoSize = true;
            this.labelCommandName.Location = new System.Drawing.Point(11, 13);
            this.labelCommandName.Name     = "labelCommandName";
            this.labelCommandName.Size     = new System.Drawing.Size(71, 13);
            this.labelCommandName.TabIndex = 2;
            this.labelCommandName.Text     = "Command Name:";
            //
            //textBoxCommandName
            //
            this.textBoxCommandName.Location = new System.Drawing.Point(140, 13);
            this.textBoxCommandName.Anchor   = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxCommandName.Name     = "textBoxCommandName";
            this.textBoxCommandName.Size     = new System.Drawing.Size(250, 20);
            this.textBoxCommandName.TabIndex = 3;
            //
            // labelCommandText
            //
            this.labelCommandText.AutoSize = true;
            this.labelCommandText.Location = new System.Drawing.Point(11, 36);
            this.labelCommandText.Name     = "labelCommandText";
            this.labelCommandText.Size     = new System.Drawing.Size(71, 13);
            this.labelCommandText.TabIndex = 4;
            this.labelCommandText.Text     = "Command Text:";
            //
            //textBoxCommandText
            //
            this.textBoxCommandText.Location = new System.Drawing.Point(140, 36);
            this.textBoxCommandText.Anchor   = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxCommandText.Name     = "textBoxCommandText";
            this.textBoxCommandText.Size     = new System.Drawing.Size(250, 20);
            this.textBoxCommandText.TabIndex = 5;
            //
            // labelMilliseconds
            //
            this.labelMilliseconds.AutoSize = true;
            this.labelMilliseconds.Location = new System.Drawing.Point(11, 59);
            this.labelMilliseconds.Name     = "labelMilliseconds";
            this.labelMilliseconds.Size     = new System.Drawing.Size(71, 13);
            this.labelMilliseconds.TabIndex = 6;
            this.labelMilliseconds.Text     = "Milliseconds:";
            //
            //maskedTextBoxMilliseconds
            //
            this.maskedTextBoxMilliseconds.Location = new System.Drawing.Point(140, 59);
            this.maskedTextBoxMilliseconds.Anchor   = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
            this.maskedTextBoxMilliseconds.Name     = "maskedTextBoxMilliseconds";
            this.maskedTextBoxMilliseconds.Size     = new System.Drawing.Size(250, 20);
            this.maskedTextBoxMilliseconds.TabIndex = 7;
            //
            // labelDateTime
            //
            this.labelDateTime.AutoSize = true;
            this.labelDateTime.Location = new System.Drawing.Point(11, 82);
            this.labelDateTime.Name     = "labelDateTime";
            this.labelDateTime.Size     = new System.Drawing.Size(71, 13);
            this.labelDateTime.TabIndex = 8;
            this.labelDateTime.Text     = "Date Time:";
            //
            //dateTimePickerDateTime
            //
            this.dateTimePickerDateTime.Location     = new System.Drawing.Point(140, 82);
            this.dateTimePickerDateTime.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
            this.dateTimePickerDateTime.Name         = "dateTimePickerDateTime";
            this.dateTimePickerDateTime.Size         = new System.Drawing.Size(250, 20);
            this.dateTimePickerDateTime.TabIndex     = 9;
            this.dateTimePickerDateTime.Checked      = false;
            this.dateTimePickerDateTime.ShowCheckBox = true;
            //
            // dataGridViewCrudeDefaultPerformanceIssue
            //
            dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.dataGridViewCrudeDefaultPerformanceIssue.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
            this.dataGridViewCrudeDefaultPerformanceIssue.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                                                         | System.Windows.Forms.AnchorStyles.Right)));
            this.dataGridViewCrudeDefaultPerformanceIssue.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewCrudeDefaultPerformanceIssue.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dataGridViewCrudeDefaultPerformanceIssue.Location      = new System.Drawing.Point(12, 115);
            this.dataGridViewCrudeDefaultPerformanceIssue.Name          = "dataGridViewCrudeDefaultPerformanceIssue";
            this.dataGridViewCrudeDefaultPerformanceIssue.Size          = new System.Drawing.Size(378, 96);
            this.dataGridViewCrudeDefaultPerformanceIssue.TabIndex      = 0;
            this.dataGridViewCrudeDefaultPerformanceIssue.ReadOnly      = true;
            this.dataGridViewCrudeDefaultPerformanceIssue.DoubleClick  += new System.EventHandler(this.dataGridViewCrudeDefaultPerformanceIssue_DoubleClick);
            //
            // buttonClose
            //
            this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonClose.Location = new System.Drawing.Point(298, 218);

            this.buttonClose.Name     = "buttonClose";
            this.buttonClose.Size     = new System.Drawing.Size(92, 22);
            this.buttonClose.TabIndex = 1;
            this.buttonClose.Text     = "&Close";
            this.buttonClose.UseVisualStyleBackColor = true;
            this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
            //
            // buttonCrudeDefaultPerformanceIssueSearch
            //
            this.buttonCrudeDefaultPerformanceIssueSearch.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonCrudeDefaultPerformanceIssueSearch.Location = new System.Drawing.Point(198, 218);
            this.buttonCrudeDefaultPerformanceIssueSearch.Name     = "buttonCrudeDefaultPerformanceIssueSearch";
            this.buttonCrudeDefaultPerformanceIssueSearch.Size     = new System.Drawing.Size(92, 22);
            this.buttonCrudeDefaultPerformanceIssueSearch.TabIndex = 2;
            this.buttonCrudeDefaultPerformanceIssueSearch.Text     = "&Search";
            this.buttonCrudeDefaultPerformanceIssueSearch.UseVisualStyleBackColor = true;
            this.buttonCrudeDefaultPerformanceIssueSearch.Click += new System.EventHandler(this.buttonCrudeDefaultPerformanceIssueSearch_Click);
            //
            // buttonCrudeDefaultPerformanceIssueAdd
            //
            this.buttonCrudeDefaultPerformanceIssueAdd.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonCrudeDefaultPerformanceIssueAdd.Location = new System.Drawing.Point(98, 218);
            this.buttonCrudeDefaultPerformanceIssueAdd.Name     = "buttonCrudeDefaultPerformanceIssueAdd";
            this.buttonCrudeDefaultPerformanceIssueAdd.Size     = new System.Drawing.Size(92, 22);
            this.buttonCrudeDefaultPerformanceIssueAdd.TabIndex = 3;
            this.buttonCrudeDefaultPerformanceIssueAdd.Text     = "&Add";
            this.buttonCrudeDefaultPerformanceIssueAdd.UseVisualStyleBackColor = true;
            this.buttonCrudeDefaultPerformanceIssueAdd.Click += new System.EventHandler(this.buttonCrudeDefaultPerformanceIssueAdd_Click);
            //
            // buttonCrudeDefaultPerformanceIssueEdit
            //
            this.buttonCrudeDefaultPerformanceIssueEdit.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonCrudeDefaultPerformanceIssueEdit.Location = new System.Drawing.Point(-2, 218);
            this.buttonCrudeDefaultPerformanceIssueEdit.Name     = "buttonCrudeDefaultPerformanceIssueEdit";
            this.buttonCrudeDefaultPerformanceIssueEdit.Size     = new System.Drawing.Size(92, 22);
            this.buttonCrudeDefaultPerformanceIssueEdit.TabIndex = 4;
            this.buttonCrudeDefaultPerformanceIssueEdit.Text     = "&Edit";
            this.buttonCrudeDefaultPerformanceIssueEdit.UseVisualStyleBackColor = true;
            this.buttonCrudeDefaultPerformanceIssueEdit.Click += new System.EventHandler(this.buttonCrudeDefaultPerformanceIssueEdit_Click);
            //
            // GridForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(402, 246);
            this.Controls.Add(this.buttonCrudeDefaultPerformanceIssueSearch);
            this.Controls.Add(this.buttonClose);
            this.Controls.Add(this.buttonCrudeDefaultPerformanceIssueAdd);
            this.Controls.Add(this.buttonCrudeDefaultPerformanceIssueEdit);
            this.Controls.Add(this.dataGridViewCrudeDefaultPerformanceIssue);
            this.Name = "CrudeDefaultPerformanceIssueSearch";
            this.Text = "Default Performance Issue Search";
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewCrudeDefaultPerformanceIssue)).EndInit();
            this.Controls.Add(this.labelCommandName);
            this.Controls.Add(this.textBoxCommandName);
            this.Controls.Add(this.labelCommandText);
            this.Controls.Add(this.textBoxCommandText);
            this.Controls.Add(this.labelMilliseconds);
            this.Controls.Add(this.maskedTextBoxMilliseconds);
            this.Controls.Add(this.labelDateTime);
            this.Controls.Add(this.dateTimePickerDateTime);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Esempio n. 34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.textBox_Cijena = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.button_izlaz = new System.Windows.Forms.Button();
     this.button_DodajOtpremnicu = new System.Windows.Forms.Button();
     this.textBox_Tezina = new System.Windows.Forms.TextBox();
     this.button_UcitajCijenu = new System.Windows.Forms.Button();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox_PostanskiBroj = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Modern No. 20", 18F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(12, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(153, 25);
     this.label1.TabIndex = 0;
     this.label1.Text = "Poštanski broj";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Modern No. 20", 18F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(226, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(85, 25);
     this.label2.TabIndex = 2;
     this.label2.Text = "Težina ";
     //
     // textBox_Cijena
     //
     this.textBox_Cijena.Enabled = false;
     this.textBox_Cijena.Font = new System.Drawing.Font("Modern No. 20", 18F, System.Drawing.FontStyle.Bold);
     this.textBox_Cijena.Location = new System.Drawing.Point(619, 37);
     this.textBox_Cijena.Name = "textBox_Cijena";
     this.textBox_Cijena.Size = new System.Drawing.Size(148, 33);
     this.textBox_Cijena.TabIndex = 10;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Modern No. 20", 18F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(642, 9);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(75, 25);
     this.label3.TabIndex = 4;
     this.label3.Text = "Cijena";
     //
     // button_izlaz
     //
     this.button_izlaz.AutoSize = true;
     this.button_izlaz.BackColor = System.Drawing.Color.Red;
     this.button_izlaz.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.button_izlaz.ForeColor = System.Drawing.Color.White;
     this.button_izlaz.Location = new System.Drawing.Point(12, 94);
     this.button_izlaz.Name = "button_izlaz";
     this.button_izlaz.Size = new System.Drawing.Size(118, 42);
     this.button_izlaz.TabIndex = 4;
     this.button_izlaz.Text = "Gotovo";
     this.button_izlaz.UseVisualStyleBackColor = false;
     this.button_izlaz.Click += new System.EventHandler(this.button_izlaz_Click);
     //
     // button_DodajOtpremnicu
     //
     this.button_DodajOtpremnicu.AutoSize = true;
     this.button_DodajOtpremnicu.Font = new System.Drawing.Font("Modern No. 20", 20.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button_DodajOtpremnicu.Location = new System.Drawing.Point(503, 97);
     this.button_DodajOtpremnicu.Name = "button_DodajOtpremnicu";
     this.button_DodajOtpremnicu.Size = new System.Drawing.Size(110, 39);
     this.button_DodajOtpremnicu.TabIndex = 3;
     this.button_DodajOtpremnicu.Text = "Spremi";
     this.button_DodajOtpremnicu.UseVisualStyleBackColor = true;
     this.button_DodajOtpremnicu.Click += new System.EventHandler(this.button_DodajOtpremnicu_Click);
     //
     // textBox_Tezina
     //
     this.textBox_Tezina.Font = new System.Drawing.Font("Modern No. 20", 18F, System.Drawing.FontStyle.Bold);
     this.textBox_Tezina.Location = new System.Drawing.Point(202, 37);
     this.textBox_Tezina.Name = "textBox_Tezina";
     this.textBox_Tezina.Size = new System.Drawing.Size(148, 33);
     this.textBox_Tezina.TabIndex = 1;
     this.textBox_Tezina.TextChanged += new System.EventHandler(this.textBox_Tezina_TextChanged);
     //
     // button_UcitajCijenu
     //
     this.button_UcitajCijenu.AutoSize = true;
     this.button_UcitajCijenu.Font = new System.Drawing.Font("Modern No. 20", 20.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button_UcitajCijenu.Location = new System.Drawing.Point(202, 98);
     this.button_UcitajCijenu.Name = "button_UcitajCijenu";
     this.button_UcitajCijenu.Size = new System.Drawing.Size(170, 39);
     this.button_UcitajCijenu.TabIndex = 2;
     this.button_UcitajCijenu.Text = "Učitaj cijenu";
     this.button_UcitajCijenu.UseVisualStyleBackColor = true;
     this.button_UcitajCijenu.Click += new System.EventHandler(this.button_UcitajCijenu_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Silver;
     this.label4.Font = new System.Drawing.Font("Modern No. 20", 12F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Red;
     this.label4.Location = new System.Drawing.Point(130, 73);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(433, 18);
     this.label4.TabIndex = 7;
     this.label4.Text = "OBAVEZNO KORISTITI DECIMALNU ZAREZ, NE TOČKU!!";
     //
     // textBox_PostanskiBroj
     //
     this.textBox_PostanskiBroj.Font = new System.Drawing.Font("Modern No. 20", 18F, System.Drawing.FontStyle.Bold);
     this.textBox_PostanskiBroj.Location = new System.Drawing.Point(17, 37);
     this.textBox_PostanskiBroj.Name = "textBox_PostanskiBroj";
     this.textBox_PostanskiBroj.Size = new System.Drawing.Size(148, 33);
     this.textBox_PostanskiBroj.TabIndex = 0;
     this.textBox_PostanskiBroj.TextChanged += new System.EventHandler(this.textBox_PostanskiBroj_TextChanged);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.dateTimePicker1.Location = new System.Drawing.Point(356, 32);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(257, 38);
     this.dateTimePicker1.TabIndex = 11;
     //
     // Form_Dodaj
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.BackColor = System.Drawing.Color.SkyBlue;
     this.ClientSize = new System.Drawing.Size(799, 144);
     this.Controls.Add(this.dateTimePicker1);
     this.Controls.Add(this.textBox_PostanskiBroj);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.button_UcitajCijenu);
     this.Controls.Add(this.textBox_Tezina);
     this.Controls.Add(this.button_izlaz);
     this.Controls.Add(this.button_DodajOtpremnicu);
     this.Controls.Add(this.textBox_Cijena);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.MaximizeBox = false;
     this.Name = "Form_Dodaj";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Dodaj otpremnicu";
     this.Load += new System.EventHandler(this.Form_Dodaj_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_BENHAN_N0ITRU));
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem1 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem2 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem3 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem4 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem5 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem6 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout grdQLNBKhoa_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.grpThongTinBenhNhan = new Janus.Windows.EditControls.UIGroupBox();
     this.txtPhong = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label94 = new System.Windows.Forms.Label();
     this.txtID = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtMaKhoaThucHien = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtGiuong = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label93 = new System.Windows.Forms.Label();
     this.txtKhoa = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label87 = new System.Windows.Forms.Label();
     this.cboTTBNDanToc = new Janus.Windows.EditControls.UIComboBox();
     this.txtSoBaoHiemYte = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label16 = new System.Windows.Forms.Label();
     this.dtInsToDate = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtDienThoai = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label13 = new System.Windows.Forms.Label();
     this.txtMaBenhAn = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txtMaLanKham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label9 = new System.Windows.Forms.Label();
     this.txtMaBN = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label8 = new System.Windows.Forms.Label();
     this.txtThongTinLienHe = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.txtDoiTuong = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.txtNoiLamViec = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtDiaChi = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label1 = new System.Windows.Forms.Label();
     this.chkNgoaiKieu = new Janus.Windows.EditControls.UICheckBox();
     this.lblDanToc = new System.Windows.Forms.Label();
     this.lblNgheNghiep = new System.Windows.Forms.Label();
     this.cboGioiTinh = new Janus.Windows.EditControls.UIComboBox();
     this.txtNgheNghiep = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblGioiTinh = new System.Windows.Forms.Label();
     this.txtNamSinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtThangSinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNgaySinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblNgaySinh = new System.Windows.Forms.Label();
     this.lblTenBn = new System.Windows.Forms.Label();
     this.txtHoTen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.uiGroupBox4 = new Janus.Windows.EditControls.UIGroupBox();
     this.txtTKBAHuongDieuTri = new System.Windows.Forms.RichTextBox();
     this.label92 = new System.Windows.Forms.Label();
     this.txtTKBATinhTrangRaVien = new System.Windows.Forms.RichTextBox();
     this.txtTKBAPhuongPhapDieuTri = new System.Windows.Forms.RichTextBox();
     this.label91 = new System.Windows.Forms.Label();
     this.txtTKBATTomTatKetQua = new System.Windows.Forms.RichTextBox();
     this.label90 = new System.Windows.Forms.Label();
     this.label89 = new System.Windows.Forms.Label();
     this.txtTKBAQuaTrinhBenhLy = new System.Windows.Forms.RichTextBox();
     this.label88 = new System.Windows.Forms.Label();
     this.grpBenhAn = new Janus.Windows.EditControls.UIGroupBox();
     this.txtBenhAnPhanBiet = new System.Windows.Forms.TextBox();
     this.txtBenhAnBenhKemTheo = new System.Windows.Forms.TextBox();
     this.txtBenhAnBenhChinh = new System.Windows.Forms.TextBox();
     this.txtBenhAnHuongDieuTri = new System.Windows.Forms.RichTextBox();
     this.label86 = new System.Windows.Forms.Label();
     this.txtBenhAnTienLuong = new System.Windows.Forms.RichTextBox();
     this.label85 = new System.Windows.Forms.Label();
     this.label84 = new System.Windows.Forms.Label();
     this.label68 = new System.Windows.Forms.Label();
     this.label67 = new System.Windows.Forms.Label();
     this.label66 = new System.Windows.Forms.Label();
     this.label65 = new System.Windows.Forms.Label();
     this.txtBenhAnTomTatBenhAn = new System.Windows.Forms.RichTextBox();
     this.txtBenhAnCacXetNghiem = new System.Windows.Forms.RichTextBox();
     this.label64 = new System.Windows.Forms.Label();
     this.txtBenhAnNoiTiet = new System.Windows.Forms.RichTextBox();
     this.label63 = new System.Windows.Forms.Label();
     this.txtBenhAnMat = new System.Windows.Forms.RichTextBox();
     this.label62 = new System.Windows.Forms.Label();
     this.txtBenhAnRangHamMat = new System.Windows.Forms.RichTextBox();
     this.label61 = new System.Windows.Forms.Label();
     this.txtBenhAnTaiMuiHong = new System.Windows.Forms.RichTextBox();
     this.label60 = new System.Windows.Forms.Label();
     this.txtBenhAnCoXuongKhop = new System.Windows.Forms.RichTextBox();
     this.label59 = new System.Windows.Forms.Label();
     this.txtBenhAnThanKinh = new System.Windows.Forms.RichTextBox();
     this.txtBenhAnThanTietNieuSinhDuc = new System.Windows.Forms.RichTextBox();
     this.label58 = new System.Windows.Forms.Label();
     this.label57 = new System.Windows.Forms.Label();
     this.txtBenhAnTieuHoa = new System.Windows.Forms.RichTextBox();
     this.label56 = new System.Windows.Forms.Label();
     this.txtBenhAnHoHap = new System.Windows.Forms.RichTextBox();
     this.label55 = new System.Windows.Forms.Label();
     this.txtBenhAnTuanHoan = new System.Windows.Forms.RichTextBox();
     this.label54 = new System.Windows.Forms.Label();
     this.label53 = new System.Windows.Forms.Label();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.txtCanNang = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNhipTho = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label83 = new System.Windows.Forms.Label();
     this.txtHuyetApDen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtHuyetApTu = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNhietDo = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label82 = new System.Windows.Forms.Label();
     this.label81 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.label79 = new System.Windows.Forms.Label();
     this.label78 = new System.Windows.Forms.Label();
     this.label77 = new System.Windows.Forms.Label();
     this.label76 = new System.Windows.Forms.Label();
     this.txtMach = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label75 = new System.Windows.Forms.Label();
     this.label74 = new System.Windows.Forms.Label();
     this.label73 = new System.Windows.Forms.Label();
     this.label72 = new System.Windows.Forms.Label();
     this.label71 = new System.Windows.Forms.Label();
     this.label70 = new System.Windows.Forms.Label();
     this.label69 = new System.Windows.Forms.Label();
     this.txtBenhAnToanThan = new System.Windows.Forms.RichTextBox();
     this.label52 = new System.Windows.Forms.Label();
     this.label51 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.txtBenhAnGiaDinh = new System.Windows.Forms.RichTextBox();
     this.label49 = new System.Windows.Forms.Label();
     this.label48 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.txtKhac = new System.Windows.Forms.TextBox();
     this.txtThuocLao = new System.Windows.Forms.TextBox();
     this.txtThuocLa = new System.Windows.Forms.TextBox();
     this.txtRuouBia = new System.Windows.Forms.TextBox();
     this.txtMaTuy = new System.Windows.Forms.TextBox();
     this.txtDiUng = new System.Windows.Forms.TextBox();
     this.chkKhac = new System.Windows.Forms.CheckBox();
     this.chkThuocLao = new System.Windows.Forms.CheckBox();
     this.chkThuocLa = new System.Windows.Forms.CheckBox();
     this.chkRuouBia = new System.Windows.Forms.CheckBox();
     this.chkMaTuy = new System.Windows.Forms.CheckBox();
     this.chkDiUng = new System.Windows.Forms.CheckBox();
     this.label46 = new System.Windows.Forms.Label();
     this.txtBenhAnTienSuBenh = new System.Windows.Forms.RichTextBox();
     this.label45 = new System.Windows.Forms.Label();
     this.label44 = new System.Windows.Forms.Label();
     this.txtBenhAnQuaTrinhBenhLy = new System.Windows.Forms.RichTextBox();
     this.label43 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.txtBenhAnVaoNgayThu = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.txtBenhAnLyDoNhapVien = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.grpTinhTrangRaVien = new Janus.Windows.EditControls.UIGroupBox();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.chkTTRVAcTinh = new System.Windows.Forms.CheckBox();
     this.chkTTRVNghiNgo = new System.Windows.Forms.CheckBox();
     this.chkTTRVLanhTinh = new System.Windows.Forms.CheckBox();
     this.chkTTRVTuVong = new System.Windows.Forms.CheckBox();
     this.chkTTRVNangHon = new System.Windows.Forms.CheckBox();
     this.chkTTRVKhongThayDoi = new System.Windows.Forms.CheckBox();
     this.chkTTRVDoGiam = new System.Windows.Forms.CheckBox();
     this.chkTTRVKhoi = new System.Windows.Forms.CheckBox();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.chkttrvKhac = new System.Windows.Forms.CheckBox();
     this.chkttrvTrong24GioVaoVien = new System.Windows.Forms.CheckBox();
     this.chkttrvSau24Gio = new System.Windows.Forms.CheckBox();
     this.chkttrvDoTaiBien = new System.Windows.Forms.CheckBox();
     this.chkttrvDoBenh = new System.Windows.Forms.CheckBox();
     this.txtTTRVChuanDoanGiaiPhau = new System.Windows.Forms.TextBox();
     this.chkTTRVKhamNgiemTuThi = new System.Windows.Forms.CheckBox();
     this.txtTTRVNguyenNhanChinhTuVong = new System.Windows.Forms.TextBox();
     this.txtTTRVNgayTuVong = new System.Windows.Forms.TextBox();
     this.label37 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.label35 = new System.Windows.Forms.Label();
     this.label34 = new System.Windows.Forms.Label();
     this.grpChanDoan = new Janus.Windows.EditControls.UIGroupBox();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.txtCDKhiVaoDieuTri = new System.Windows.Forms.RichTextBox();
     this.txtCDKKBCapCuu = new System.Windows.Forms.RichTextBox();
     this.chkCDPhauThuat = new System.Windows.Forms.CheckBox();
     this.chkCDThuThuat = new System.Windows.Forms.CheckBox();
     this.txtCDMaKhiVaoDieuTri = new System.Windows.Forms.TextBox();
     this.txtCDMaKKBCapCuu = new System.Windows.Forms.TextBox();
     this.txtCDMaNoiChuyenDen = new System.Windows.Forms.TextBox();
     this.txtCDNoiChuyenDen = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtCDBenhKemTheo = new System.Windows.Forms.RichTextBox();
     this.txtCDBenhChinh = new System.Windows.Forms.RichTextBox();
     this.txtCDMaBenhKemTheo = new System.Windows.Forms.TextBox();
     this.txtCDMaBenhChinh = new System.Windows.Forms.TextBox();
     this.chkCDBienChung = new System.Windows.Forms.CheckBox();
     this.chkCDTaiBien = new System.Windows.Forms.CheckBox();
     this.label27 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.grpQuanLyNguoiBenh = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.chkQLNBKhoaDieuTri = new System.Windows.Forms.CheckBox();
     this.chkQLNBKKB = new System.Windows.Forms.CheckBox();
     this.chkQLNBCapCuu = new System.Windows.Forms.CheckBox();
     this.label21 = new System.Windows.Forms.Label();
     this.grdQLNBKhoa = new Janus.Windows.GridEX.GridEX();
     this.label14 = new System.Windows.Forms.Label();
     this.dtQLNBVaoVien = new System.Windows.Forms.DateTimePicker();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.dtQLNBRaVien = new System.Windows.Forms.TextBox();
     this.chkQLNBDuaVe = new System.Windows.Forms.CheckBox();
     this.chkQLNBBoVe = new System.Windows.Forms.CheckBox();
     this.chkQLNBXinVe = new System.Windows.Forms.CheckBox();
     this.chkQLNBRaVien = new System.Windows.Forms.CheckBox();
     this.chkQLNBCK = new System.Windows.Forms.CheckBox();
     this.chkQLNBTuyenDuoi = new System.Windows.Forms.CheckBox();
     this.chkQLNBTuyenTren = new System.Windows.Forms.CheckBox();
     this.chkQLNBKhac = new System.Windows.Forms.CheckBox();
     this.chkQLNBTuDen = new System.Windows.Forms.CheckBox();
     this.chkQLNBCoQuanYTe = new System.Windows.Forms.CheckBox();
     this.txtQLNBTongSoNgayDieuTri = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.txtQLNBChuyenDen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.txtQLNBLanVaoVien = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.panel2 = new System.Windows.Forms.Panel();
     this.lblMess = new System.Windows.Forms.Label();
     this.cmdDelete = new System.Windows.Forms.Button();
     this.cmdSave = new Janus.Windows.EditControls.UIButton();
     this.cmdInBenhAn = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBenhNhan)).BeginInit();
     this.grpThongTinBenhNhan.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).BeginInit();
     this.uiGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpBenhAn)).BeginInit();
     this.grpBenhAn.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpTinhTrangRaVien)).BeginInit();
     this.grpTinhTrangRaVien.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpChanDoan)).BeginInit();
     this.grpChanDoan.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.grpQuanLyNguoiBenh.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdQLNBKhoa)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // grpThongTinBenhNhan
     //
     this.grpThongTinBenhNhan.Controls.Add(this.txtPhong);
     this.grpThongTinBenhNhan.Controls.Add(this.label94);
     this.grpThongTinBenhNhan.Controls.Add(this.txtID);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaKhoaThucHien);
     this.grpThongTinBenhNhan.Controls.Add(this.txtGiuong);
     this.grpThongTinBenhNhan.Controls.Add(this.label93);
     this.grpThongTinBenhNhan.Controls.Add(this.txtKhoa);
     this.grpThongTinBenhNhan.Controls.Add(this.label87);
     this.grpThongTinBenhNhan.Controls.Add(this.cboTTBNDanToc);
     this.grpThongTinBenhNhan.Controls.Add(this.txtSoBaoHiemYte);
     this.grpThongTinBenhNhan.Controls.Add(this.label16);
     this.grpThongTinBenhNhan.Controls.Add(this.dtInsToDate);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDienThoai);
     this.grpThongTinBenhNhan.Controls.Add(this.label13);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaBenhAn);
     this.grpThongTinBenhNhan.Controls.Add(this.label10);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaLanKham);
     this.grpThongTinBenhNhan.Controls.Add(this.label9);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaBN);
     this.grpThongTinBenhNhan.Controls.Add(this.label8);
     this.grpThongTinBenhNhan.Controls.Add(this.txtThongTinLienHe);
     this.grpThongTinBenhNhan.Controls.Add(this.label5);
     this.grpThongTinBenhNhan.Controls.Add(this.label4);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDoiTuong);
     this.grpThongTinBenhNhan.Controls.Add(this.label3);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNoiLamViec);
     this.grpThongTinBenhNhan.Controls.Add(this.label2);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDiaChi);
     this.grpThongTinBenhNhan.Controls.Add(this.label1);
     this.grpThongTinBenhNhan.Controls.Add(this.chkNgoaiKieu);
     this.grpThongTinBenhNhan.Controls.Add(this.lblDanToc);
     this.grpThongTinBenhNhan.Controls.Add(this.lblNgheNghiep);
     this.grpThongTinBenhNhan.Controls.Add(this.cboGioiTinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNgheNghiep);
     this.grpThongTinBenhNhan.Controls.Add(this.lblGioiTinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNamSinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtThangSinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNgaySinh);
     this.grpThongTinBenhNhan.Controls.Add(this.lblNgaySinh);
     this.grpThongTinBenhNhan.Controls.Add(this.lblTenBn);
     this.grpThongTinBenhNhan.Controls.Add(this.txtHoTen);
     this.grpThongTinBenhNhan.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpThongTinBenhNhan.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpThongTinBenhNhan.Image = ((System.Drawing.Image)(resources.GetObject("grpThongTinBenhNhan.Image")));
     this.grpThongTinBenhNhan.Location = new System.Drawing.Point(0, 0);
     this.grpThongTinBenhNhan.Name = "grpThongTinBenhNhan";
     this.grpThongTinBenhNhan.Size = new System.Drawing.Size(895, 278);
     this.grpThongTinBenhNhan.TabIndex = 0;
     this.grpThongTinBenhNhan.Text = "I.THÔNG TIN BỆNH NHÂN";
     //
     // txtPhong
     //
     this.txtPhong.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPhong.Location = new System.Drawing.Point(613, 26);
     this.txtPhong.Name = "txtPhong";
     this.txtPhong.Size = new System.Drawing.Size(82, 31);
     this.txtPhong.TabIndex = 464;
     this.txtPhong.TabStop = false;
     //
     // label94
     //
     this.label94.AutoSize = true;
     this.label94.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label94.Location = new System.Drawing.Point(522, 35);
     this.label94.Name = "label94";
     this.label94.Size = new System.Drawing.Size(56, 16);
     this.label94.TabIndex = 463;
     this.label94.Text = "Phòng:";
     //
     // txtID
     //
     this.txtID.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtID.Location = new System.Drawing.Point(784, 25);
     this.txtID.Name = "txtID";
     this.txtID.Size = new System.Drawing.Size(98, 31);
     this.txtID.TabIndex = 462;
     this.txtID.TabStop = false;
     this.txtID.Visible = false;
     //
     // txtMaKhoaThucHien
     //
     this.txtMaKhoaThucHien.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaKhoaThucHien.Location = new System.Drawing.Point(784, 25);
     this.txtMaKhoaThucHien.Name = "txtMaKhoaThucHien";
     this.txtMaKhoaThucHien.Size = new System.Drawing.Size(98, 31);
     this.txtMaKhoaThucHien.TabIndex = 461;
     this.txtMaKhoaThucHien.TabStop = false;
     this.txtMaKhoaThucHien.Visible = false;
     //
     // txtGiuong
     //
     this.txtGiuong.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGiuong.Location = new System.Drawing.Point(800, 26);
     this.txtGiuong.Name = "txtGiuong";
     this.txtGiuong.Size = new System.Drawing.Size(82, 31);
     this.txtGiuong.TabIndex = 460;
     this.txtGiuong.TabStop = false;
     //
     // label93
     //
     this.label93.AutoSize = true;
     this.label93.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label93.Location = new System.Drawing.Point(709, 35);
     this.label93.Name = "label93";
     this.label93.Size = new System.Drawing.Size(61, 16);
     this.label93.TabIndex = 459;
     this.label93.Text = "Giường:";
     //
     // txtKhoa
     //
     this.txtKhoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtKhoa.Location = new System.Drawing.Point(123, 25);
     this.txtKhoa.Name = "txtKhoa";
     this.txtKhoa.Size = new System.Drawing.Size(378, 31);
     this.txtKhoa.TabIndex = 458;
     this.txtKhoa.TabStop = false;
     //
     // label87
     //
     this.label87.AutoSize = true;
     this.label87.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label87.Location = new System.Drawing.Point(17, 35);
     this.label87.Name = "label87";
     this.label87.Size = new System.Drawing.Size(47, 16);
     this.label87.TabIndex = 457;
     this.label87.Text = "Khoa:";
     //
     // cboTTBNDanToc
     //
     this.cboTTBNDanToc.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboTTBNDanToc.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator = false;
     uiComboBoxItem1.Text = "Nữ";
     uiComboBoxItem1.Value = 1;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator = false;
     uiComboBoxItem2.Text = "Nam";
     uiComboBoxItem2.Value = 0;
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator = false;
     uiComboBoxItem3.Text = "Khác";
     uiComboBoxItem3.Value = 2;
     this.cboTTBNDanToc.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem1,
     uiComboBoxItem2,
     uiComboBoxItem3});
     this.cboTTBNDanToc.Location = new System.Drawing.Point(609, 147);
     this.cboTTBNDanToc.Name = "cboTTBNDanToc";
     this.cboTTBNDanToc.Size = new System.Drawing.Size(127, 21);
     this.cboTTBNDanToc.TabIndex = 456;
     this.cboTTBNDanToc.TabStop = false;
     this.cboTTBNDanToc.Text = "Chọn Dân Tộc";
     //
     // txtSoBaoHiemYte
     //
     this.txtSoBaoHiemYte.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoBaoHiemYte.Location = new System.Drawing.Point(609, 209);
     this.txtSoBaoHiemYte.Name = "txtSoBaoHiemYte";
     this.txtSoBaoHiemYte.Size = new System.Drawing.Size(273, 20);
     this.txtSoBaoHiemYte.TabIndex = 455;
     this.txtSoBaoHiemYte.TabStop = false;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(518, 216);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(52, 13);
     this.label16.TabIndex = 454;
     this.label16.Text = "&Số BHYT";
     //
     // dtInsToDate
     //
     this.dtInsToDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtInsToDate.Location = new System.Drawing.Point(333, 209);
     this.dtInsToDate.Name = "dtInsToDate";
     this.dtInsToDate.Size = new System.Drawing.Size(168, 20);
     this.dtInsToDate.TabIndex = 453;
     this.dtInsToDate.TabStop = false;
     //
     // txtDienThoai
     //
     this.txtDienThoai.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDienThoai.Location = new System.Drawing.Point(609, 237);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Size = new System.Drawing.Size(273, 20);
     this.txtDienThoai.TabIndex = 6;
     this.txtDienThoai.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(518, 241);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(70, 13);
     this.label13.TabIndex = 449;
     this.label13.Text = "Số điện thoại";
     //
     // txtMaBenhAn
     //
     this.txtMaBenhAn.BackColor = System.Drawing.Color.Turquoise;
     this.txtMaBenhAn.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaBenhAn.Location = new System.Drawing.Point(609, 64);
     this.txtMaBenhAn.Name = "txtMaBenhAn";
     this.txtMaBenhAn.ReadOnly = true;
     this.txtMaBenhAn.Size = new System.Drawing.Size(273, 31);
     this.txtMaBenhAn.TabIndex = 13;
     this.txtMaBenhAn.TabStop = false;
     this.txtMaBenhAn.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(518, 71);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(90, 16);
     this.label10.TabIndex = 443;
     this.label10.Text = "Mã Bệnh Án";
     //
     // txtMaLanKham
     //
     this.txtMaLanKham.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.txtMaLanKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaLanKham.Location = new System.Drawing.Point(327, 66);
     this.txtMaLanKham.Name = "txtMaLanKham";
     this.txtMaLanKham.Size = new System.Drawing.Size(174, 31);
     this.txtMaLanKham.TabIndex = 442;
     this.txtMaLanKham.TabStop = false;
     this.txtMaLanKham.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtMaLanKham.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMaLanKham_KeyDown);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(226, 71);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(100, 16);
     this.label9.TabIndex = 441;
     this.label9.Text = "Mã Lần Khám";
     //
     // txtMaBN
     //
     this.txtMaBN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.txtMaBN.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaBN.Location = new System.Drawing.Point(123, 65);
     this.txtMaBN.Name = "txtMaBN";
     this.txtMaBN.Size = new System.Drawing.Size(97, 31);
     this.txtMaBN.TabIndex = 0;
     this.txtMaBN.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtMaBN.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMaBN_KeyDown);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(16, 73);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(108, 16);
     this.label8.TabIndex = 439;
     this.label8.Text = "Mã Bệnh Nhân";
     //
     // txtThongTinLienHe
     //
     this.txtThongTinLienHe.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThongTinLienHe.Location = new System.Drawing.Point(185, 238);
     this.txtThongTinLienHe.Name = "txtThongTinLienHe";
     this.txtThongTinLienHe.Size = new System.Drawing.Size(316, 20);
     this.txtThongTinLienHe.TabIndex = 5;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(17, 242);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(131, 13);
     this.label5.TabIndex = 431;
     this.label5.Text = "Họ Tên, địa chỉ người nhà";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(215, 211);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(89, 13);
     this.label4.TabIndex = 20;
     this.label4.Text = "BHYT:giá trị đến ";
     //
     // txtDoiTuong
     //
     this.txtDoiTuong.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDoiTuong.Location = new System.Drawing.Point(123, 210);
     this.txtDoiTuong.Name = "txtDoiTuong";
     this.txtDoiTuong.Size = new System.Drawing.Size(75, 20);
     this.txtDoiTuong.TabIndex = 19;
     this.txtDoiTuong.TabStop = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(17, 213);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(57, 13);
     this.label3.TabIndex = 18;
     this.label3.Text = "Đối Tượng";
     //
     // txtNoiLamViec
     //
     this.txtNoiLamViec.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNoiLamViec.Location = new System.Drawing.Point(609, 181);
     this.txtNoiLamViec.Name = "txtNoiLamViec";
     this.txtNoiLamViec.Size = new System.Drawing.Size(273, 20);
     this.txtNoiLamViec.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(518, 184);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(70, 13);
     this.label2.TabIndex = 16;
     this.label2.Text = "Nơi Làm Việc";
     //
     // txtDiaChi
     //
     this.txtDiaChi.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDiaChi.Location = new System.Drawing.Point(66, 180);
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.ReadOnly = true;
     this.txtDiaChi.Size = new System.Drawing.Size(378, 20);
     this.txtDiaChi.TabIndex = 15;
     this.txtDiaChi.TabStop = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(17, 184);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 13);
     this.label1.TabIndex = 14;
     this.label1.Text = "Địa Chỉ";
     //
     // chkNgoaiKieu
     //
     this.chkNgoaiKieu.Location = new System.Drawing.Point(753, 147);
     this.chkNgoaiKieu.Name = "chkNgoaiKieu";
     this.chkNgoaiKieu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkNgoaiKieu.Size = new System.Drawing.Size(129, 23);
     this.chkNgoaiKieu.TabIndex = 3;
     this.chkNgoaiKieu.TabStop = false;
     this.chkNgoaiKieu.Text = "Ngoại kiểu";
     //
     // lblDanToc
     //
     this.lblDanToc.AutoSize = true;
     this.lblDanToc.Location = new System.Drawing.Point(518, 153);
     this.lblDanToc.Name = "lblDanToc";
     this.lblDanToc.Size = new System.Drawing.Size(49, 13);
     this.lblDanToc.TabIndex = 10;
     this.lblDanToc.Text = "Dân Tộc";
     //
     // lblNgheNghiep
     //
     this.lblNgheNghiep.AutoSize = true;
     this.lblNgheNghiep.Location = new System.Drawing.Point(215, 153);
     this.lblNgheNghiep.Name = "lblNgheNghiep";
     this.lblNgheNghiep.Size = new System.Drawing.Size(70, 13);
     this.lblNgheNghiep.TabIndex = 9;
     this.lblNgheNghiep.Text = "Nghề Nghiệp";
     //
     // cboGioiTinh
     //
     this.cboGioiTinh.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboGioiTinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator = false;
     uiComboBoxItem4.Text = "Nữ";
     uiComboBoxItem4.Value = 1;
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator = false;
     uiComboBoxItem5.Text = "Nam";
     uiComboBoxItem5.Value = 0;
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator = false;
     uiComboBoxItem6.Text = "Khác";
     uiComboBoxItem6.Value = 2;
     this.cboGioiTinh.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem4,
     uiComboBoxItem5,
     uiComboBoxItem6});
     this.cboGioiTinh.Location = new System.Drawing.Point(123, 148);
     this.cboGioiTinh.Name = "cboGioiTinh";
     this.cboGioiTinh.Size = new System.Drawing.Size(75, 21);
     this.cboGioiTinh.TabIndex = 8;
     this.cboGioiTinh.TabStop = false;
     this.cboGioiTinh.Text = "Giới tính";
     //
     // txtNgheNghiep
     //
     this.txtNgheNghiep.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNgheNghiep.Location = new System.Drawing.Point(327, 150);
     this.txtNgheNghiep.Name = "txtNgheNghiep";
     this.txtNgheNghiep.ReadOnly = true;
     this.txtNgheNghiep.Size = new System.Drawing.Size(174, 20);
     this.txtNgheNghiep.TabIndex = 7;
     this.txtNgheNghiep.TabStop = false;
     //
     // lblGioiTinh
     //
     this.lblGioiTinh.AutoSize = true;
     this.lblGioiTinh.Location = new System.Drawing.Point(17, 153);
     this.lblGioiTinh.Name = "lblGioiTinh";
     this.lblGioiTinh.Size = new System.Drawing.Size(54, 13);
     this.lblGioiTinh.TabIndex = 6;
     this.lblGioiTinh.Text = "Giới Tính ";
     //
     // txtNamSinh
     //
     this.txtNamSinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNamSinh.Location = new System.Drawing.Point(732, 106);
     this.txtNamSinh.Name = "txtNamSinh";
     this.txtNamSinh.Size = new System.Drawing.Size(150, 31);
     this.txtNamSinh.TabIndex = 5;
     this.txtNamSinh.TabStop = false;
     this.txtNamSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     //
     // txtThangSinh
     //
     this.txtThangSinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThangSinh.Location = new System.Drawing.Point(668, 106);
     this.txtThangSinh.Name = "txtThangSinh";
     this.txtThangSinh.Size = new System.Drawing.Size(40, 31);
     this.txtThangSinh.TabIndex = 1;
     this.txtThangSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
     //
     // txtNgaySinh
     //
     this.txtNgaySinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNgaySinh.Location = new System.Drawing.Point(609, 106);
     this.txtNgaySinh.Name = "txtNgaySinh";
     this.txtNgaySinh.Size = new System.Drawing.Size(40, 31);
     this.txtNgaySinh.TabIndex = 0;
     this.txtNgaySinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
     //
     // lblNgaySinh
     //
     this.lblNgaySinh.AutoSize = true;
     this.lblNgaySinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNgaySinh.Location = new System.Drawing.Point(518, 111);
     this.lblNgaySinh.Name = "lblNgaySinh";
     this.lblNgaySinh.Size = new System.Drawing.Size(79, 16);
     this.lblNgaySinh.TabIndex = 2;
     this.lblNgaySinh.Text = "Ngày Sinh";
     //
     // lblTenBn
     //
     this.lblTenBn.AutoSize = true;
     this.lblTenBn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTenBn.Location = new System.Drawing.Point(16, 111);
     this.lblTenBn.Name = "lblTenBn";
     this.lblTenBn.Size = new System.Drawing.Size(59, 16);
     this.lblTenBn.TabIndex = 1;
     this.lblTenBn.Text = "Họ Tên";
     //
     // txtHoTen
     //
     this.txtHoTen.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHoTen.Location = new System.Drawing.Point(123, 107);
     this.txtHoTen.Name = "txtHoTen";
     this.txtHoTen.Size = new System.Drawing.Size(378, 31);
     this.txtHoTen.TabIndex = 0;
     this.txtHoTen.TabStop = false;
     //
     // panel1
     //
     this.panel1.AutoScroll = true;
     this.panel1.Controls.Add(this.uiGroupBox4);
     this.panel1.Controls.Add(this.grpBenhAn);
     this.panel1.Controls.Add(this.grpTinhTrangRaVien);
     this.panel1.Controls.Add(this.grpChanDoan);
     this.panel1.Controls.Add(this.grpQuanLyNguoiBenh);
     this.panel1.Controls.Add(this.grpThongTinBenhNhan);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(912, 585);
     this.panel1.TabIndex = 4;
     //
     // uiGroupBox4
     //
     this.uiGroupBox4.Controls.Add(this.txtTKBAHuongDieuTri);
     this.uiGroupBox4.Controls.Add(this.label92);
     this.uiGroupBox4.Controls.Add(this.txtTKBATinhTrangRaVien);
     this.uiGroupBox4.Controls.Add(this.txtTKBAPhuongPhapDieuTri);
     this.uiGroupBox4.Controls.Add(this.label91);
     this.uiGroupBox4.Controls.Add(this.txtTKBATTomTatKetQua);
     this.uiGroupBox4.Controls.Add(this.label90);
     this.uiGroupBox4.Controls.Add(this.label89);
     this.uiGroupBox4.Controls.Add(this.txtTKBAQuaTrinhBenhLy);
     this.uiGroupBox4.Controls.Add(this.label88);
     this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox4.Location = new System.Drawing.Point(0, 2916);
     this.uiGroupBox4.Name = "uiGroupBox4";
     this.uiGroupBox4.Size = new System.Drawing.Size(895, 412);
     this.uiGroupBox4.TabIndex = 5;
     this.uiGroupBox4.Text = "B - TỔNG KẾT BỆNH ÁN ";
     //
     // txtTKBAHuongDieuTri
     //
     this.txtTKBAHuongDieuTri.Location = new System.Drawing.Point(31, 339);
     this.txtTKBAHuongDieuTri.Name = "txtTKBAHuongDieuTri";
     this.txtTKBAHuongDieuTri.Size = new System.Drawing.Size(847, 48);
     this.txtTKBAHuongDieuTri.TabIndex = 613;
     this.txtTKBAHuongDieuTri.Text = "";
     //
     // label92
     //
     this.label92.AutoSize = true;
     this.label92.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label92.Location = new System.Drawing.Point(16, 323);
     this.label92.Name = "label92";
     this.label92.Size = new System.Drawing.Size(248, 13);
     this.label92.TabIndex = 611;
     this.label92.Text = "5. Hướng điều trị và các chế độ tiếp theo:";
     //
     // txtTKBATinhTrangRaVien
     //
     this.txtTKBATinhTrangRaVien.Location = new System.Drawing.Point(31, 264);
     this.txtTKBATinhTrangRaVien.Name = "txtTKBATinhTrangRaVien";
     this.txtTKBATinhTrangRaVien.Size = new System.Drawing.Size(847, 48);
     this.txtTKBATinhTrangRaVien.TabIndex = 615;
     this.txtTKBATinhTrangRaVien.Text = "";
     //
     // txtTKBAPhuongPhapDieuTri
     //
     this.txtTKBAPhuongPhapDieuTri.Location = new System.Drawing.Point(31, 191);
     this.txtTKBAPhuongPhapDieuTri.Name = "txtTKBAPhuongPhapDieuTri";
     this.txtTKBAPhuongPhapDieuTri.Size = new System.Drawing.Size(847, 48);
     this.txtTKBAPhuongPhapDieuTri.TabIndex = 614;
     this.txtTKBAPhuongPhapDieuTri.Text = "";
     //
     // label91
     //
     this.label91.AutoSize = true;
     this.label91.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label91.Location = new System.Drawing.Point(16, 248);
     this.label91.Name = "label91";
     this.label91.Size = new System.Drawing.Size(194, 13);
     this.label91.TabIndex = 612;
     this.label91.Text = "4. Tình trạng người bệnh ra viện:";
     //
     // txtTKBATTomTatKetQua
     //
     this.txtTKBATTomTatKetQua.Location = new System.Drawing.Point(31, 116);
     this.txtTKBATTomTatKetQua.Name = "txtTKBATTomTatKetQua";
     this.txtTKBATTomTatKetQua.Size = new System.Drawing.Size(847, 48);
     this.txtTKBATTomTatKetQua.TabIndex = 609;
     this.txtTKBATTomTatKetQua.Text = "";
     //
     // label90
     //
     this.label90.AutoSize = true;
     this.label90.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label90.Location = new System.Drawing.Point(16, 174);
     this.label90.Name = "label90";
     this.label90.Size = new System.Drawing.Size(145, 13);
     this.label90.TabIndex = 610;
     this.label90.Text = "3. Phương pháp điều trị:";
     //
     // label89
     //
     this.label89.AutoSize = true;
     this.label89.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label89.Location = new System.Drawing.Point(16, 100);
     this.label89.Name = "label89";
     this.label89.Size = new System.Drawing.Size(379, 13);
     this.label89.TabIndex = 608;
     this.label89.Text = "2. Tóm tắt kết quả xét nghiệm cận lâm sàng có giá trị chẩn đoán:";
     //
     // txtTKBAQuaTrinhBenhLy
     //
     this.txtTKBAQuaTrinhBenhLy.Location = new System.Drawing.Point(31, 42);
     this.txtTKBAQuaTrinhBenhLy.Name = "txtTKBAQuaTrinhBenhLy";
     this.txtTKBAQuaTrinhBenhLy.Size = new System.Drawing.Size(847, 48);
     this.txtTKBAQuaTrinhBenhLy.TabIndex = 607;
     this.txtTKBAQuaTrinhBenhLy.Text = "";
     //
     // label88
     //
     this.label88.AutoSize = true;
     this.label88.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label88.Location = new System.Drawing.Point(16, 26);
     this.label88.Name = "label88";
     this.label88.Size = new System.Drawing.Size(251, 13);
     this.label88.TabIndex = 606;
     this.label88.Text = "1. Quá trình bệnh lý và diễn biến lâm sàng:";
     //
     // grpBenhAn
     //
     this.grpBenhAn.Controls.Add(this.txtBenhAnPhanBiet);
     this.grpBenhAn.Controls.Add(this.txtBenhAnBenhKemTheo);
     this.grpBenhAn.Controls.Add(this.txtBenhAnBenhChinh);
     this.grpBenhAn.Controls.Add(this.txtBenhAnHuongDieuTri);
     this.grpBenhAn.Controls.Add(this.label86);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTienLuong);
     this.grpBenhAn.Controls.Add(this.label85);
     this.grpBenhAn.Controls.Add(this.label84);
     this.grpBenhAn.Controls.Add(this.label68);
     this.grpBenhAn.Controls.Add(this.label67);
     this.grpBenhAn.Controls.Add(this.label66);
     this.grpBenhAn.Controls.Add(this.label65);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTomTatBenhAn);
     this.grpBenhAn.Controls.Add(this.txtBenhAnCacXetNghiem);
     this.grpBenhAn.Controls.Add(this.label64);
     this.grpBenhAn.Controls.Add(this.txtBenhAnNoiTiet);
     this.grpBenhAn.Controls.Add(this.label63);
     this.grpBenhAn.Controls.Add(this.txtBenhAnMat);
     this.grpBenhAn.Controls.Add(this.label62);
     this.grpBenhAn.Controls.Add(this.txtBenhAnRangHamMat);
     this.grpBenhAn.Controls.Add(this.label61);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTaiMuiHong);
     this.grpBenhAn.Controls.Add(this.label60);
     this.grpBenhAn.Controls.Add(this.txtBenhAnCoXuongKhop);
     this.grpBenhAn.Controls.Add(this.label59);
     this.grpBenhAn.Controls.Add(this.txtBenhAnThanKinh);
     this.grpBenhAn.Controls.Add(this.txtBenhAnThanTietNieuSinhDuc);
     this.grpBenhAn.Controls.Add(this.label58);
     this.grpBenhAn.Controls.Add(this.label57);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTieuHoa);
     this.grpBenhAn.Controls.Add(this.label56);
     this.grpBenhAn.Controls.Add(this.txtBenhAnHoHap);
     this.grpBenhAn.Controls.Add(this.label55);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTuanHoan);
     this.grpBenhAn.Controls.Add(this.label54);
     this.grpBenhAn.Controls.Add(this.label53);
     this.grpBenhAn.Controls.Add(this.uiGroupBox3);
     this.grpBenhAn.Controls.Add(this.txtBenhAnToanThan);
     this.grpBenhAn.Controls.Add(this.label52);
     this.grpBenhAn.Controls.Add(this.label51);
     this.grpBenhAn.Controls.Add(this.label50);
     this.grpBenhAn.Controls.Add(this.txtBenhAnGiaDinh);
     this.grpBenhAn.Controls.Add(this.label49);
     this.grpBenhAn.Controls.Add(this.label48);
     this.grpBenhAn.Controls.Add(this.label47);
     this.grpBenhAn.Controls.Add(this.txtKhac);
     this.grpBenhAn.Controls.Add(this.txtThuocLao);
     this.grpBenhAn.Controls.Add(this.txtThuocLa);
     this.grpBenhAn.Controls.Add(this.txtRuouBia);
     this.grpBenhAn.Controls.Add(this.txtMaTuy);
     this.grpBenhAn.Controls.Add(this.txtDiUng);
     this.grpBenhAn.Controls.Add(this.chkKhac);
     this.grpBenhAn.Controls.Add(this.chkThuocLao);
     this.grpBenhAn.Controls.Add(this.chkThuocLa);
     this.grpBenhAn.Controls.Add(this.chkRuouBia);
     this.grpBenhAn.Controls.Add(this.chkMaTuy);
     this.grpBenhAn.Controls.Add(this.chkDiUng);
     this.grpBenhAn.Controls.Add(this.label46);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTienSuBenh);
     this.grpBenhAn.Controls.Add(this.label45);
     this.grpBenhAn.Controls.Add(this.label44);
     this.grpBenhAn.Controls.Add(this.txtBenhAnQuaTrinhBenhLy);
     this.grpBenhAn.Controls.Add(this.label43);
     this.grpBenhAn.Controls.Add(this.label42);
     this.grpBenhAn.Controls.Add(this.label41);
     this.grpBenhAn.Controls.Add(this.txtBenhAnVaoNgayThu);
     this.grpBenhAn.Controls.Add(this.label40);
     this.grpBenhAn.Controls.Add(this.label39);
     this.grpBenhAn.Controls.Add(this.txtBenhAnLyDoNhapVien);
     this.grpBenhAn.Controls.Add(this.label38);
     this.grpBenhAn.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpBenhAn.Location = new System.Drawing.Point(0, 922);
     this.grpBenhAn.Name = "grpBenhAn";
     this.grpBenhAn.Size = new System.Drawing.Size(895, 1994);
     this.grpBenhAn.TabIndex = 4;
     this.grpBenhAn.Text = "A- BỆNH ÁN";
     //
     // txtBenhAnPhanBiet
     //
     this.txtBenhAnPhanBiet.Location = new System.Drawing.Point(163, 1780);
     this.txtBenhAnPhanBiet.Name = "txtBenhAnPhanBiet";
     this.txtBenhAnPhanBiet.Size = new System.Drawing.Size(719, 20);
     this.txtBenhAnPhanBiet.TabIndex = 607;
     //
     // txtBenhAnBenhKemTheo
     //
     this.txtBenhAnBenhKemTheo.Location = new System.Drawing.Point(163, 1752);
     this.txtBenhAnBenhKemTheo.Name = "txtBenhAnBenhKemTheo";
     this.txtBenhAnBenhKemTheo.Size = new System.Drawing.Size(719, 20);
     this.txtBenhAnBenhKemTheo.TabIndex = 607;
     //
     // txtBenhAnBenhChinh
     //
     this.txtBenhAnBenhChinh.Location = new System.Drawing.Point(163, 1727);
     this.txtBenhAnBenhChinh.Name = "txtBenhAnBenhChinh";
     this.txtBenhAnBenhChinh.Size = new System.Drawing.Size(719, 20);
     this.txtBenhAnBenhChinh.TabIndex = 606;
     //
     // txtBenhAnHuongDieuTri
     //
     this.txtBenhAnHuongDieuTri.Location = new System.Drawing.Point(35, 1908);
     this.txtBenhAnHuongDieuTri.Name = "txtBenhAnHuongDieuTri";
     this.txtBenhAnHuongDieuTri.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnHuongDieuTri.TabIndex = 600;
     this.txtBenhAnHuongDieuTri.Text = "";
     //
     // label86
     //
     this.label86.AutoSize = true;
     this.label86.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label86.Location = new System.Drawing.Point(20, 1886);
     this.label86.Name = "label86";
     this.label86.Size = new System.Drawing.Size(112, 13);
     this.label86.TabIndex = 592;
     this.label86.Text = "VI. Hướng điều trị:";
     //
     // txtBenhAnTienLuong
     //
     this.txtBenhAnTienLuong.Location = new System.Drawing.Point(35, 1831);
     this.txtBenhAnTienLuong.Name = "txtBenhAnTienLuong";
     this.txtBenhAnTienLuong.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTienLuong.TabIndex = 599;
     this.txtBenhAnTienLuong.Text = "";
     //
     // label85
     //
     this.label85.AutoSize = true;
     this.label85.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label85.Location = new System.Drawing.Point(20, 1806);
     this.label85.Name = "label85";
     this.label85.Size = new System.Drawing.Size(87, 13);
     this.label85.TabIndex = 591;
     this.label85.Text = "V. Tiên lượng:";
     //
     // label84
     //
     this.label84.AutoSize = true;
     this.label84.Location = new System.Drawing.Point(35, 1781);
     this.label84.Name = "label84";
     this.label84.Size = new System.Drawing.Size(64, 13);
     this.label84.TabIndex = 599;
     this.label84.Text = "+ Phân biệt:";
     //
     // label68
     //
     this.label68.AutoSize = true;
     this.label68.Location = new System.Drawing.Point(32, 1756);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(133, 13);
     this.label68.TabIndex = 598;
     this.label68.Text = "+ Bệnh kèm theo( nếu có):";
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Location = new System.Drawing.Point(32, 1730);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(75, 13);
     this.label67.TabIndex = 597;
     this.label67.Text = "+ Bệnh chính:";
     //
     // label66
     //
     this.label66.AutoSize = true;
     this.label66.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label66.Location = new System.Drawing.Point(20, 1702);
     this.label66.Name = "label66";
     this.label66.Size = new System.Drawing.Size(222, 13);
     this.label66.TabIndex = 590;
     this.label66.Text = "IV. Chuẩn đoán khi váo khoa điều trị:";
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label65.Location = new System.Drawing.Point(20, 1615);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(119, 13);
     this.label65.TabIndex = 599;
     this.label65.Text = "4. Tóm tắt bệnh án:";
     //
     // txtBenhAnTomTatBenhAn
     //
     this.txtBenhAnTomTatBenhAn.Location = new System.Drawing.Point(35, 1641);
     this.txtBenhAnTomTatBenhAn.Name = "txtBenhAnTomTatBenhAn";
     this.txtBenhAnTomTatBenhAn.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTomTatBenhAn.TabIndex = 598;
     this.txtBenhAnTomTatBenhAn.Text = "";
     //
     // txtBenhAnCacXetNghiem
     //
     this.txtBenhAnCacXetNghiem.Location = new System.Drawing.Point(35, 1554);
     this.txtBenhAnCacXetNghiem.Name = "txtBenhAnCacXetNghiem";
     this.txtBenhAnCacXetNghiem.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnCacXetNghiem.TabIndex = 598;
     this.txtBenhAnCacXetNghiem.Text = "";
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label64.Location = new System.Drawing.Point(22, 1534);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(240, 13);
     this.label64.TabIndex = 598;
     this.label64.Text = "3. Các xét nghiệm cận lâm sàng cần làm:";
     //
     // txtBenhAnNoiTiet
     //
     this.txtBenhAnNoiTiet.Location = new System.Drawing.Point(35, 1474);
     this.txtBenhAnNoiTiet.Name = "txtBenhAnNoiTiet";
     this.txtBenhAnNoiTiet.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnNoiTiet.TabIndex = 597;
     this.txtBenhAnNoiTiet.Text = "";
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.Location = new System.Drawing.Point(55, 1448);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(215, 13);
     this.label63.TabIndex = 596;
     this.label63.Text = "+ Nội Tiết, dinh dưỡng và các bệnh lý khác:";
     //
     // txtBenhAnMat
     //
     this.txtBenhAnMat.Location = new System.Drawing.Point(35, 1391);
     this.txtBenhAnMat.Name = "txtBenhAnMat";
     this.txtBenhAnMat.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnMat.TabIndex = 597;
     this.txtBenhAnMat.Text = "";
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Location = new System.Drawing.Point(55, 1365);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(37, 13);
     this.label62.TabIndex = 596;
     this.label62.Text = "+ Mắt:";
     //
     // txtBenhAnRangHamMat
     //
     this.txtBenhAnRangHamMat.Location = new System.Drawing.Point(35, 1310);
     this.txtBenhAnRangHamMat.Name = "txtBenhAnRangHamMat";
     this.txtBenhAnRangHamMat.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnRangHamMat.TabIndex = 595;
     this.txtBenhAnRangHamMat.Text = "";
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.Location = new System.Drawing.Point(55, 1284);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(106, 13);
     this.label61.TabIndex = 594;
     this.label61.Text = "+ Răng - Hàm -  Mặt:";
     //
     // txtBenhAnTaiMuiHong
     //
     this.txtBenhAnTaiMuiHong.Location = new System.Drawing.Point(35, 1221);
     this.txtBenhAnTaiMuiHong.Name = "txtBenhAnTaiMuiHong";
     this.txtBenhAnTaiMuiHong.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTaiMuiHong.TabIndex = 593;
     this.txtBenhAnTaiMuiHong.Text = "";
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.Location = new System.Drawing.Point(50, 1197);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(95, 13);
     this.label60.TabIndex = 592;
     this.label60.Text = "+ Tai - Mũi - Họng:";
     //
     // txtBenhAnCoXuongKhop
     //
     this.txtBenhAnCoXuongKhop.Location = new System.Drawing.Point(35, 1141);
     this.txtBenhAnCoXuongKhop.Name = "txtBenhAnCoXuongKhop";
     this.txtBenhAnCoXuongKhop.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnCoXuongKhop.TabIndex = 591;
     this.txtBenhAnCoXuongKhop.Text = "";
     //
     // label59
     //
     this.label59.AutoSize = true;
     this.label59.Location = new System.Drawing.Point(50, 1117);
     this.label59.Name = "label59";
     this.label59.Size = new System.Drawing.Size(106, 13);
     this.label59.TabIndex = 590;
     this.label59.Text = "+ Cơ - Xương - Khớp:";
     //
     // txtBenhAnThanKinh
     //
     this.txtBenhAnThanKinh.Location = new System.Drawing.Point(35, 1056);
     this.txtBenhAnThanKinh.Name = "txtBenhAnThanKinh";
     this.txtBenhAnThanKinh.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnThanKinh.TabIndex = 591;
     this.txtBenhAnThanKinh.Text = "";
     //
     // txtBenhAnThanTietNieuSinhDuc
     //
     this.txtBenhAnThanTietNieuSinhDuc.Location = new System.Drawing.Point(35, 976);
     this.txtBenhAnThanTietNieuSinhDuc.Name = "txtBenhAnThanTietNieuSinhDuc";
     this.txtBenhAnThanTietNieuSinhDuc.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnThanTietNieuSinhDuc.TabIndex = 571;
     this.txtBenhAnThanTietNieuSinhDuc.Text = "";
     //
     // label58
     //
     this.label58.AutoSize = true;
     this.label58.Location = new System.Drawing.Point(50, 1032);
     this.label58.Name = "label58";
     this.label58.Size = new System.Drawing.Size(67, 13);
     this.label58.TabIndex = 590;
     this.label58.Text = "+ Thần kinh:";
     //
     // label57
     //
     this.label57.AutoSize = true;
     this.label57.Location = new System.Drawing.Point(50, 952);
     this.label57.Name = "label57";
     this.label57.Size = new System.Drawing.Size(145, 13);
     this.label57.TabIndex = 570;
     this.label57.Text = "+ Thận - Tiết niệu - Sinh dục:";
     //
     // txtBenhAnTieuHoa
     //
     this.txtBenhAnTieuHoa.Location = new System.Drawing.Point(35, 899);
     this.txtBenhAnTieuHoa.Name = "txtBenhAnTieuHoa";
     this.txtBenhAnTieuHoa.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTieuHoa.TabIndex = 569;
     this.txtBenhAnTieuHoa.Text = "";
     //
     // label56
     //
     this.label56.AutoSize = true;
     this.label56.Location = new System.Drawing.Point(50, 875);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(61, 13);
     this.label56.TabIndex = 568;
     this.label56.Text = "+ Tiêu hóa:";
     //
     // txtBenhAnHoHap
     //
     this.txtBenhAnHoHap.Location = new System.Drawing.Point(35, 818);
     this.txtBenhAnHoHap.Name = "txtBenhAnHoHap";
     this.txtBenhAnHoHap.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnHoHap.TabIndex = 567;
     this.txtBenhAnHoHap.Text = "";
     //
     // label55
     //
     this.label55.AutoSize = true;
     this.label55.Location = new System.Drawing.Point(50, 800);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(54, 13);
     this.label55.TabIndex = 566;
     this.label55.Text = "+ Hô hấp:";
     //
     // txtBenhAnTuanHoan
     //
     this.txtBenhAnTuanHoan.Location = new System.Drawing.Point(35, 747);
     this.txtBenhAnTuanHoan.Name = "txtBenhAnTuanHoan";
     this.txtBenhAnTuanHoan.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTuanHoan.TabIndex = 565;
     this.txtBenhAnTuanHoan.Text = "";
     //
     // label54
     //
     this.label54.AutoSize = true;
     this.label54.Location = new System.Drawing.Point(50, 733);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(71, 13);
     this.label54.TabIndex = 564;
     this.label54.Text = "+ Tuần hoàn:";
     //
     // label53
     //
     this.label53.AutoSize = true;
     this.label53.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label53.Location = new System.Drawing.Point(40, 710);
     this.label53.Name = "label53";
     this.label53.Size = new System.Drawing.Size(98, 13);
     this.label53.TabIndex = 563;
     this.label53.Text = "2. Các cơ quan:";
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.txtCanNang);
     this.uiGroupBox3.Controls.Add(this.txtNhipTho);
     this.uiGroupBox3.Controls.Add(this.label83);
     this.uiGroupBox3.Controls.Add(this.txtHuyetApDen);
     this.uiGroupBox3.Controls.Add(this.txtHuyetApTu);
     this.uiGroupBox3.Controls.Add(this.txtNhietDo);
     this.uiGroupBox3.Controls.Add(this.label82);
     this.uiGroupBox3.Controls.Add(this.label81);
     this.uiGroupBox3.Controls.Add(this.label80);
     this.uiGroupBox3.Controls.Add(this.label79);
     this.uiGroupBox3.Controls.Add(this.label78);
     this.uiGroupBox3.Controls.Add(this.label77);
     this.uiGroupBox3.Controls.Add(this.label76);
     this.uiGroupBox3.Controls.Add(this.txtMach);
     this.uiGroupBox3.Controls.Add(this.label75);
     this.uiGroupBox3.Controls.Add(this.label74);
     this.uiGroupBox3.Controls.Add(this.label73);
     this.uiGroupBox3.Controls.Add(this.label72);
     this.uiGroupBox3.Controls.Add(this.label71);
     this.uiGroupBox3.Controls.Add(this.label70);
     this.uiGroupBox3.Controls.Add(this.label69);
     this.uiGroupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(646, 555);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(225, 168);
     this.uiGroupBox3.TabIndex = 561;
     //
     // txtCanNang
     //
     this.txtCanNang.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCanNang.Location = new System.Drawing.Point(75, 139);
     this.txtCanNang.Name = "txtCanNang";
     this.txtCanNang.Size = new System.Drawing.Size(80, 20);
     this.txtCanNang.TabIndex = 77;
     this.txtCanNang.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNhipTho
     //
     this.txtNhipTho.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhipTho.Location = new System.Drawing.Point(66, 113);
     this.txtNhipTho.Name = "txtNhipTho";
     this.txtNhipTho.Size = new System.Drawing.Size(74, 20);
     this.txtNhipTho.TabIndex = 76;
     this.txtNhipTho.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label83
     //
     this.label83.AutoSize = true;
     this.label83.Location = new System.Drawing.Point(104, 87);
     this.label83.Name = "label83";
     this.label83.Size = new System.Drawing.Size(12, 16);
     this.label83.TabIndex = 578;
     this.label83.Text = "/";
     this.label83.Visible = false;
     //
     // txtHuyetApDen
     //
     this.txtHuyetApDen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHuyetApDen.Location = new System.Drawing.Point(120, 85);
     this.txtHuyetApDen.Name = "txtHuyetApDen";
     this.txtHuyetApDen.Size = new System.Drawing.Size(35, 20);
     this.txtHuyetApDen.TabIndex = 76;
     this.txtHuyetApDen.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtHuyetApDen.Visible = false;
     //
     // txtHuyetApTu
     //
     this.txtHuyetApTu.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHuyetApTu.Location = new System.Drawing.Point(71, 85);
     this.txtHuyetApTu.Name = "txtHuyetApTu";
     this.txtHuyetApTu.Size = new System.Drawing.Size(84, 20);
     this.txtHuyetApTu.TabIndex = 75;
     this.txtHuyetApTu.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNhietDo
     //
     this.txtNhietDo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhietDo.Location = new System.Drawing.Point(66, 55);
     this.txtNhietDo.Name = "txtNhietDo";
     this.txtNhietDo.Size = new System.Drawing.Size(89, 20);
     this.txtNhietDo.TabIndex = 74;
     this.txtNhietDo.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label82
     //
     this.label82.AutoSize = true;
     this.label82.Location = new System.Drawing.Point(146, 192);
     this.label82.Name = "label82";
     this.label82.Size = new System.Drawing.Size(0, 16);
     this.label82.TabIndex = 574;
     //
     // label81
     //
     this.label81.AutoSize = true;
     this.label81.Location = new System.Drawing.Point(174, 165);
     this.label81.Name = "label81";
     this.label81.Size = new System.Drawing.Size(0, 16);
     this.label81.TabIndex = 573;
     //
     // label80
     //
     this.label80.AutoSize = true;
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label80.Location = new System.Drawing.Point(174, 140);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(22, 15);
     this.label80.TabIndex = 572;
     this.label80.Text = "Kg";
     //
     // label79
     //
     this.label79.AutoSize = true;
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label79.Location = new System.Drawing.Point(146, 115);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(51, 15);
     this.label79.TabIndex = 571;
     this.label79.Text = "lần/phút";
     //
     // label78
     //
     this.label78.AutoSize = true;
     this.label78.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label78.Location = new System.Drawing.Point(158, 87);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(45, 15);
     this.label78.TabIndex = 570;
     this.label78.Text = "mmHg";
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label77.Location = new System.Drawing.Point(163, 57);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(34, 15);
     this.label77.TabIndex = 569;
     this.label77.Text = "Độ C";
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label76.Location = new System.Drawing.Point(145, 26);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(51, 15);
     this.label76.TabIndex = 568;
     this.label76.Text = "lần/phút";
     //
     // txtMach
     //
     this.txtMach.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMach.Location = new System.Drawing.Point(58, 25);
     this.txtMach.Name = "txtMach";
     this.txtMach.Size = new System.Drawing.Size(82, 20);
     this.txtMach.TabIndex = 73;
     this.txtMach.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.Location = new System.Drawing.Point(5, 192);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(0, 16);
     this.label75.TabIndex = 567;
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.Location = new System.Drawing.Point(5, 165);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(0, 16);
     this.label74.TabIndex = 566;
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label73.Location = new System.Drawing.Point(5, 140);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(63, 15);
     this.label73.TabIndex = 565;
     this.label73.Text = "Cân nặng:";
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label72.Location = new System.Drawing.Point(4, 114);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(59, 15);
     this.label72.TabIndex = 564;
     this.label72.Text = "Nhịp thở: ";
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label71.Location = new System.Drawing.Point(4, 87);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(61, 15);
     this.label71.TabIndex = 563;
     this.label71.Text = "Huyết áp: ";
     //
     // label70
     //
     this.label70.AutoSize = true;
     this.label70.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label70.Location = new System.Drawing.Point(3, 57);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(56, 15);
     this.label70.TabIndex = 562;
     this.label70.Text = "Nhiệt độ:";
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label69.Location = new System.Drawing.Point(4, 29);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(41, 15);
     this.label69.TabIndex = 561;
     this.label69.Text = "Mạch:";
     //
     // txtBenhAnToanThan
     //
     this.txtBenhAnToanThan.Location = new System.Drawing.Point(35, 613);
     this.txtBenhAnToanThan.Name = "txtBenhAnToanThan";
     this.txtBenhAnToanThan.Size = new System.Drawing.Size(575, 82);
     this.txtBenhAnToanThan.TabIndex = 514;
     this.txtBenhAnToanThan.Text = "";
     //
     // label52
     //
     this.label52.AutoSize = true;
     this.label52.Location = new System.Drawing.Point(123, 585);
     this.label52.Name = "label52";
     this.label52.Size = new System.Drawing.Size(436, 13);
     this.label52.TabIndex = 513;
     this.label52.Text = "(ý thức, da niên mạc, hệ thống hạch, tuyến giáp, vị trí, kích thước, " +
         "số lượng, di động v.v...)";
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label51.Location = new System.Drawing.Point(40, 585);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(84, 13);
     this.label51.TabIndex = 512;
     this.label51.Text = "1. Toàn thân:";
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label50.Location = new System.Drawing.Point(32, 561);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(90, 13);
     this.label50.TabIndex = 511;
     this.label50.Text = "III.Khám bệnh:";
     //
     // txtBenhAnGiaDinh
     //
     this.txtBenhAnGiaDinh.Location = new System.Drawing.Point(35, 467);
     this.txtBenhAnGiaDinh.Name = "txtBenhAnGiaDinh";
     this.txtBenhAnGiaDinh.Size = new System.Drawing.Size(847, 82);
     this.txtBenhAnGiaDinh.TabIndex = 510;
     this.txtBenhAnGiaDinh.Text = "";
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Location = new System.Drawing.Point(50, 451);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(432, 13);
     this.label49.TabIndex = 509;
     this.label49.Text = "+ Gia đình (Những người trong gia đình: bệnh đã mắc, đời sống, tinh thầ" +
         "n, vật chất v.v....)\r\n";
     //
     // label48
     //
     this.label48.AutoSize = true;
     this.label48.Location = new System.Drawing.Point(619, 356);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(130, 13);
     this.label48.TabIndex = 508;
     this.label48.Text = "Thời gian(tính theo tháng)";
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(196, 356);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(130, 13);
     this.label47.TabIndex = 507;
     this.label47.Text = "Thời gian(tính theo tháng)";
     //
     // txtKhac
     //
     this.txtKhac.Location = new System.Drawing.Point(592, 430);
     this.txtKhac.Name = "txtKhac";
     this.txtKhac.Size = new System.Drawing.Size(275, 20);
     this.txtKhac.TabIndex = 506;
     //
     // txtThuocLao
     //
     this.txtThuocLao.Location = new System.Drawing.Point(592, 407);
     this.txtThuocLao.Name = "txtThuocLao";
     this.txtThuocLao.Size = new System.Drawing.Size(275, 20);
     this.txtThuocLao.TabIndex = 505;
     //
     // txtThuocLa
     //
     this.txtThuocLa.Location = new System.Drawing.Point(592, 381);
     this.txtThuocLa.Name = "txtThuocLa";
     this.txtThuocLa.Size = new System.Drawing.Size(275, 20);
     this.txtThuocLa.TabIndex = 504;
     //
     // txtRuouBia
     //
     this.txtRuouBia.Location = new System.Drawing.Point(174, 428);
     this.txtRuouBia.Name = "txtRuouBia";
     this.txtRuouBia.Size = new System.Drawing.Size(278, 20);
     this.txtRuouBia.TabIndex = 503;
     //
     // txtMaTuy
     //
     this.txtMaTuy.Location = new System.Drawing.Point(174, 404);
     this.txtMaTuy.Name = "txtMaTuy";
     this.txtMaTuy.Size = new System.Drawing.Size(278, 20);
     this.txtMaTuy.TabIndex = 502;
     //
     // txtDiUng
     //
     this.txtDiUng.Location = new System.Drawing.Point(174, 381);
     this.txtDiUng.Name = "txtDiUng";
     this.txtDiUng.Size = new System.Drawing.Size(278, 20);
     this.txtDiUng.TabIndex = 501;
     //
     // chkKhac
     //
     this.chkKhac.AutoSize = true;
     this.chkKhac.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkKhac.Location = new System.Drawing.Point(481, 430);
     this.chkKhac.Name = "chkKhac";
     this.chkKhac.Size = new System.Drawing.Size(87, 17);
     this.chkKhac.TabIndex = 500;
     this.chkKhac.Text = "6. Khác        ";
     this.chkKhac.UseVisualStyleBackColor = true;
     //
     // chkThuocLao
     //
     this.chkThuocLao.AutoSize = true;
     this.chkThuocLao.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkThuocLao.Location = new System.Drawing.Point(481, 407);
     this.chkThuocLao.Name = "chkThuocLao";
     this.chkThuocLao.Size = new System.Drawing.Size(86, 17);
     this.chkThuocLao.TabIndex = 499;
     this.chkThuocLao.Text = "5. Thuốc lào";
     this.chkThuocLao.UseVisualStyleBackColor = true;
     //
     // chkThuocLa
     //
     this.chkThuocLa.AutoSize = true;
     this.chkThuocLa.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkThuocLa.Location = new System.Drawing.Point(481, 384);
     this.chkThuocLa.Name = "chkThuocLa";
     this.chkThuocLa.Size = new System.Drawing.Size(86, 17);
     this.chkThuocLa.TabIndex = 498;
     this.chkThuocLa.Text = "4. Thuốc lá  ";
     this.chkThuocLa.UseVisualStyleBackColor = true;
     //
     // chkRuouBia
     //
     this.chkRuouBia.AutoSize = true;
     this.chkRuouBia.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkRuouBia.Location = new System.Drawing.Point(58, 430);
     this.chkRuouBia.Name = "chkRuouBia";
     this.chkRuouBia.Size = new System.Drawing.Size(81, 17);
     this.chkRuouBia.TabIndex = 497;
     this.chkRuouBia.Text = "3. Rượu bia";
     this.chkRuouBia.UseVisualStyleBackColor = true;
     //
     // chkMaTuy
     //
     this.chkMaTuy.AutoSize = true;
     this.chkMaTuy.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkMaTuy.Location = new System.Drawing.Point(58, 407);
     this.chkMaTuy.Name = "chkMaTuy";
     this.chkMaTuy.Size = new System.Drawing.Size(82, 17);
     this.chkMaTuy.TabIndex = 496;
     this.chkMaTuy.Text = "2. Ma túy    ";
     this.chkMaTuy.UseVisualStyleBackColor = true;
     //
     // chkDiUng
     //
     this.chkDiUng.AutoSize = true;
     this.chkDiUng.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkDiUng.Location = new System.Drawing.Point(58, 384);
     this.chkDiUng.Name = "chkDiUng";
     this.chkDiUng.Size = new System.Drawing.Size(83, 17);
     this.chkDiUng.TabIndex = 495;
     this.chkDiUng.Text = "1. Dị Ứng    ";
     this.chkDiUng.UseVisualStyleBackColor = true;
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Location = new System.Drawing.Point(32, 330);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(129, 13);
     this.label46.TabIndex = 494;
     this.label46.Text = "Đặc điểm liên quan bệnh:";
     //
     // txtBenhAnTienSuBenh
     //
     this.txtBenhAnTienSuBenh.Location = new System.Drawing.Point(35, 235);
     this.txtBenhAnTienSuBenh.Name = "txtBenhAnTienSuBenh";
     this.txtBenhAnTienSuBenh.Size = new System.Drawing.Size(847, 82);
     this.txtBenhAnTienSuBenh.TabIndex = 493;
     this.txtBenhAnTienSuBenh.Text = "";
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Location = new System.Drawing.Point(50, 219);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(590, 13);
     this.label45.TabIndex = 492;
     this.label45.Text = "+ Bản thân:(phát triển thể lực từ nhỏ đến lớn, những bệnh đã mắc, ph" +
         "ương pháp ĐTr, tiêm phòng, ăn uống, sinh hoạt v.v...)";
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label44.Location = new System.Drawing.Point(32, 195);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(96, 13);
     this.label44.TabIndex = 491;
     this.label44.Text = "2.Tiền sử bệnh:";
     //
     // txtBenhAnQuaTrinhBenhLy
     //
     this.txtBenhAnQuaTrinhBenhLy.Location = new System.Drawing.Point(35, 103);
     this.txtBenhAnQuaTrinhBenhLy.Name = "txtBenhAnQuaTrinhBenhLy";
     this.txtBenhAnQuaTrinhBenhLy.Size = new System.Drawing.Size(847, 82);
     this.txtBenhAnQuaTrinhBenhLy.TabIndex = 490;
     this.txtBenhAnQuaTrinhBenhLy.Text = "";
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(160, 77);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(299, 13);
     this.label43.TabIndex = 489;
     this.label43.Text = "(khởi phát, diễn biến, chẩn đoán, điều trị các tuyến dưới vv...)";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Location = new System.Drawing.Point(32, 77);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(123, 13);
     this.label42.TabIndex = 46;
     this.label42.Text = "1. Quá trình bệnh lý:";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.Location = new System.Drawing.Point(13, 55);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(74, 13);
     this.label41.TabIndex = 45;
     this.label41.Text = "II.Hỏi bệnh:";
     //
     // txtBenhAnVaoNgayThu
     //
     this.txtBenhAnVaoNgayThu.Location = new System.Drawing.Point(634, 21);
     this.txtBenhAnVaoNgayThu.Name = "txtBenhAnVaoNgayThu";
     this.txtBenhAnVaoNgayThu.Size = new System.Drawing.Size(138, 20);
     this.txtBenhAnVaoNgayThu.TabIndex = 44;
     this.txtBenhAnVaoNgayThu.Text = " ";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Location = new System.Drawing.Point(797, 28);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(52, 13);
     this.label40.TabIndex = 43;
     this.label40.Text = "của bệnh";
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(558, 28);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(70, 13);
     this.label39.TabIndex = 42;
     this.label39.Text = "Vào ngày thứ";
     //
     // txtBenhAnLyDoNhapVien
     //
     this.txtBenhAnLyDoNhapVien.Location = new System.Drawing.Point(122, 21);
     this.txtBenhAnLyDoNhapVien.Name = "txtBenhAnLyDoNhapVien";
     this.txtBenhAnLyDoNhapVien.Size = new System.Drawing.Size(422, 20);
     this.txtBenhAnLyDoNhapVien.TabIndex = 41;
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.Location = new System.Drawing.Point(13, 28);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(103, 13);
     this.label38.TabIndex = 34;
     this.label38.Text = "I.Lý do vào viện:";
     //
     // grpTinhTrangRaVien
     //
     this.grpTinhTrangRaVien.Controls.Add(this.splitContainer3);
     this.grpTinhTrangRaVien.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpTinhTrangRaVien.Location = new System.Drawing.Point(0, 740);
     this.grpTinhTrangRaVien.Name = "grpTinhTrangRaVien";
     this.grpTinhTrangRaVien.Size = new System.Drawing.Size(895, 182);
     this.grpTinhTrangRaVien.TabIndex = 3;
     this.grpTinhTrangRaVien.Text = "IV. TÌNH TRẠNG RA VIỆN";
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(3, 16);
     this.splitContainer3.Name = "splitContainer3";
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.groupBox3);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvKhac);
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvTrong24GioVaoVien);
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvSau24Gio);
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvDoTaiBien);
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvDoBenh);
     this.splitContainer3.Panel2.Controls.Add(this.txtTTRVChuanDoanGiaiPhau);
     this.splitContainer3.Panel2.Controls.Add(this.chkTTRVKhamNgiemTuThi);
     this.splitContainer3.Panel2.Controls.Add(this.txtTTRVNguyenNhanChinhTuVong);
     this.splitContainer3.Panel2.Controls.Add(this.txtTTRVNgayTuVong);
     this.splitContainer3.Panel2.Controls.Add(this.label37);
     this.splitContainer3.Panel2.Controls.Add(this.label36);
     this.splitContainer3.Panel2.Controls.Add(this.label35);
     this.splitContainer3.Panel2.Controls.Add(this.label34);
     this.splitContainer3.Size = new System.Drawing.Size(889, 163);
     this.splitContainer3.SplitterDistance = 328;
     this.splitContainer3.TabIndex = 0;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.chkTTRVAcTinh);
     this.groupBox3.Controls.Add(this.chkTTRVNghiNgo);
     this.groupBox3.Controls.Add(this.chkTTRVLanhTinh);
     this.groupBox3.Controls.Add(this.chkTTRVTuVong);
     this.groupBox3.Controls.Add(this.chkTTRVNangHon);
     this.groupBox3.Controls.Add(this.chkTTRVKhongThayDoi);
     this.groupBox3.Controls.Add(this.chkTTRVDoGiam);
     this.groupBox3.Controls.Add(this.chkTTRVKhoi);
     this.groupBox3.Controls.Add(this.label32);
     this.groupBox3.Controls.Add(this.label33);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(328, 163);
     this.groupBox3.TabIndex = 489;
     this.groupBox3.TabStop = false;
     //
     // chkTTRVAcTinh
     //
     this.chkTTRVAcTinh.AutoSize = true;
     this.chkTTRVAcTinh.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVAcTinh.Location = new System.Drawing.Point(211, 132);
     this.chkTTRVAcTinh.Name = "chkTTRVAcTinh";
     this.chkTTRVAcTinh.Size = new System.Drawing.Size(70, 17);
     this.chkTTRVAcTinh.TabIndex = 493;
     this.chkTTRVAcTinh.Text = "3.Ác tính";
     this.chkTTRVAcTinh.UseVisualStyleBackColor = true;
     this.chkTTRVAcTinh.CheckedChanged += new System.EventHandler(this.chkTTRVAcTinh_CheckedChanged);
     //
     // chkTTRVNghiNgo
     //
     this.chkTTRVNghiNgo.AutoSize = true;
     this.chkTTRVNghiNgo.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVNghiNgo.Location = new System.Drawing.Point(110, 132);
     this.chkTTRVNghiNgo.Name = "chkTTRVNghiNgo";
     this.chkTTRVNghiNgo.Size = new System.Drawing.Size(81, 17);
     this.chkTTRVNghiNgo.TabIndex = 492;
     this.chkTTRVNghiNgo.Text = "2.Nghi ngờ ";
     this.chkTTRVNghiNgo.UseVisualStyleBackColor = true;
     this.chkTTRVNghiNgo.CheckedChanged += new System.EventHandler(this.chkTTRVNghiNgo_CheckedChanged);
     //
     // chkTTRVLanhTinh
     //
     this.chkTTRVLanhTinh.AutoSize = true;
     this.chkTTRVLanhTinh.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVLanhTinh.Location = new System.Drawing.Point(17, 132);
     this.chkTTRVLanhTinh.Name = "chkTTRVLanhTinh";
     this.chkTTRVLanhTinh.Size = new System.Drawing.Size(81, 17);
     this.chkTTRVLanhTinh.TabIndex = 491;
     this.chkTTRVLanhTinh.Text = "1.Lành tính";
     this.chkTTRVLanhTinh.UseVisualStyleBackColor = true;
     this.chkTTRVLanhTinh.CheckedChanged += new System.EventHandler(this.chkTTRVLanhTinh_CheckedChanged);
     //
     // chkTTRVTuVong
     //
     this.chkTTRVTuVong.AutoSize = true;
     this.chkTTRVTuVong.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVTuVong.Location = new System.Drawing.Point(203, 61);
     this.chkTTRVTuVong.Name = "chkTTRVTuVong";
     this.chkTTRVTuVong.Size = new System.Drawing.Size(81, 17);
     this.chkTTRVTuVong.TabIndex = 490;
     this.chkTTRVTuVong.Text = "5.Tử vong  ";
     this.chkTTRVTuVong.UseVisualStyleBackColor = true;
     this.chkTTRVTuVong.CheckedChanged += new System.EventHandler(this.chkTTRVTuVong_CheckedChanged);
     //
     // chkTTRVNangHon
     //
     this.chkTTRVNangHon.AutoSize = true;
     this.chkTTRVNangHon.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVNangHon.Location = new System.Drawing.Point(203, 38);
     this.chkTTRVNangHon.Name = "chkTTRVNangHon";
     this.chkTTRVNangHon.Size = new System.Drawing.Size(82, 17);
     this.chkTTRVNangHon.TabIndex = 489;
     this.chkTTRVNangHon.Text = "4.Nặng hơn";
     this.chkTTRVNangHon.UseVisualStyleBackColor = true;
     this.chkTTRVNangHon.CheckedChanged += new System.EventHandler(this.chkTTRVNangHon_CheckedChanged);
     //
     // chkTTRVKhongThayDoi
     //
     this.chkTTRVKhongThayDoi.AutoSize = true;
     this.chkTTRVKhongThayDoi.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVKhongThayDoi.Location = new System.Drawing.Point(13, 84);
     this.chkTTRVKhongThayDoi.Name = "chkTTRVKhongThayDoi";
     this.chkTTRVKhongThayDoi.Size = new System.Drawing.Size(107, 17);
     this.chkTTRVKhongThayDoi.TabIndex = 488;
     this.chkTTRVKhongThayDoi.Text = "3.Không thay đổi";
     this.chkTTRVKhongThayDoi.UseVisualStyleBackColor = true;
     this.chkTTRVKhongThayDoi.CheckedChanged += new System.EventHandler(this.chkTTRVKhongThayDoi_CheckedChanged);
     //
     // chkTTRVDoGiam
     //
     this.chkTTRVDoGiam.AutoSize = true;
     this.chkTTRVDoGiam.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVDoGiam.Location = new System.Drawing.Point(13, 61);
     this.chkTTRVDoGiam.Name = "chkTTRVDoGiam";
     this.chkTTRVDoGiam.Size = new System.Drawing.Size(107, 17);
     this.chkTTRVDoGiam.TabIndex = 487;
     this.chkTTRVDoGiam.Text = "2.Đỡ, giảm          ";
     this.chkTTRVDoGiam.UseVisualStyleBackColor = true;
     this.chkTTRVDoGiam.CheckedChanged += new System.EventHandler(this.chkTTRVDoGiam_CheckedChanged);
     //
     // chkTTRVKhoi
     //
     this.chkTTRVKhoi.AutoSize = true;
     this.chkTTRVKhoi.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVKhoi.Location = new System.Drawing.Point(13, 38);
     this.chkTTRVKhoi.Name = "chkTTRVKhoi";
     this.chkTTRVKhoi.Size = new System.Drawing.Size(107, 17);
     this.chkTTRVKhoi.TabIndex = 486;
     this.chkTTRVKhoi.Text = "1.Khỏi                 ";
     this.chkTTRVKhoi.UseVisualStyleBackColor = true;
     this.chkTTRVKhoi.CheckedChanged += new System.EventHandler(this.chkTTRVKhoi_CheckedChanged);
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(10, 13);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(82, 13);
     this.label32.TabIndex = 484;
     this.label32.Text = "Kết quả điều trị:";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(10, 106);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(162, 13);
     this.label33.TabIndex = 485;
     this.label33.Text = "Giải phẫu bệnh:(khi có sinh thiết)";
     //
     // chkttrvKhac
     //
     this.chkttrvKhac.AutoSize = true;
     this.chkttrvKhac.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvKhac.Location = new System.Drawing.Point(420, 40);
     this.chkttrvKhac.Name = "chkttrvKhac";
     this.chkttrvKhac.Size = new System.Drawing.Size(60, 17);
     this.chkttrvKhac.TabIndex = 488;
     this.chkttrvKhac.Text = "5.Khác";
     this.chkttrvKhac.UseVisualStyleBackColor = true;
     this.chkttrvKhac.CheckedChanged += new System.EventHandler(this.chkttrvKhac_CheckedChanged);
     //
     // chkttrvTrong24GioVaoVien
     //
     this.chkttrvTrong24GioVaoVien.AutoSize = true;
     this.chkttrvTrong24GioVaoVien.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvTrong24GioVaoVien.Location = new System.Drawing.Point(27, 62);
     this.chkttrvTrong24GioVaoVien.Name = "chkttrvTrong24GioVaoVien";
     this.chkttrvTrong24GioVaoVien.Size = new System.Drawing.Size(139, 17);
     this.chkttrvTrong24GioVaoVien.TabIndex = 487;
     this.chkttrvTrong24GioVaoVien.Text = "2.Trong 24 giờ vào viện";
     this.chkttrvTrong24GioVaoVien.UseVisualStyleBackColor = true;
     this.chkttrvTrong24GioVaoVien.CheckedChanged += new System.EventHandler(this.chkttrvTrong24GioVaoVien_CheckedChanged);
     //
     // chkttrvSau24Gio
     //
     this.chkttrvSau24Gio.AutoSize = true;
     this.chkttrvSau24Gio.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvSau24Gio.Location = new System.Drawing.Point(221, 63);
     this.chkttrvSau24Gio.Name = "chkttrvSau24Gio";
     this.chkttrvSau24Gio.Size = new System.Drawing.Size(130, 17);
     this.chkttrvSau24Gio.TabIndex = 486;
     this.chkttrvSau24Gio.Text = "4.Sau 24 giờ vào viện";
     this.chkttrvSau24Gio.UseVisualStyleBackColor = true;
     this.chkttrvSau24Gio.CheckedChanged += new System.EventHandler(this.chkttrvSau24Gio_CheckedChanged);
     //
     // chkttrvDoTaiBien
     //
     this.chkttrvDoTaiBien.AutoSize = true;
     this.chkttrvDoTaiBien.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvDoTaiBien.Location = new System.Drawing.Point(221, 40);
     this.chkttrvDoTaiBien.Name = "chkttrvDoTaiBien";
     this.chkttrvDoTaiBien.Size = new System.Drawing.Size(130, 17);
     this.chkttrvDoTaiBien.TabIndex = 485;
     this.chkttrvDoTaiBien.Text = "3.Do tai biến điều trị   ";
     this.chkttrvDoTaiBien.UseVisualStyleBackColor = true;
     this.chkttrvDoTaiBien.CheckedChanged += new System.EventHandler(this.chkttrvDoTaiBien_CheckedChanged);
     //
     // chkttrvDoBenh
     //
     this.chkttrvDoBenh.AutoSize = true;
     this.chkttrvDoBenh.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvDoBenh.Location = new System.Drawing.Point(27, 39);
     this.chkttrvDoBenh.Name = "chkttrvDoBenh";
     this.chkttrvDoBenh.Size = new System.Drawing.Size(140, 17);
     this.chkttrvDoBenh.TabIndex = 484;
     this.chkttrvDoBenh.Text = "1.Do Bệnh                     ";
     this.chkttrvDoBenh.UseVisualStyleBackColor = true;
     this.chkttrvDoBenh.CheckedChanged += new System.EventHandler(this.chkttrvDoBenh_CheckedChanged);
     //
     // txtTTRVChuanDoanGiaiPhau
     //
     this.txtTTRVChuanDoanGiaiPhau.Location = new System.Drawing.Point(311, 127);
     this.txtTTRVChuanDoanGiaiPhau.Name = "txtTTRVChuanDoanGiaiPhau";
     this.txtTTRVChuanDoanGiaiPhau.Size = new System.Drawing.Size(236, 20);
     this.txtTTRVChuanDoanGiaiPhau.TabIndex = 40;
     //
     // chkTTRVKhamNgiemTuThi
     //
     this.chkTTRVKhamNgiemTuThi.AutoSize = true;
     this.chkTTRVKhamNgiemTuThi.Location = new System.Drawing.Point(132, 130);
     this.chkTTRVKhamNgiemTuThi.Name = "chkTTRVKhamNgiemTuThi";
     this.chkTTRVKhamNgiemTuThi.Size = new System.Drawing.Size(15, 14);
     this.chkTTRVKhamNgiemTuThi.TabIndex = 27;
     this.chkTTRVKhamNgiemTuThi.UseVisualStyleBackColor = true;
     //
     // txtTTRVNguyenNhanChinhTuVong
     //
     this.txtTTRVNguyenNhanChinhTuVong.Location = new System.Drawing.Point(170, 95);
     this.txtTTRVNguyenNhanChinhTuVong.Name = "txtTTRVNguyenNhanChinhTuVong";
     this.txtTTRVNguyenNhanChinhTuVong.Size = new System.Drawing.Size(377, 20);
     this.txtTTRVNguyenNhanChinhTuVong.TabIndex = 39;
     //
     // txtTTRVNgayTuVong
     //
     this.txtTTRVNgayTuVong.Location = new System.Drawing.Point(118, 11);
     this.txtTTRVNgayTuVong.Name = "txtTTRVNgayTuVong";
     this.txtTTRVNgayTuVong.Size = new System.Drawing.Size(190, 20);
     this.txtTTRVNgayTuVong.TabIndex = 33;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(164, 130);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(141, 13);
     this.label37.TabIndex = 38;
     this.label37.Text = "Chuẩn đoán giải phẫu tử thi:";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(24, 130);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(100, 13);
     this.label36.TabIndex = 37;
     this.label36.Text = "Khám nghiệm tử thi:";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(24, 96);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(144, 13);
     this.label35.TabIndex = 36;
     this.label35.Text = "Nguyên nhân chính tử vong:";
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(24, 15);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(93, 13);
     this.label34.TabIndex = 35;
     this.label34.Text = "Tình hình tử vong:";
     //
     // grpChanDoan
     //
     this.grpChanDoan.Controls.Add(this.splitContainer2);
     this.grpChanDoan.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpChanDoan.Location = new System.Drawing.Point(0, 521);
     this.grpChanDoan.Name = "grpChanDoan";
     this.grpChanDoan.Size = new System.Drawing.Size(895, 219);
     this.grpChanDoan.TabIndex = 2;
     this.grpChanDoan.Text = "III. CHẨN ĐOÁN";
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 16);
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.txtCDKhiVaoDieuTri);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDKKBCapCuu);
     this.splitContainer2.Panel1.Controls.Add(this.chkCDPhauThuat);
     this.splitContainer2.Panel1.Controls.Add(this.chkCDThuThuat);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDMaKhiVaoDieuTri);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDMaKKBCapCuu);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDMaNoiChuyenDen);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDNoiChuyenDen);
     this.splitContainer2.Panel1.Controls.Add(this.label26);
     this.splitContainer2.Panel1.Controls.Add(this.label25);
     this.splitContainer2.Panel1.Controls.Add(this.label24);
     this.splitContainer2.Panel1.Controls.Add(this.label23);
     this.splitContainer2.Panel1.Controls.Add(this.label22);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.groupBox1);
     this.splitContainer2.Size = new System.Drawing.Size(889, 200);
     this.splitContainer2.SplitterDistance = 550;
     this.splitContainer2.TabIndex = 0;
     //
     // txtCDKhiVaoDieuTri
     //
     this.txtCDKhiVaoDieuTri.Location = new System.Drawing.Point(109, 108);
     this.txtCDKhiVaoDieuTri.Name = "txtCDKhiVaoDieuTri";
     this.txtCDKhiVaoDieuTri.Size = new System.Drawing.Size(298, 53);
     this.txtCDKhiVaoDieuTri.TabIndex = 591;
     this.txtCDKhiVaoDieuTri.Text = "";
     //
     // txtCDKKBCapCuu
     //
     this.txtCDKKBCapCuu.Location = new System.Drawing.Point(109, 44);
     this.txtCDKKBCapCuu.Name = "txtCDKKBCapCuu";
     this.txtCDKKBCapCuu.Size = new System.Drawing.Size(298, 55);
     this.txtCDKKBCapCuu.TabIndex = 590;
     this.txtCDKKBCapCuu.Text = "";
     //
     // chkCDPhauThuat
     //
     this.chkCDPhauThuat.AutoSize = true;
     this.chkCDPhauThuat.Location = new System.Drawing.Point(348, 167);
     this.chkCDPhauThuat.Name = "chkCDPhauThuat";
     this.chkCDPhauThuat.Size = new System.Drawing.Size(15, 14);
     this.chkCDPhauThuat.TabIndex = 26;
     this.chkCDPhauThuat.UseVisualStyleBackColor = true;
     //
     // chkCDThuThuat
     //
     this.chkCDThuThuat.AutoSize = true;
     this.chkCDThuThuat.Location = new System.Drawing.Point(164, 167);
     this.chkCDThuThuat.Name = "chkCDThuThuat";
     this.chkCDThuThuat.Size = new System.Drawing.Size(15, 14);
     this.chkCDThuThuat.TabIndex = 25;
     this.chkCDThuThuat.UseVisualStyleBackColor = true;
     //
     // txtCDMaKhiVaoDieuTri
     //
     this.txtCDMaKhiVaoDieuTri.Location = new System.Drawing.Point(413, 123);
     this.txtCDMaKhiVaoDieuTri.Name = "txtCDMaKhiVaoDieuTri";
     this.txtCDMaKhiVaoDieuTri.Size = new System.Drawing.Size(130, 20);
     this.txtCDMaKhiVaoDieuTri.TabIndex = 24;
     //
     // txtCDMaKKBCapCuu
     //
     this.txtCDMaKKBCapCuu.Location = new System.Drawing.Point(413, 60);
     this.txtCDMaKKBCapCuu.Name = "txtCDMaKKBCapCuu";
     this.txtCDMaKKBCapCuu.Size = new System.Drawing.Size(130, 20);
     this.txtCDMaKKBCapCuu.TabIndex = 22;
     //
     // txtCDMaNoiChuyenDen
     //
     this.txtCDMaNoiChuyenDen.Location = new System.Drawing.Point(413, 18);
     this.txtCDMaNoiChuyenDen.Name = "txtCDMaNoiChuyenDen";
     this.txtCDMaNoiChuyenDen.Size = new System.Drawing.Size(130, 20);
     this.txtCDMaNoiChuyenDen.TabIndex = 20;
     //
     // txtCDNoiChuyenDen
     //
     this.txtCDNoiChuyenDen.Location = new System.Drawing.Point(109, 18);
     this.txtCDNoiChuyenDen.Name = "txtCDNoiChuyenDen";
     this.txtCDNoiChuyenDen.Size = new System.Drawing.Size(298, 20);
     this.txtCDNoiChuyenDen.TabIndex = 19;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(274, 168);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(68, 13);
     this.label26.TabIndex = 18;
     this.label26.Text = "+ Phẫu thuật";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(99, 168);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(59, 13);
     this.label25.TabIndex = 17;
     this.label25.Text = "+Thủ thuât";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(4, 123);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(108, 13);
     this.label24.TabIndex = 16;
     this.label24.Text = "Khi vào khoa điều trị:";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(4, 68);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(77, 13);
     this.label23.TabIndex = 15;
     this.label23.Text = "KKB. Cấp cứu:";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(4, 21);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(86, 13);
     this.label22.TabIndex = 14;
     this.label22.Text = "Nơi chuyển đến:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtCDBenhKemTheo);
     this.groupBox1.Controls.Add(this.txtCDBenhChinh);
     this.groupBox1.Controls.Add(this.txtCDMaBenhKemTheo);
     this.groupBox1.Controls.Add(this.txtCDMaBenhChinh);
     this.groupBox1.Controls.Add(this.chkCDBienChung);
     this.groupBox1.Controls.Add(this.chkCDTaiBien);
     this.groupBox1.Controls.Add(this.label27);
     this.groupBox1.Controls.Add(this.label31);
     this.groupBox1.Controls.Add(this.label28);
     this.groupBox1.Controls.Add(this.label30);
     this.groupBox1.Controls.Add(this.label29);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(335, 200);
     this.groupBox1.TabIndex = 27;
     this.groupBox1.TabStop = false;
     //
     // txtCDBenhKemTheo
     //
     this.txtCDBenhKemTheo.Location = new System.Drawing.Point(92, 103);
     this.txtCDBenhKemTheo.Name = "txtCDBenhKemTheo";
     this.txtCDBenhKemTheo.Size = new System.Drawing.Size(185, 53);
     this.txtCDBenhKemTheo.TabIndex = 593;
     this.txtCDBenhKemTheo.Text = "";
     //
     // txtCDBenhChinh
     //
     this.txtCDBenhChinh.Location = new System.Drawing.Point(92, 44);
     this.txtCDBenhChinh.Name = "txtCDBenhChinh";
     this.txtCDBenhChinh.Size = new System.Drawing.Size(185, 53);
     this.txtCDBenhChinh.TabIndex = 592;
     this.txtCDBenhChinh.Text = "";
     //
     // txtCDMaBenhKemTheo
     //
     this.txtCDMaBenhKemTheo.Location = new System.Drawing.Point(284, 123);
     this.txtCDMaBenhKemTheo.Name = "txtCDMaBenhKemTheo";
     this.txtCDMaBenhKemTheo.Size = new System.Drawing.Size(45, 20);
     this.txtCDMaBenhKemTheo.TabIndex = 43;
     //
     // txtCDMaBenhChinh
     //
     this.txtCDMaBenhChinh.Location = new System.Drawing.Point(282, 61);
     this.txtCDMaBenhChinh.Name = "txtCDMaBenhChinh";
     this.txtCDMaBenhChinh.Size = new System.Drawing.Size(45, 20);
     this.txtCDMaBenhChinh.TabIndex = 41;
     //
     // chkCDBienChung
     //
     this.chkCDBienChung.AutoSize = true;
     this.chkCDBienChung.Location = new System.Drawing.Point(287, 169);
     this.chkCDBienChung.Name = "chkCDBienChung";
     this.chkCDBienChung.Size = new System.Drawing.Size(15, 14);
     this.chkCDBienChung.TabIndex = 39;
     this.chkCDBienChung.UseVisualStyleBackColor = true;
     //
     // chkCDTaiBien
     //
     this.chkCDTaiBien.AutoSize = true;
     this.chkCDTaiBien.Location = new System.Drawing.Point(93, 169);
     this.chkCDTaiBien.Name = "chkCDTaiBien";
     this.chkCDTaiBien.Size = new System.Drawing.Size(15, 14);
     this.chkCDTaiBien.TabIndex = 38;
     this.chkCDTaiBien.UseVisualStyleBackColor = true;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(211, 170);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(70, 13);
     this.label27.TabIndex = 37;
     this.label27.Text = "+ Biến chứng";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(16, 23);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(47, 13);
     this.label31.TabIndex = 33;
     this.label31.Text = "Ra viện:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(36, 170);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(51, 13);
     this.label28.TabIndex = 36;
     this.label28.Text = "+Tai biến";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(7, 64);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(72, 13);
     this.label30.TabIndex = 34;
     this.label30.Text = "+Bệnh chính:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(7, 123);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(88, 13);
     this.label29.TabIndex = 35;
     this.label29.Text = "+Bệnh kèm theo:";
     //
     // grpQuanLyNguoiBenh
     //
     this.grpQuanLyNguoiBenh.Controls.Add(this.splitContainer1);
     this.grpQuanLyNguoiBenh.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpQuanLyNguoiBenh.Location = new System.Drawing.Point(0, 278);
     this.grpQuanLyNguoiBenh.Name = "grpQuanLyNguoiBenh";
     this.grpQuanLyNguoiBenh.Size = new System.Drawing.Size(895, 243);
     this.grpQuanLyNguoiBenh.TabIndex = 1;
     this.grpQuanLyNguoiBenh.TabStop = false;
     this.grpQuanLyNguoiBenh.Text = "II. QUẢN LÝ NGƯỜI BỆNH";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 16);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.chkQLNBKhoaDieuTri);
     this.splitContainer1.Panel1.Controls.Add(this.chkQLNBKKB);
     this.splitContainer1.Panel1.Controls.Add(this.chkQLNBCapCuu);
     this.splitContainer1.Panel1.Controls.Add(this.label21);
     this.splitContainer1.Panel1.Controls.Add(this.grdQLNBKhoa);
     this.splitContainer1.Panel1.Controls.Add(this.label14);
     this.splitContainer1.Panel1.Controls.Add(this.dtQLNBVaoVien);
     this.splitContainer1.Panel1.Controls.Add(this.label7);
     this.splitContainer1.Panel1.Controls.Add(this.label6);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer1.Size = new System.Drawing.Size(889, 224);
     this.splitContainer1.SplitterDistance = 465;
     this.splitContainer1.TabIndex = 0;
     //
     // chkQLNBKhoaDieuTri
     //
     this.chkQLNBKhoaDieuTri.AutoSize = true;
     this.chkQLNBKhoaDieuTri.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBKhoaDieuTri.Location = new System.Drawing.Point(363, 40);
     this.chkQLNBKhoaDieuTri.Name = "chkQLNBKhoaDieuTri";
     this.chkQLNBKhoaDieuTri.Size = new System.Drawing.Size(95, 17);
     this.chkQLNBKhoaDieuTri.TabIndex = 16;
     this.chkQLNBKhoaDieuTri.Text = "3.Khoa điều trị";
     this.chkQLNBKhoaDieuTri.UseVisualStyleBackColor = true;
     this.chkQLNBKhoaDieuTri.CheckedChanged += new System.EventHandler(this.chkQLNBKhoaDieuTri_CheckedChanged);
     //
     // chkQLNBKKB
     //
     this.chkQLNBKKB.AutoSize = true;
     this.chkQLNBKKB.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBKKB.Location = new System.Drawing.Point(242, 40);
     this.chkQLNBKKB.Name = "chkQLNBKKB";
     this.chkQLNBKKB.Size = new System.Drawing.Size(59, 17);
     this.chkQLNBKKB.TabIndex = 15;
     this.chkQLNBKKB.Text = "2. KKB";
     this.chkQLNBKKB.UseVisualStyleBackColor = true;
     this.chkQLNBKKB.CheckedChanged += new System.EventHandler(this.chkQLNBKKB_CheckedChanged);
     //
     // chkQLNBCapCuu
     //
     this.chkQLNBCapCuu.AutoSize = true;
     this.chkQLNBCapCuu.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBCapCuu.Location = new System.Drawing.Point(90, 40);
     this.chkQLNBCapCuu.Name = "chkQLNBCapCuu";
     this.chkQLNBCapCuu.Size = new System.Drawing.Size(75, 17);
     this.chkQLNBCapCuu.TabIndex = 14;
     this.chkQLNBCapCuu.Text = "1.Cấp cứu";
     this.chkQLNBCapCuu.UseVisualStyleBackColor = true;
     this.chkQLNBCapCuu.CheckedChanged += new System.EventHandler(this.chkQLNBCapCuu_CheckedChanged);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(13, 103);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(73, 13);
     this.label21.TabIndex = 13;
     this.label21.Text = "Chuyển khoa:";
     //
     // grdQLNBKhoa
     //
     this.grdQLNBKhoa.ColumnAutoResize = true;
     grdQLNBKhoa_DesignTimeLayout.LayoutString = resources.GetString("grdQLNBKhoa_DesignTimeLayout.LayoutString");
     this.grdQLNBKhoa.DesignTimeLayout = grdQLNBKhoa_DesignTimeLayout;
     this.grdQLNBKhoa.GroupByBoxVisible = false;
     this.grdQLNBKhoa.Location = new System.Drawing.Point(91, 64);
     this.grdQLNBKhoa.Name = "grdQLNBKhoa";
     this.grdQLNBKhoa.Size = new System.Drawing.Size(367, 138);
     this.grdQLNBKhoa.TabIndex = 12;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(14, 85);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(56, 13);
     this.label14.TabIndex = 11;
     this.label14.Text = "Vào khoa:";
     //
     // dtQLNBVaoVien
     //
     this.dtQLNBVaoVien.CustomFormat = "dd/MM/yyyy hh:mm";
     this.dtQLNBVaoVien.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtQLNBVaoVien.Location = new System.Drawing.Point(91, 8);
     this.dtQLNBVaoVien.Name = "dtQLNBVaoVien";
     this.dtQLNBVaoVien.Size = new System.Drawing.Size(189, 20);
     this.dtQLNBVaoVien.TabIndex = 10;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(13, 37);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(73, 13);
     this.label7.TabIndex = 8;
     this.label7.Text = "Trực tiếp vào:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(14, 10);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(53, 13);
     this.label6.TabIndex = 7;
     this.label6.Text = "Vào Viên:";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.dtQLNBRaVien);
     this.groupBox2.Controls.Add(this.chkQLNBDuaVe);
     this.groupBox2.Controls.Add(this.chkQLNBBoVe);
     this.groupBox2.Controls.Add(this.chkQLNBXinVe);
     this.groupBox2.Controls.Add(this.chkQLNBRaVien);
     this.groupBox2.Controls.Add(this.chkQLNBCK);
     this.groupBox2.Controls.Add(this.chkQLNBTuyenDuoi);
     this.groupBox2.Controls.Add(this.chkQLNBTuyenTren);
     this.groupBox2.Controls.Add(this.chkQLNBKhac);
     this.groupBox2.Controls.Add(this.chkQLNBTuDen);
     this.groupBox2.Controls.Add(this.chkQLNBCoQuanYTe);
     this.groupBox2.Controls.Add(this.txtQLNBTongSoNgayDieuTri);
     this.groupBox2.Controls.Add(this.label20);
     this.groupBox2.Controls.Add(this.label19);
     this.groupBox2.Controls.Add(this.label18);
     this.groupBox2.Controls.Add(this.txtQLNBChuyenDen);
     this.groupBox2.Controls.Add(this.label17);
     this.groupBox2.Controls.Add(this.label15);
     this.groupBox2.Controls.Add(this.txtQLNBLanVaoVien);
     this.groupBox2.Controls.Add(this.label12);
     this.groupBox2.Controls.Add(this.label11);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(420, 224);
     this.groupBox2.TabIndex = 17;
     this.groupBox2.TabStop = false;
     //
     // dtQLNBRaVien
     //
     this.dtQLNBRaVien.Location = new System.Drawing.Point(120, 121);
     this.dtQLNBRaVien.Name = "dtQLNBRaVien";
     this.dtQLNBRaVien.Size = new System.Drawing.Size(275, 20);
     this.dtQLNBRaVien.TabIndex = 497;
     //
     // chkQLNBDuaVe
     //
     this.chkQLNBDuaVe.AutoSize = true;
     this.chkQLNBDuaVe.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBDuaVe.Location = new System.Drawing.Point(336, 155);
     this.chkQLNBDuaVe.Name = "chkQLNBDuaVe";
     this.chkQLNBDuaVe.Size = new System.Drawing.Size(70, 17);
     this.chkQLNBDuaVe.TabIndex = 496;
     this.chkQLNBDuaVe.Text = "4.Đưa về";
     this.chkQLNBDuaVe.UseVisualStyleBackColor = true;
     this.chkQLNBDuaVe.CheckedChanged += new System.EventHandler(this.chkQLNBDuaVe_CheckedChanged);
     //
     // chkQLNBBoVe
     //
     this.chkQLNBBoVe.AutoSize = true;
     this.chkQLNBBoVe.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBBoVe.Location = new System.Drawing.Point(269, 155);
     this.chkQLNBBoVe.Name = "chkQLNBBoVe";
     this.chkQLNBBoVe.Size = new System.Drawing.Size(63, 17);
     this.chkQLNBBoVe.TabIndex = 495;
     this.chkQLNBBoVe.Text = "3.Bỏ về";
     this.chkQLNBBoVe.UseVisualStyleBackColor = true;
     this.chkQLNBBoVe.CheckedChanged += new System.EventHandler(this.chkQLNBBoVe_CheckedChanged);
     //
     // chkQLNBXinVe
     //
     this.chkQLNBXinVe.AutoSize = true;
     this.chkQLNBXinVe.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBXinVe.Location = new System.Drawing.Point(195, 155);
     this.chkQLNBXinVe.Name = "chkQLNBXinVe";
     this.chkQLNBXinVe.Size = new System.Drawing.Size(65, 17);
     this.chkQLNBXinVe.TabIndex = 494;
     this.chkQLNBXinVe.Text = "2.Xin về";
     this.chkQLNBXinVe.UseVisualStyleBackColor = true;
     this.chkQLNBXinVe.CheckedChanged += new System.EventHandler(this.chkQLNBXinVe_CheckedChanged);
     //
     // chkQLNBRaVien
     //
     this.chkQLNBRaVien.AutoSize = true;
     this.chkQLNBRaVien.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBRaVien.Location = new System.Drawing.Point(113, 155);
     this.chkQLNBRaVien.Name = "chkQLNBRaVien";
     this.chkQLNBRaVien.Size = new System.Drawing.Size(72, 17);
     this.chkQLNBRaVien.TabIndex = 493;
     this.chkQLNBRaVien.Text = "1.Ra viện";
     this.chkQLNBRaVien.UseVisualStyleBackColor = true;
     this.chkQLNBRaVien.CheckedChanged += new System.EventHandler(this.chkQLNBRaVien_CheckedChanged);
     //
     // chkQLNBCK
     //
     this.chkQLNBCK.AutoSize = true;
     this.chkQLNBCK.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBCK.Location = new System.Drawing.Point(357, 70);
     this.chkQLNBCK.Name = "chkQLNBCK";
     this.chkQLNBCK.Size = new System.Drawing.Size(49, 17);
     this.chkQLNBCK.TabIndex = 492;
     this.chkQLNBCK.Text = "3.CK";
     this.chkQLNBCK.UseVisualStyleBackColor = true;
     this.chkQLNBCK.CheckedChanged += new System.EventHandler(this.chkQLNBCK_CheckedChanged);
     //
     // chkQLNBTuyenDuoi
     //
     this.chkQLNBTuyenDuoi.AutoSize = true;
     this.chkQLNBTuyenDuoi.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBTuyenDuoi.Location = new System.Drawing.Point(233, 70);
     this.chkQLNBTuyenDuoi.Name = "chkQLNBTuyenDuoi";
     this.chkQLNBTuyenDuoi.Size = new System.Drawing.Size(88, 17);
     this.chkQLNBTuyenDuoi.TabIndex = 491;
     this.chkQLNBTuyenDuoi.Text = "2.Tuyến dưới";
     this.chkQLNBTuyenDuoi.UseVisualStyleBackColor = true;
     this.chkQLNBTuyenDuoi.CheckedChanged += new System.EventHandler(this.chkQLNBTuyenDuoi_CheckedChanged);
     //
     // chkQLNBTuyenTren
     //
     this.chkQLNBTuyenTren.AutoSize = true;
     this.chkQLNBTuyenTren.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBTuyenTren.Location = new System.Drawing.Point(120, 72);
     this.chkQLNBTuyenTren.Name = "chkQLNBTuyenTren";
     this.chkQLNBTuyenTren.Size = new System.Drawing.Size(86, 17);
     this.chkQLNBTuyenTren.TabIndex = 490;
     this.chkQLNBTuyenTren.Text = "1.Tuyến trên";
     this.chkQLNBTuyenTren.UseVisualStyleBackColor = true;
     this.chkQLNBTuyenTren.CheckedChanged += new System.EventHandler(this.chkQLNBTuyenTren_CheckedChanged);
     //
     // chkQLNBKhac
     //
     this.chkQLNBKhac.AutoSize = true;
     this.chkQLNBKhac.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBKhac.Location = new System.Drawing.Point(343, 14);
     this.chkQLNBKhac.Name = "chkQLNBKhac";
     this.chkQLNBKhac.Size = new System.Drawing.Size(63, 17);
     this.chkQLNBKhac.TabIndex = 489;
     this.chkQLNBKhac.Text = "3. Khác";
     this.chkQLNBKhac.UseVisualStyleBackColor = true;
     this.chkQLNBKhac.CheckedChanged += new System.EventHandler(this.chkQLNBKhac_CheckedChanged);
     //
     // chkQLNBTuDen
     //
     this.chkQLNBTuDen.AutoSize = true;
     this.chkQLNBTuDen.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBTuDen.Location = new System.Drawing.Point(244, 14);
     this.chkQLNBTuDen.Name = "chkQLNBTuDen";
     this.chkQLNBTuDen.Size = new System.Drawing.Size(74, 17);
     this.chkQLNBTuDen.TabIndex = 488;
     this.chkQLNBTuDen.Text = "2. Tự Đến";
     this.chkQLNBTuDen.UseVisualStyleBackColor = true;
     this.chkQLNBTuDen.CheckedChanged += new System.EventHandler(this.chkQLNBTuDen_CheckedChanged);
     //
     // chkQLNBCoQuanYTe
     //
     this.chkQLNBCoQuanYTe.AutoSize = true;
     this.chkQLNBCoQuanYTe.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBCoQuanYTe.Location = new System.Drawing.Point(120, 14);
     this.chkQLNBCoQuanYTe.Name = "chkQLNBCoQuanYTe";
     this.chkQLNBCoQuanYTe.Size = new System.Drawing.Size(103, 17);
     this.chkQLNBCoQuanYTe.TabIndex = 487;
     this.chkQLNBCoQuanYTe.Text = "1.Cơ Quan Y Tế";
     this.chkQLNBCoQuanYTe.UseVisualStyleBackColor = true;
     this.chkQLNBCoQuanYTe.CheckedChanged += new System.EventHandler(this.chkQLNBCoQuanYTe_CheckedChanged);
     //
     // txtQLNBTongSoNgayDieuTri
     //
     this.txtQLNBTongSoNgayDieuTri.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQLNBTongSoNgayDieuTri.Location = new System.Drawing.Point(120, 181);
     this.txtQLNBTongSoNgayDieuTri.Name = "txtQLNBTongSoNgayDieuTri";
     this.txtQLNBTongSoNgayDieuTri.Size = new System.Drawing.Size(103, 20);
     this.txtQLNBTongSoNgayDieuTri.TabIndex = 486;
     this.txtQLNBTongSoNgayDieuTri.TabStop = false;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(6, 184);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(110, 13);
     this.label20.TabIndex = 485;
     this.label20.Text = "Tổng số ngày điều trị:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(6, 156);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(71, 13);
     this.label19.TabIndex = 484;
     this.label19.Text = "Lý do ra viện:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(6, 127);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(47, 13);
     this.label18.TabIndex = 483;
     this.label18.Text = "Ra viện:";
     //
     // txtQLNBChuyenDen
     //
     this.txtQLNBChuyenDen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQLNBChuyenDen.Location = new System.Drawing.Point(120, 95);
     this.txtQLNBChuyenDen.Name = "txtQLNBChuyenDen";
     this.txtQLNBChuyenDen.Size = new System.Drawing.Size(275, 20);
     this.txtQLNBChuyenDen.TabIndex = 482;
     this.txtQLNBChuyenDen.TabStop = false;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(6, 99);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(68, 13);
     this.label17.TabIndex = 481;
     this.label17.Text = "Chuyển đến:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(6, 71);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(69, 13);
     this.label15.TabIndex = 480;
     this.label15.Text = "Chuyển viện:";
     //
     // txtQLNBLanVaoVien
     //
     this.txtQLNBLanVaoVien.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQLNBLanVaoVien.Location = new System.Drawing.Point(120, 40);
     this.txtQLNBLanVaoVien.Name = "txtQLNBLanVaoVien";
     this.txtQLNBLanVaoVien.Size = new System.Drawing.Size(103, 20);
     this.txtQLNBLanVaoVien.TabIndex = 479;
     this.txtQLNBLanVaoVien.TabStop = false;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(6, 43);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(87, 13);
     this.label12.TabIndex = 478;
     this.label12.Text = "Vào viện lần thứ:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(6, 16);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(71, 13);
     this.label11.TabIndex = 477;
     this.label11.Text = "Nơi giới thiệu:";
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Font = new System.Drawing.Font("Latha", 8.25F);
     this.uiStatusBar1.Location = new System.Drawing.Point(0, 644);
     this.uiStatusBar1.Name = "uiStatusBar1";
     this.uiStatusBar1.Size = new System.Drawing.Size(912, 25);
     this.uiStatusBar1.TabIndex = 584;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.lblMess);
     this.panel2.Controls.Add(this.cmdDelete);
     this.panel2.Controls.Add(this.cmdSave);
     this.panel2.Controls.Add(this.cmdInBenhAn);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 585);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(912, 59);
     this.panel2.TabIndex = 585;
     //
     // lblMess
     //
     this.lblMess.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.lblMess.BackColor = System.Drawing.SystemColors.Control;
     this.lblMess.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMess.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblMess.Location = new System.Drawing.Point(12, 29);
     this.lblMess.Name = "lblMess";
     this.lblMess.Size = new System.Drawing.Size(236, 20);
     this.lblMess.TabIndex = 590;
     this.lblMess.Text = "label94";
     this.lblMess.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cmdDelete
     //
     this.cmdDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdDelete.Location = new System.Drawing.Point(591, 13);
     this.cmdDelete.Name = "cmdDelete";
     this.cmdDelete.Size = new System.Drawing.Size(126, 40);
     this.cmdDelete.TabIndex = 589;
     this.cmdDelete.Text = "&Xóa Bệnh Án";
     this.cmdDelete.UseVisualStyleBackColor = true;
     this.cmdDelete.Click += new System.EventHandler(this.cmdDelete_Click);
     //
     // cmdSave
     //
     this.cmdSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSave.Location = new System.Drawing.Point(267, 15);
     this.cmdSave.Name = "cmdSave";
     this.cmdSave.Size = new System.Drawing.Size(123, 38);
     this.cmdSave.TabIndex = 587;
     this.cmdSave.Text = "&Lưu (Ctrl+S)";
     this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click);
     //
     // cmdInBenhAn
     //
     this.cmdInBenhAn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInBenhAn.Location = new System.Drawing.Point(432, 13);
     this.cmdInBenhAn.Name = "cmdInBenhAn";
     this.cmdInBenhAn.Size = new System.Drawing.Size(126, 40);
     this.cmdInBenhAn.TabIndex = 588;
     this.cmdInBenhAn.Text = "&In Bệnh Án(F4)";
     this.cmdInBenhAn.UseVisualStyleBackColor = true;
     this.cmdInBenhAn.Click += new System.EventHandler(this.cmdInBenhAn_Click);
     //
     // frm_BENHAN_N0ITRU
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(912, 669);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.panel1);
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_BENHAN_N0ITRU";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Bệnh Án Nội Khoa";
     this.Load += new System.EventHandler(this.frm_BENHAN_NOITRU_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_BENHAN_N0ITRU_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBenhNhan)).EndInit();
     this.grpThongTinBenhNhan.ResumeLayout(false);
     this.grpThongTinBenhNhan.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).EndInit();
     this.uiGroupBox4.ResumeLayout(false);
     this.uiGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpBenhAn)).EndInit();
     this.grpBenhAn.ResumeLayout(false);
     this.grpBenhAn.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     this.uiGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpTinhTrangRaVien)).EndInit();
     this.grpTinhTrangRaVien.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.Panel2.PerformLayout();
     this.splitContainer3.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpChanDoan)).EndInit();
     this.grpChanDoan.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.grpQuanLyNguoiBenh.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdQLNBKhoa)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAddTime));
     DateTimePickerIn  = new System.Windows.Forms.DateTimePicker();
     LabelTip          = new System.Windows.Forms.Label();
     LabelIn           = new System.Windows.Forms.Label();
     LabelOut          = new System.Windows.Forms.Label();
     DateTimePickerOut = new System.Windows.Forms.DateTimePicker();
     ButtonAdd         = new System.Windows.Forms.Button();
     TextBoxCardID     = new System.Windows.Forms.TextBox();
     LabelID           = new System.Windows.Forms.Label();
     datePicker        = new System.Windows.Forms.DateTimePicker();
     DateLabel         = new System.Windows.Forms.Label();
     SuspendLayout();
     //
     // DateTimePickerIn
     //
     DateTimePickerIn.Anchor        = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     DateTimePickerIn.CustomFormat  = "h:mm:ss tt";
     DateTimePickerIn.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     DateTimePickerIn.Location      = new System.Drawing.Point(255, 95);
     DateTimePickerIn.Margin        = new System.Windows.Forms.Padding(2);
     DateTimePickerIn.Name          = "DateTimePickerIn";
     DateTimePickerIn.ShowUpDown    = true;
     DateTimePickerIn.Size          = new System.Drawing.Size(109, 20);
     DateTimePickerIn.TabIndex      = 2;
     DateTimePickerIn.ValueChanged += new System.EventHandler(DateTimePickerIn_ValueChanged);
     //
     // LabelTip
     //
     LabelTip.Location = new System.Drawing.Point(9, 7);
     LabelTip.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     LabelTip.Name     = "LabelTip";
     LabelTip.Size     = new System.Drawing.Size(355, 33);
     LabelTip.TabIndex = 2;
     LabelTip.Text     = "Scan your card or enter your Student ID, then set the clock-in and clock-out time" +
                         "s. Click the \"Add Time\" button to log the time.";
     //
     // LabelIn
     //
     LabelIn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     LabelIn.AutoSize = true;
     LabelIn.Location = new System.Drawing.Point(177, 98);
     LabelIn.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     LabelIn.Name     = "LabelIn";
     LabelIn.Size     = new System.Drawing.Size(75, 13);
     LabelIn.TabIndex = 3;
     LabelIn.Text     = "Clock-In Time:";
     //
     // LabelOut
     //
     LabelOut.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     LabelOut.AutoSize = true;
     LabelOut.Location = new System.Drawing.Point(170, 122);
     LabelOut.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     LabelOut.Name     = "LabelOut";
     LabelOut.Size     = new System.Drawing.Size(83, 13);
     LabelOut.TabIndex = 5;
     LabelOut.Text     = "Clock-Out Time:";
     //
     // DateTimePickerOut
     //
     DateTimePickerOut.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     DateTimePickerOut.CustomFormat = "h:mm:ss tt";
     DateTimePickerOut.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     DateTimePickerOut.Location     = new System.Drawing.Point(255, 119);
     DateTimePickerOut.Margin       = new System.Windows.Forms.Padding(2);
     DateTimePickerOut.Name         = "DateTimePickerOut";
     DateTimePickerOut.ShowUpDown   = true;
     DateTimePickerOut.Size         = new System.Drawing.Size(110, 20);
     DateTimePickerOut.TabIndex     = 3;
     //
     // ButtonAdd
     //
     ButtonAdd.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     ButtonAdd.Location = new System.Drawing.Point(255, 141);
     ButtonAdd.Margin   = new System.Windows.Forms.Padding(2);
     ButtonAdd.Name     = "ButtonAdd";
     ButtonAdd.Size     = new System.Drawing.Size(110, 22);
     ButtonAdd.TabIndex = 4;
     ButtonAdd.Text     = "Add Time && Close";
     ButtonAdd.UseVisualStyleBackColor = true;
     ButtonAdd.Click += new System.EventHandler(ButtonAdd_Click);
     //
     // TextBoxCardID
     //
     TextBoxCardID.AcceptsReturn = true;
     TextBoxCardID.Location      = new System.Drawing.Point(95, 43);
     TextBoxCardID.Margin        = new System.Windows.Forms.Padding(2);
     TextBoxCardID.Name          = "TextBoxCardID";
     TextBoxCardID.Size          = new System.Drawing.Size(270, 20);
     TextBoxCardID.TabIndex      = 1;
     TextBoxCardID.KeyDown      += new System.Windows.Forms.KeyEventHandler(TextBoxID_KeyDown);
     //
     // LabelID
     //
     LabelID.AutoSize = true;
     LabelID.Location = new System.Drawing.Point(9, 43);
     LabelID.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     LabelID.Name     = "LabelID";
     LabelID.Size     = new System.Drawing.Size(88, 13);
     LabelID.TabIndex = 8;
     LabelID.Text     = "Card/Student ID:";
     //
     // datePicker
     //
     datePicker.Location = new System.Drawing.Point(165, 68);
     datePicker.Name     = "datePicker";
     datePicker.Size     = new System.Drawing.Size(200, 20);
     datePicker.TabIndex = 9;
     //
     // DateLabel
     //
     DateLabel.AutoSize = true;
     DateLabel.Location = new System.Drawing.Point(132, 71);
     DateLabel.Name     = "DateLabel";
     DateLabel.Size     = new System.Drawing.Size(33, 13);
     DateLabel.TabIndex = 10;
     DateLabel.Text     = "Date:";
     //
     // FormAddTime
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(369, 169);
     Controls.Add(DateLabel);
     Controls.Add(datePicker);
     Controls.Add(LabelID);
     Controls.Add(TextBoxCardID);
     Controls.Add(ButtonAdd);
     Controls.Add(LabelOut);
     Controls.Add(DateTimePickerOut);
     Controls.Add(LabelIn);
     Controls.Add(LabelTip);
     Controls.Add(DateTimePickerIn);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     Icon            = ((System.Drawing.Icon)(resources.GetObject("$Icon")));
     Margin          = new System.Windows.Forms.Padding(2);
     MaximizeBox     = false;
     MinimizeBox     = false;
     Name            = "FormAddTime";
     SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     Text            = "FormAddTime";
     ResumeLayout(false);
     PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ItemNameLB           = new System.Windows.Forms.Label();
     this.TimestampLB          = new System.Windows.Forms.Label();
     this.ValueLB              = new System.Windows.Forms.Label();
     this.ItemNameTB           = new System.Windows.Forms.TextBox();
     this.TimestampSpecifiedCB = new System.Windows.Forms.CheckBox();
     this.ItemPathTB           = new System.Windows.Forms.TextBox();
     this.ItemPathLB           = new System.Windows.Forms.Label();
     this.QualitySpecifiedCB   = new System.Windows.Forms.CheckBox();
     this.VendorBitsCTRL       = new System.Windows.Forms.NumericUpDown();
     this.QualityBitsLB        = new System.Windows.Forms.Label();
     this.ValueSpecifiedCB     = new System.Windows.Forms.CheckBox();
     this.QualityBitsCTRL      = new CAS.Lib.OPCClientControlsLib.EnumCtrl();
     this.LimitBitsCTRL        = new CAS.Lib.OPCClientControlsLib.EnumCtrl();
     this.LimitBitsLB          = new System.Windows.Forms.Label();
     this.VendorBitsLB         = new System.Windows.Forms.Label();
     this.ValueCTRL            = new CAS.Lib.OPCClientControlsLib.ValueCtrl();
     this.TimestampCTRL        = new System.Windows.Forms.DateTimePicker();
     ((System.ComponentModel.ISupportInitialize)(this.VendorBitsCTRL)).BeginInit();
     this.SuspendLayout();
     //
     // ItemNameLB
     //
     this.ItemNameLB.Name      = "ItemNameLB";
     this.ItemNameLB.TabIndex  = 0;
     this.ItemNameLB.Text      = "Item Name";
     this.ItemNameLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // TimestampLB
     //
     this.TimestampLB.Location  = new System.Drawing.Point(0, 144);
     this.TimestampLB.Name      = "TimestampLB";
     this.TimestampLB.TabIndex  = 1;
     this.TimestampLB.Text      = "Timestamp";
     this.TimestampLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ValueLB
     //
     this.ValueLB.Location  = new System.Drawing.Point(0, 48);
     this.ValueLB.Name      = "ValueLB";
     this.ValueLB.TabIndex  = 3;
     this.ValueLB.Text      = "Value";
     this.ValueLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ItemNameTB
     //
     this.ItemNameTB.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                               | System.Windows.Forms.AnchorStyles.Right);
     this.ItemNameTB.Location = new System.Drawing.Point(104, 0);
     this.ItemNameTB.Name     = "ItemNameTB";
     this.ItemNameTB.ReadOnly = true;
     this.ItemNameTB.Size     = new System.Drawing.Size(248, 20);
     this.ItemNameTB.TabIndex = 8;
     this.ItemNameTB.Text     = "";
     //
     // TimestampSpecifiedCB
     //
     this.TimestampSpecifiedCB.Anchor          = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.TimestampSpecifiedCB.Checked         = true;
     this.TimestampSpecifiedCB.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.TimestampSpecifiedCB.Location        = new System.Drawing.Point(336, 143);
     this.TimestampSpecifiedCB.Name            = "TimestampSpecifiedCB";
     this.TimestampSpecifiedCB.Size            = new System.Drawing.Size(16, 24);
     this.TimestampSpecifiedCB.TabIndex        = 20;
     this.TimestampSpecifiedCB.CheckedChanged += new System.EventHandler(this.Specified_CheckedChanged);
     //
     // ItemPathTB
     //
     this.ItemPathTB.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                               | System.Windows.Forms.AnchorStyles.Right);
     this.ItemPathTB.Location = new System.Drawing.Point(104, 24);
     this.ItemPathTB.Name     = "ItemPathTB";
     this.ItemPathTB.ReadOnly = true;
     this.ItemPathTB.Size     = new System.Drawing.Size(248, 20);
     this.ItemPathTB.TabIndex = 27;
     this.ItemPathTB.Text     = "";
     //
     // ItemPathLB
     //
     this.ItemPathLB.Location  = new System.Drawing.Point(0, 24);
     this.ItemPathLB.Name      = "ItemPathLB";
     this.ItemPathLB.TabIndex  = 26;
     this.ItemPathLB.Text      = "Item Path";
     this.ItemPathLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // QualitySpecifiedCB
     //
     this.QualitySpecifiedCB.Anchor          = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.QualitySpecifiedCB.Checked         = true;
     this.QualitySpecifiedCB.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.QualitySpecifiedCB.Location        = new System.Drawing.Point(336, 71);
     this.QualitySpecifiedCB.Name            = "QualitySpecifiedCB";
     this.QualitySpecifiedCB.Size            = new System.Drawing.Size(16, 24);
     this.QualitySpecifiedCB.TabIndex        = 30;
     this.QualitySpecifiedCB.CheckedChanged += new System.EventHandler(this.Specified_CheckedChanged);
     //
     // VendorBitsCTRL
     //
     this.VendorBitsCTRL.Location = new System.Drawing.Point(104, 121);
     this.VendorBitsCTRL.Maximum  = new System.Decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.VendorBitsCTRL.Name     = "VendorBitsCTRL";
     this.VendorBitsCTRL.Size     = new System.Drawing.Size(80, 20);
     this.VendorBitsCTRL.TabIndex = 29;
     //
     // QualityBitsLB
     //
     this.QualityBitsLB.Location  = new System.Drawing.Point(0, 72);
     this.QualityBitsLB.Name      = "QualityBitsLB";
     this.QualityBitsLB.TabIndex  = 28;
     this.QualityBitsLB.Text      = "Quality Bits";
     this.QualityBitsLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ValueSpecifiedCB
     //
     this.ValueSpecifiedCB.Anchor          = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.ValueSpecifiedCB.Checked         = true;
     this.ValueSpecifiedCB.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.ValueSpecifiedCB.Location        = new System.Drawing.Point(336, 48);
     this.ValueSpecifiedCB.Name            = "ValueSpecifiedCB";
     this.ValueSpecifiedCB.Size            = new System.Drawing.Size(16, 24);
     this.ValueSpecifiedCB.TabIndex        = 31;
     this.ValueSpecifiedCB.CheckedChanged += new System.EventHandler(this.Specified_CheckedChanged);
     //
     // QualityBitsCTRL
     //
     this.QualityBitsCTRL.Location = new System.Drawing.Point(104, 71);
     this.QualityBitsCTRL.Name     = "QualityBitsCTRL";
     this.QualityBitsCTRL.Size     = new System.Drawing.Size(152, 24);
     this.QualityBitsCTRL.TabIndex = 32;
     //
     // LimitBitsCTRL
     //
     this.LimitBitsCTRL.Location = new System.Drawing.Point(104, 95);
     this.LimitBitsCTRL.Name     = "LimitBitsCTRL";
     this.LimitBitsCTRL.Size     = new System.Drawing.Size(80, 24);
     this.LimitBitsCTRL.TabIndex = 34;
     //
     // LimitBitsLB
     //
     this.LimitBitsLB.Location  = new System.Drawing.Point(0, 96);
     this.LimitBitsLB.Name      = "LimitBitsLB";
     this.LimitBitsLB.TabIndex  = 33;
     this.LimitBitsLB.Text      = "Limit Bits";
     this.LimitBitsLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // VendorBitsLB
     //
     this.VendorBitsLB.Location  = new System.Drawing.Point(0, 120);
     this.VendorBitsLB.Name      = "VendorBitsLB";
     this.VendorBitsLB.TabIndex  = 35;
     this.VendorBitsLB.Text      = "Vendor Bits";
     this.VendorBitsLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ValueCTRL
     //
     this.ValueCTRL.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                              | System.Windows.Forms.AnchorStyles.Right);
     this.ValueCTRL.Location = new System.Drawing.Point(104, 49);
     this.ValueCTRL.Name     = "ValueCTRL";
     this.ValueCTRL.Size     = new System.Drawing.Size(224, 20);
     this.ValueCTRL.TabIndex = 36;
     //
     // TimestampCTRL
     //
     this.TimestampCTRL.CustomFormat = "yyyy/MM/dd HH:mm:ss";
     this.TimestampCTRL.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.TimestampCTRL.Location     = new System.Drawing.Point(104, 145);
     this.TimestampCTRL.Name         = "TimestampCTRL";
     this.TimestampCTRL.ShowUpDown   = true;
     this.TimestampCTRL.Size         = new System.Drawing.Size(136, 20);
     this.TimestampCTRL.TabIndex     = 37;
     //
     // ItemValueEditCtrl
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.TimestampCTRL,
         this.ValueCTRL,
         this.VendorBitsLB,
         this.LimitBitsCTRL,
         this.LimitBitsLB,
         this.QualityBitsCTRL,
         this.ValueSpecifiedCB,
         this.QualitySpecifiedCB,
         this.VendorBitsCTRL,
         this.QualityBitsLB,
         this.ItemPathTB,
         this.ItemPathLB,
         this.TimestampSpecifiedCB,
         this.ItemNameTB,
         this.ValueLB,
         this.TimestampLB,
         this.ItemNameLB
     });
     this.Name = "ItemValueEditCtrl";
     this.Size = new System.Drawing.Size(360, 168);
     ((System.ComponentModel.ISupportInitialize)(this.VendorBitsCTRL)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dgvDataSetoran = new System.Windows.Forms.DataGridView();
     this.label1 = new System.Windows.Forms.Label();
     this.dtpSearch = new System.Windows.Forms.DateTimePicker();
     this.cmbSorting = new System.Windows.Forms.ComboBox();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.btnEdit = new System.Windows.Forms.Button();
     this.btnCari = new System.Windows.Forms.Button();
     this.btnSetoranKolektif = new System.Windows.Forms.Button();
     this.btnEksport = new System.Windows.Forms.Button();
     this.btnSetoranTunai = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.dgvDataSetoran)).BeginInit();
     this.SuspendLayout();
     //
     // dgvDataSetoran
     //
     this.dgvDataSetoran.AllowUserToAddRows = false;
     this.dgvDataSetoran.AllowUserToDeleteRows = false;
     this.dgvDataSetoran.AllowUserToResizeColumns = false;
     this.dgvDataSetoran.AllowUserToResizeRows = false;
     this.dgvDataSetoran.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvDataSetoran.BackgroundColor = System.Drawing.Color.White;
     this.dgvDataSetoran.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvDataSetoran.Location = new System.Drawing.Point(28, 62);
     this.dgvDataSetoran.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.dgvDataSetoran.Name = "dgvDataSetoran";
     this.dgvDataSetoran.ReadOnly = true;
     this.dgvDataSetoran.RowHeadersVisible = false;
     this.dgvDataSetoran.Size = new System.Drawing.Size(1031, 487);
     this.dgvDataSetoran.TabIndex = 42;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Dock = System.Windows.Forms.DockStyle.Top;
     this.label1.Font = new System.Drawing.Font("Trebuchet MS", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name = "label1";
     this.label1.Padding = new System.Windows.Forms.Padding(20, 15, 0, 0);
     this.label1.Size = new System.Drawing.Size(116, 44);
     this.label1.TabIndex = 41;
     this.label1.Text = "Setoran";
     //
     // dtpSearch
     //
     this.dtpSearch.CustomFormat = "yyyy-MM-dd";
     this.dtpSearch.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpSearch.Location = new System.Drawing.Point(168, 586);
     this.dtpSearch.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.dtpSearch.Name = "dtpSearch";
     this.dtpSearch.Size = new System.Drawing.Size(204, 20);
     this.dtpSearch.TabIndex = 98;
     this.dtpSearch.Visible = false;
     //
     // cmbSorting
     //
     this.cmbSorting.FormattingEnabled = true;
     this.cmbSorting.Items.AddRange(new object[] {
     "Tampilkan Seluruh Data",
     "ID Nasabah",
     "ID Simpanan",
     "ID Kolektor",
     "Tanggal"});
     this.cmbSorting.Location = new System.Drawing.Point(27, 557);
     this.cmbSorting.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmbSorting.Name = "cmbSorting";
     this.cmbSorting.Size = new System.Drawing.Size(135, 24);
     this.cmbSorting.TabIndex = 96;
     this.cmbSorting.Text = "Pencarian Berdasarkan";
     this.cmbSorting.SelectedIndexChanged += new System.EventHandler(this.cmbSorting_SelectedIndexChanged);
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(168, 558);
     this.txtSearch.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(204, 20);
     this.txtSearch.TabIndex = 95;
     this.txtSearch.Text = "Cari...";
     //
     // btnEdit
     //
     this.btnEdit.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnEdit.Image = global::Koperasi.Properties.Resources.edit_icon;
     this.btnEdit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnEdit.Location = new System.Drawing.Point(1065, 140);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(123, 32);
     this.btnEdit.TabIndex = 99;
     this.btnEdit.Text = "edit";
     this.btnEdit.UseVisualStyleBackColor = false;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnCari
     //
     this.btnCari.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.btnCari.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnCari.Image = global::Koperasi.Properties.Resources.search_icon;
     this.btnCari.Location = new System.Drawing.Point(378, 558);
     this.btnCari.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnCari.Name = "btnCari";
     this.btnCari.Size = new System.Drawing.Size(80, 26);
     this.btnCari.TabIndex = 97;
     this.btnCari.Text = "cari";
     this.btnCari.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCari.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnCari.UseVisualStyleBackColor = false;
     this.btnCari.Click += new System.EventHandler(this.btnCari_Click);
     //
     // btnSetoranKolektif
     //
     this.btnSetoranKolektif.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.btnSetoranKolektif.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSetoranKolektif.Image = global::Koperasi.Properties.Resources.add_1_icon;
     this.btnSetoranKolektif.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnSetoranKolektif.Location = new System.Drawing.Point(1065, 101);
     this.btnSetoranKolektif.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnSetoranKolektif.Name = "btnSetoranKolektif";
     this.btnSetoranKolektif.Size = new System.Drawing.Size(123, 32);
     this.btnSetoranKolektif.TabIndex = 48;
     this.btnSetoranKolektif.Text = "setoran kolektif";
     this.btnSetoranKolektif.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnSetoranKolektif.UseVisualStyleBackColor = false;
     this.btnSetoranKolektif.Click += new System.EventHandler(this.btnSetoranKolektif_Click);
     //
     // btnEksport
     //
     this.btnEksport.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.btnEksport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnEksport.Image = global::Koperasi.Properties.Resources.export_icon;
     this.btnEksport.Location = new System.Drawing.Point(1065, 179);
     this.btnEksport.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnEksport.Name = "btnEksport";
     this.btnEksport.Size = new System.Drawing.Size(123, 32);
     this.btnEksport.TabIndex = 44;
     this.btnEksport.Text = "eksport";
     this.btnEksport.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnEksport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnEksport.UseVisualStyleBackColor = false;
     //
     // btnSetoranTunai
     //
     this.btnSetoranTunai.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.btnSetoranTunai.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSetoranTunai.Image = global::Koperasi.Properties.Resources.add_1_icon;
     this.btnSetoranTunai.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnSetoranTunai.Location = new System.Drawing.Point(1065, 61);
     this.btnSetoranTunai.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnSetoranTunai.Name = "btnSetoranTunai";
     this.btnSetoranTunai.Size = new System.Drawing.Size(123, 32);
     this.btnSetoranTunai.TabIndex = 43;
     this.btnSetoranTunai.Text = "setoran tunai";
     this.btnSetoranTunai.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnSetoranTunai.UseVisualStyleBackColor = false;
     this.btnSetoranTunai.Click += new System.EventHandler(this.btnSetoranTunai_Click);
     //
     // SetoranSimpanan
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1200, 615);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.dtpSearch);
     this.Controls.Add(this.btnCari);
     this.Controls.Add(this.cmbSorting);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.btnSetoranKolektif);
     this.Controls.Add(this.btnEksport);
     this.Controls.Add(this.btnSetoranTunai);
     this.Controls.Add(this.dgvDataSetoran);
     this.Controls.Add(this.label1);
     this.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "SetoranSimpanan";
     this.Text = "Setoran Simpanan";
     this.Load += new System.EventHandler(this.SetoranSimpanan_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvDataSetoran)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RecordForm));
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtEmail = new System.Windows.Forms.TextBox();
     this.txtSurname = new System.Windows.Forms.TextBox();
     this.txtFirstName = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cmbCountry = new System.Windows.Forms.ComboBox();
     this.txtZip = new System.Windows.Forms.TextBox();
     this.txtState = new System.Windows.Forms.TextBox();
     this.txtCity = new System.Windows.Forms.TextBox();
     this.txtStreet = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.cmbRenewed = new System.Windows.Forms.ComboBox();
     this.cmbProductName = new System.Windows.Forms.ComboBox();
     this.txtDomains = new System.Windows.Forms.TextBox();
     this.dtExpiry = new System.Windows.Forms.DateTimePicker();
     this.dtPayment = new System.Windows.Forms.DateTimePicker();
     this.txtPrice = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtEmail);
     this.groupBox1.Controls.Add(this.txtSurname);
     this.groupBox1.Controls.Add(this.txtFirstName);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(17, 16);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
     this.groupBox1.Size = new System.Drawing.Size(596, 428);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Customer Details";
     //
     // txtEmail
     //
     this.txtEmail.Location = new System.Drawing.Point(164, 118);
     this.txtEmail.Margin = new System.Windows.Forms.Padding(4);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(381, 31);
     this.txtEmail.TabIndex = 3;
     //
     // txtSurname
     //
     this.txtSurname.Location = new System.Drawing.Point(164, 78);
     this.txtSurname.Margin = new System.Windows.Forms.Padding(4);
     this.txtSurname.Name = "txtSurname";
     this.txtSurname.Size = new System.Drawing.Size(381, 31);
     this.txtSurname.TabIndex = 2;
     //
     // txtFirstName
     //
     this.txtFirstName.Location = new System.Drawing.Point(164, 38);
     this.txtFirstName.Margin = new System.Windows.Forms.Padding(4);
     this.txtFirstName.Name = "txtFirstName";
     this.txtFirstName.Size = new System.Drawing.Size(381, 31);
     this.txtFirstName.TabIndex = 1;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cmbCountry);
     this.groupBox2.Controls.Add(this.txtZip);
     this.groupBox2.Controls.Add(this.txtState);
     this.groupBox2.Controls.Add(this.txtCity);
     this.groupBox2.Controls.Add(this.txtStreet);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Location = new System.Drawing.Point(17, 161);
     this.groupBox2.Margin = new System.Windows.Forms.Padding(4);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Padding = new System.Windows.Forms.Padding(4);
     this.groupBox2.Size = new System.Drawing.Size(560, 249);
     this.groupBox2.TabIndex = 3;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Address";
     //
     // cmbCountry
     //
     this.cmbCountry.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbCountry.FormattingEnabled = true;
     this.cmbCountry.Location = new System.Drawing.Point(147, 199);
     this.cmbCountry.Margin = new System.Windows.Forms.Padding(4);
     this.cmbCountry.Name = "cmbCountry";
     this.cmbCountry.Size = new System.Drawing.Size(381, 31);
     this.cmbCountry.TabIndex = 11;
     //
     // txtZip
     //
     this.txtZip.Location = new System.Drawing.Point(147, 159);
     this.txtZip.Margin = new System.Windows.Forms.Padding(4);
     this.txtZip.Name = "txtZip";
     this.txtZip.Size = new System.Drawing.Size(381, 31);
     this.txtZip.TabIndex = 7;
     //
     // txtState
     //
     this.txtState.Location = new System.Drawing.Point(147, 119);
     this.txtState.Margin = new System.Windows.Forms.Padding(4);
     this.txtState.Name = "txtState";
     this.txtState.Size = new System.Drawing.Size(381, 31);
     this.txtState.TabIndex = 6;
     //
     // txtCity
     //
     this.txtCity.Location = new System.Drawing.Point(147, 80);
     this.txtCity.Margin = new System.Windows.Forms.Padding(4);
     this.txtCity.Name = "txtCity";
     this.txtCity.Size = new System.Drawing.Size(381, 31);
     this.txtCity.TabIndex = 5;
     //
     // txtStreet
     //
     this.txtStreet.Location = new System.Drawing.Point(147, 39);
     this.txtStreet.Margin = new System.Windows.Forms.Padding(4);
     this.txtStreet.Name = "txtStreet";
     this.txtStreet.Size = new System.Drawing.Size(381, 31);
     this.txtStreet.TabIndex = 4;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(23, 203);
     this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(84, 23);
     this.label8.TabIndex = 6;
     this.label8.Text = "Country:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(23, 164);
     this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(43, 23);
     this.label7.TabIndex = 5;
     this.label7.Text = "Zip:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(23, 126);
     this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(59, 23);
     this.label6.TabIndex = 4;
     this.label6.Text = "State:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(23, 85);
     this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(49, 23);
     this.label5.TabIndex = 3;
     this.label5.Text = "City:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(23, 46);
     this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(67, 23);
     this.label4.TabIndex = 2;
     this.label4.Text = "Street:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(23, 124);
     this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(65, 23);
     this.label3.TabIndex = 2;
     this.label3.Text = "Email:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(23, 84);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(92, 23);
     this.label2.TabIndex = 1;
     this.label2.Text = "Surname:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(23, 41);
     this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(111, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "First Name:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.cmbRenewed);
     this.groupBox3.Controls.Add(this.cmbProductName);
     this.groupBox3.Controls.Add(this.txtDomains);
     this.groupBox3.Controls.Add(this.dtExpiry);
     this.groupBox3.Controls.Add(this.dtPayment);
     this.groupBox3.Controls.Add(this.txtPrice);
     this.groupBox3.Controls.Add(this.label14);
     this.groupBox3.Controls.Add(this.label13);
     this.groupBox3.Controls.Add(this.label12);
     this.groupBox3.Controls.Add(this.label11);
     this.groupBox3.Controls.Add(this.label10);
     this.groupBox3.Controls.Add(this.label9);
     this.groupBox3.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox3.Location = new System.Drawing.Point(625, 16);
     this.groupBox3.Margin = new System.Windows.Forms.Padding(4);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Padding = new System.Windows.Forms.Padding(4);
     this.groupBox3.Size = new System.Drawing.Size(596, 428);
     this.groupBox3.TabIndex = 1;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Product Details";
     //
     // cmbRenewed
     //
     this.cmbRenewed.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbRenewed.FormattingEnabled = true;
     this.cmbRenewed.Location = new System.Drawing.Point(177, 218);
     this.cmbRenewed.Margin = new System.Windows.Forms.Padding(4);
     this.cmbRenewed.Name = "cmbRenewed";
     this.cmbRenewed.Size = new System.Drawing.Size(381, 31);
     this.cmbRenewed.TabIndex = 15;
     //
     // cmbProductName
     //
     this.cmbProductName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbProductName.FormattingEnabled = true;
     this.cmbProductName.Location = new System.Drawing.Point(177, 37);
     this.cmbProductName.Margin = new System.Windows.Forms.Padding(4);
     this.cmbProductName.Name = "cmbProductName";
     this.cmbProductName.Size = new System.Drawing.Size(381, 31);
     this.cmbProductName.TabIndex = 14;
     this.cmbProductName.SelectedIndexChanged += new System.EventHandler(this.cmbProductName_SelectedIndexChanged);
     //
     // txtDomains
     //
     this.txtDomains.Location = new System.Drawing.Point(177, 265);
     this.txtDomains.Margin = new System.Windows.Forms.Padding(4);
     this.txtDomains.Multiline = true;
     this.txtDomains.Name = "txtDomains";
     this.txtDomains.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtDomains.Size = new System.Drawing.Size(381, 128);
     this.txtDomains.TabIndex = 13;
     //
     // dtExpiry
     //
     this.dtExpiry.Location = new System.Drawing.Point(177, 169);
     this.dtExpiry.Margin = new System.Windows.Forms.Padding(4);
     this.dtExpiry.Name = "dtExpiry";
     this.dtExpiry.Size = new System.Drawing.Size(381, 31);
     this.dtExpiry.TabIndex = 12;
     //
     // dtPayment
     //
     this.dtPayment.Location = new System.Drawing.Point(177, 127);
     this.dtPayment.Margin = new System.Windows.Forms.Padding(4);
     this.dtPayment.Name = "dtPayment";
     this.dtPayment.Size = new System.Drawing.Size(381, 31);
     this.dtPayment.TabIndex = 11;
     this.dtPayment.ValueChanged += new System.EventHandler(this.dtPayment_ValueChanged);
     //
     // txtPrice
     //
     this.txtPrice.Location = new System.Drawing.Point(177, 81);
     this.txtPrice.Margin = new System.Windows.Forms.Padding(4);
     this.txtPrice.Name = "txtPrice";
     this.txtPrice.Size = new System.Drawing.Size(381, 31);
     this.txtPrice.TabIndex = 9;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(23, 219);
     this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(94, 23);
     this.label14.TabIndex = 7;
     this.label14.Text = "Renewed:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(23, 265);
     this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(92, 23);
     this.label13.TabIndex = 6;
     this.label13.Text = "Domains:";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(23, 175);
     this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(116, 23);
     this.label12.TabIndex = 5;
     this.label12.Text = "Expiry Date:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(23, 133);
     this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(135, 23);
     this.label11.TabIndex = 4;
     this.label11.Text = "Payment Date:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(23, 86);
     this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(59, 23);
     this.label10.TabIndex = 3;
     this.label10.Text = "Price:";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Cambria", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(23, 41);
     this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(66, 23);
     this.label9.TabIndex = 2;
     this.label9.Text = "Name:";
     //
     // btnCancel
     //
     this.btnCancel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Font = new System.Drawing.Font("Cambria", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancel.Image = global::Project.Properties.Resources.b_cancel;
     this.btnCancel.Location = new System.Drawing.Point(680, 468);
     this.btnCancel.Margin = new System.Windows.Forms.Padding(4);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(148, 59);
     this.btnCancel.TabIndex = 3;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnAdd.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnAdd.Font = new System.Drawing.Font("Cambria", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAdd.Image = global::Project.Properties.Resources.b_ok;
     this.btnAdd.Location = new System.Drawing.Point(427, 468);
     this.btnAdd.Margin = new System.Windows.Forms.Padding(4);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(139, 59);
     this.btnAdd.TabIndex = 2;
     this.btnAdd.Text = "OK";
     this.btnAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // RecordForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1236, 545);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.MaximumSize = new System.Drawing.Size(1327, 1220);
     this.Name = "RecordForm";
     this.Text = "Sale Details";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RecordForm_FormClosing);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
 }
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxStudentId = new System.Windows.Forms.TextBox();
			uxStudentIdLabel = new System.Windows.Forms.Label();
			this.uxEpassId = new System.Windows.Forms.TextBox();
			uxEpassIdLabel = new System.Windows.Forms.Label();
			this.uxStudentUpn = new System.Windows.Forms.TextBox();
			uxStudentUpnLabel = new System.Windows.Forms.Label();
			this.uxSsabsaId = new System.Windows.Forms.TextBox();
			uxSsabsaIdLabel = new System.Windows.Forms.Label();
			this.uxSurname = new System.Windows.Forms.TextBox();
			uxSurnameLabel = new System.Windows.Forms.Label();
			this.uxFirstName = new System.Windows.Forms.TextBox();
			uxFirstNameLabel = new System.Windows.Forms.Label();
			this.uxOtherNames = new System.Windows.Forms.TextBox();
			uxOtherNamesLabel = new System.Windows.Forms.Label();
			this.uxKnownName = new System.Windows.Forms.TextBox();
			uxKnownNameLabel = new System.Windows.Forms.Label();
			this.uxLegalName = new System.Windows.Forms.TextBox();
			uxLegalNameLabel = new System.Windows.Forms.Label();
			this.uxDob = new System.Windows.Forms.DateTimePicker();
			uxDobLabel = new System.Windows.Forms.Label();
			this.uxGender = new System.Windows.Forms.TextBox();
			uxGenderLabel = new System.Windows.Forms.Label();
			this.uxIndigeneousStatus = new System.Windows.Forms.TextBox();
			uxIndigeneousStatusLabel = new System.Windows.Forms.Label();
			this.uxLbote = new System.Windows.Forms.TextBox();
			uxLboteLabel = new System.Windows.Forms.Label();
			this.uxEslPhase = new System.Windows.Forms.TextBox();
			uxEslPhaseLabel = new System.Windows.Forms.Label();
			this.uxTribalGroup = new System.Windows.Forms.TextBox();
			uxTribalGroupLabel = new System.Windows.Forms.Label();
			this.uxSlpCreatedFlag = new System.Windows.Forms.TextBox();
			uxSlpCreatedFlagLabel = new System.Windows.Forms.Label();
			this.uxAddressLine1 = new System.Windows.Forms.TextBox();
			uxAddressLine1Label = new System.Windows.Forms.Label();
			this.uxAddressLine2 = new System.Windows.Forms.TextBox();
			uxAddressLine2Label = new System.Windows.Forms.Label();
			this.uxAddressLine3 = new System.Windows.Forms.TextBox();
			uxAddressLine3Label = new System.Windows.Forms.Label();
			this.uxAddressLine4 = new System.Windows.Forms.TextBox();
			uxAddressLine4Label = new System.Windows.Forms.Label();
			this.uxSuburb = new System.Windows.Forms.TextBox();
			uxSuburbLabel = new System.Windows.Forms.Label();
			this.uxPostcode = new System.Windows.Forms.TextBox();
			uxPostcodeLabel = new System.Windows.Forms.Label();
			this.uxPhone1 = new System.Windows.Forms.TextBox();
			uxPhone1Label = new System.Windows.Forms.Label();
			this.uxPhone2 = new System.Windows.Forms.TextBox();
			uxPhone2Label = new System.Windows.Forms.Label();
			this.uxSourceSystem = new System.Windows.Forms.TextBox();
			uxSourceSystemLabel = new System.Windows.Forms.Label();
			this.uxPhoneticMatchId = new System.Windows.Forms.TextBox();
			uxPhoneticMatchIdLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxStudentIdLabel
			//
			this.uxStudentIdLabel.Name = "uxStudentIdLabel";
			this.uxStudentIdLabel.Text = "Student Id:";
			this.uxStudentIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxStudentIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentIdLabel);			
			//
			// uxStudentId
			//
			this.uxStudentId.Name = "uxStudentId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentId);
			this.uxStudentId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxStudentId);
			//
			// uxEpassIdLabel
			//
			this.uxEpassIdLabel.Name = "uxEpassIdLabel";
			this.uxEpassIdLabel.Text = "Epass Id:";
			this.uxEpassIdLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxEpassIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxEpassIdLabel);			
			//
			// uxEpassId
			//
			this.uxEpassId.Name = "uxEpassId";
			this.uxEpassId.Width = 250;
			this.uxEpassId.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxEpassId);
			this.uxEpassId.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxEpassId);
			//
			// uxStudentUpnLabel
			//
			this.uxStudentUpnLabel.Name = "uxStudentUpnLabel";
			this.uxStudentUpnLabel.Text = "Student Upn:";
			this.uxStudentUpnLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxStudentUpnLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentUpnLabel);			
			//
			// uxStudentUpn
			//
			this.uxStudentUpn.Name = "uxStudentUpn";
			this.uxStudentUpn.Width = 250;
			this.uxStudentUpn.MaxLength = 13;
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentUpn);
			this.uxStudentUpn.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxStudentUpn);
			//
			// uxSsabsaIdLabel
			//
			this.uxSsabsaIdLabel.Name = "uxSsabsaIdLabel";
			this.uxSsabsaIdLabel.Text = "Ssabsa Id:";
			this.uxSsabsaIdLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxSsabsaIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSsabsaIdLabel);			
			//
			// uxSsabsaId
			//
			this.uxSsabsaId.Name = "uxSsabsaId";
			this.uxSsabsaId.Width = 250;
			this.uxSsabsaId.MaxLength = 100;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSsabsaId);
			this.uxSsabsaId.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxSsabsaId);
			//
			// uxSurnameLabel
			//
			this.uxSurnameLabel.Name = "uxSurnameLabel";
			this.uxSurnameLabel.Text = "Surname:";
			this.uxSurnameLabel.Location = new System.Drawing.Point(3, 104);
			this.Controls.Add(this.uxSurnameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSurnameLabel);			
			//
			// uxSurname
			//
			this.uxSurname.Name = "uxSurname";
			this.uxSurname.Width = 250;
			this.uxSurname.MaxLength = 30;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSurname);
			this.uxSurname.Location = new System.Drawing.Point(160, 104);
			this.Controls.Add(this.uxSurname);
			//
			// uxFirstNameLabel
			//
			this.uxFirstNameLabel.Name = "uxFirstNameLabel";
			this.uxFirstNameLabel.Text = "First Name:";
			this.uxFirstNameLabel.Location = new System.Drawing.Point(3, 130);
			this.Controls.Add(this.uxFirstNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxFirstNameLabel);			
			//
			// uxFirstName
			//
			this.uxFirstName.Name = "uxFirstName";
			this.uxFirstName.Width = 250;
			this.uxFirstName.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxFirstName);
			this.uxFirstName.Location = new System.Drawing.Point(160, 130);
			this.Controls.Add(this.uxFirstName);
			//
			// uxOtherNamesLabel
			//
			this.uxOtherNamesLabel.Name = "uxOtherNamesLabel";
			this.uxOtherNamesLabel.Text = "Other Names:";
			this.uxOtherNamesLabel.Location = new System.Drawing.Point(3, 156);
			this.Controls.Add(this.uxOtherNamesLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxOtherNamesLabel);			
			//
			// uxOtherNames
			//
			this.uxOtherNames.Name = "uxOtherNames";
			this.uxOtherNames.Width = 250;
			this.uxOtherNames.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxOtherNames);
			this.uxOtherNames.Location = new System.Drawing.Point(160, 156);
			this.Controls.Add(this.uxOtherNames);
			//
			// uxKnownNameLabel
			//
			this.uxKnownNameLabel.Name = "uxKnownNameLabel";
			this.uxKnownNameLabel.Text = "Known Name:";
			this.uxKnownNameLabel.Location = new System.Drawing.Point(3, 182);
			this.Controls.Add(this.uxKnownNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxKnownNameLabel);			
			//
			// uxKnownName
			//
			this.uxKnownName.Name = "uxKnownName";
			this.uxKnownName.Width = 250;
			this.uxKnownName.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxKnownName);
			this.uxKnownName.Location = new System.Drawing.Point(160, 182);
			this.Controls.Add(this.uxKnownName);
			//
			// uxLegalNameLabel
			//
			this.uxLegalNameLabel.Name = "uxLegalNameLabel";
			this.uxLegalNameLabel.Text = "Legal Name:";
			this.uxLegalNameLabel.Location = new System.Drawing.Point(3, 208);
			this.Controls.Add(this.uxLegalNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLegalNameLabel);			
			//
			// uxLegalName
			//
			this.uxLegalName.Name = "uxLegalName";
			this.uxLegalName.Width = 250;
			this.uxLegalName.MaxLength = 30;
			//this.uxTableLayoutPanel.Controls.Add(this.uxLegalName);
			this.uxLegalName.Location = new System.Drawing.Point(160, 208);
			this.Controls.Add(this.uxLegalName);
			//
			// uxDobLabel
			//
			this.uxDobLabel.Name = "uxDobLabel";
			this.uxDobLabel.Text = "Dob:";
			this.uxDobLabel.Location = new System.Drawing.Point(3, 234);
			this.Controls.Add(this.uxDobLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxDobLabel);			
			//
			// uxDob
			//
			this.uxDob.Name = "uxDob";
			//this.uxTableLayoutPanel.Controls.Add(this.uxDob);
			this.uxDob.Location = new System.Drawing.Point(160, 234);
			this.Controls.Add(this.uxDob);
			//
			// uxGenderLabel
			//
			this.uxGenderLabel.Name = "uxGenderLabel";
			this.uxGenderLabel.Text = "Gender:";
			this.uxGenderLabel.Location = new System.Drawing.Point(3, 260);
			this.Controls.Add(this.uxGenderLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxGenderLabel);			
			//
			// uxGender
			//
			this.uxGender.Name = "uxGender";
			this.uxGender.Width = 250;
			this.uxGender.MaxLength = 6;
			//this.uxTableLayoutPanel.Controls.Add(this.uxGender);
			this.uxGender.Location = new System.Drawing.Point(160, 260);
			this.Controls.Add(this.uxGender);
			//
			// uxIndigeneousStatusLabel
			//
			this.uxIndigeneousStatusLabel.Name = "uxIndigeneousStatusLabel";
			this.uxIndigeneousStatusLabel.Text = "Indigeneous Status:";
			this.uxIndigeneousStatusLabel.Location = new System.Drawing.Point(3, 286);
			this.Controls.Add(this.uxIndigeneousStatusLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxIndigeneousStatusLabel);			
			//
			// uxIndigeneousStatus
			//
			this.uxIndigeneousStatus.Name = "uxIndigeneousStatus";
			this.uxIndigeneousStatus.Width = 250;
			this.uxIndigeneousStatus.MaxLength = 40;
			//this.uxTableLayoutPanel.Controls.Add(this.uxIndigeneousStatus);
			this.uxIndigeneousStatus.Location = new System.Drawing.Point(160, 286);
			this.Controls.Add(this.uxIndigeneousStatus);
			//
			// uxLboteLabel
			//
			this.uxLboteLabel.Name = "uxLboteLabel";
			this.uxLboteLabel.Text = "Lbote:";
			this.uxLboteLabel.Location = new System.Drawing.Point(3, 312);
			this.Controls.Add(this.uxLboteLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLboteLabel);			
			//
			// uxLbote
			//
			this.uxLbote.Name = "uxLbote";
			this.uxLbote.Width = 250;
			this.uxLbote.MaxLength = 3;
			//this.uxTableLayoutPanel.Controls.Add(this.uxLbote);
			this.uxLbote.Location = new System.Drawing.Point(160, 312);
			this.Controls.Add(this.uxLbote);
			//
			// uxEslPhaseLabel
			//
			this.uxEslPhaseLabel.Name = "uxEslPhaseLabel";
			this.uxEslPhaseLabel.Text = "Esl Phase:";
			this.uxEslPhaseLabel.Location = new System.Drawing.Point(3, 338);
			this.Controls.Add(this.uxEslPhaseLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxEslPhaseLabel);			
			//
			// uxEslPhase
			//
			this.uxEslPhase.Name = "uxEslPhase";
			this.uxEslPhase.Width = 250;
			this.uxEslPhase.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxEslPhase);
			this.uxEslPhase.Location = new System.Drawing.Point(160, 338);
			this.Controls.Add(this.uxEslPhase);
			//
			// uxTribalGroupLabel
			//
			this.uxTribalGroupLabel.Name = "uxTribalGroupLabel";
			this.uxTribalGroupLabel.Text = "Tribal Group:";
			this.uxTribalGroupLabel.Location = new System.Drawing.Point(3, 364);
			this.Controls.Add(this.uxTribalGroupLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxTribalGroupLabel);			
			//
			// uxTribalGroup
			//
			this.uxTribalGroup.Name = "uxTribalGroup";
			this.uxTribalGroup.Width = 250;
			this.uxTribalGroup.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxTribalGroup);
			this.uxTribalGroup.Location = new System.Drawing.Point(160, 364);
			this.Controls.Add(this.uxTribalGroup);
			//
			// uxSlpCreatedFlagLabel
			//
			this.uxSlpCreatedFlagLabel.Name = "uxSlpCreatedFlagLabel";
			this.uxSlpCreatedFlagLabel.Text = "Slp Created Flag:";
			this.uxSlpCreatedFlagLabel.Location = new System.Drawing.Point(3, 390);
			this.Controls.Add(this.uxSlpCreatedFlagLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSlpCreatedFlagLabel);			
			//
			// uxSlpCreatedFlag
			//
			this.uxSlpCreatedFlag.Name = "uxSlpCreatedFlag";
			this.uxSlpCreatedFlag.Width = 250;
			this.uxSlpCreatedFlag.MaxLength = 3;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSlpCreatedFlag);
			this.uxSlpCreatedFlag.Location = new System.Drawing.Point(160, 390);
			this.Controls.Add(this.uxSlpCreatedFlag);
			//
			// uxAddressLine1Label
			//
			this.uxAddressLine1Label.Name = "uxAddressLine1Label";
			this.uxAddressLine1Label.Text = "Address Line1:";
			this.uxAddressLine1Label.Location = new System.Drawing.Point(3, 416);
			this.Controls.Add(this.uxAddressLine1Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine1Label);			
			//
			// uxAddressLine1
			//
			this.uxAddressLine1.Name = "uxAddressLine1";
			this.uxAddressLine1.Width = 250;
			this.uxAddressLine1.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine1);
			this.uxAddressLine1.Location = new System.Drawing.Point(160, 416);
			this.Controls.Add(this.uxAddressLine1);
			//
			// uxAddressLine2Label
			//
			this.uxAddressLine2Label.Name = "uxAddressLine2Label";
			this.uxAddressLine2Label.Text = "Address Line2:";
			this.uxAddressLine2Label.Location = new System.Drawing.Point(3, 442);
			this.Controls.Add(this.uxAddressLine2Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine2Label);			
			//
			// uxAddressLine2
			//
			this.uxAddressLine2.Name = "uxAddressLine2";
			this.uxAddressLine2.Width = 250;
			this.uxAddressLine2.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine2);
			this.uxAddressLine2.Location = new System.Drawing.Point(160, 442);
			this.Controls.Add(this.uxAddressLine2);
			//
			// uxAddressLine3Label
			//
			this.uxAddressLine3Label.Name = "uxAddressLine3Label";
			this.uxAddressLine3Label.Text = "Address Line3:";
			this.uxAddressLine3Label.Location = new System.Drawing.Point(3, 468);
			this.Controls.Add(this.uxAddressLine3Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine3Label);			
			//
			// uxAddressLine3
			//
			this.uxAddressLine3.Name = "uxAddressLine3";
			this.uxAddressLine3.Width = 250;
			this.uxAddressLine3.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine3);
			this.uxAddressLine3.Location = new System.Drawing.Point(160, 468);
			this.Controls.Add(this.uxAddressLine3);
			//
			// uxAddressLine4Label
			//
			this.uxAddressLine4Label.Name = "uxAddressLine4Label";
			this.uxAddressLine4Label.Text = "Address Line4:";
			this.uxAddressLine4Label.Location = new System.Drawing.Point(3, 494);
			this.Controls.Add(this.uxAddressLine4Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine4Label);			
			//
			// uxAddressLine4
			//
			this.uxAddressLine4.Name = "uxAddressLine4";
			this.uxAddressLine4.Width = 250;
			this.uxAddressLine4.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine4);
			this.uxAddressLine4.Location = new System.Drawing.Point(160, 494);
			this.Controls.Add(this.uxAddressLine4);
			//
			// uxSuburbLabel
			//
			this.uxSuburbLabel.Name = "uxSuburbLabel";
			this.uxSuburbLabel.Text = "Suburb:";
			this.uxSuburbLabel.Location = new System.Drawing.Point(3, 520);
			this.Controls.Add(this.uxSuburbLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSuburbLabel);			
			//
			// uxSuburb
			//
			this.uxSuburb.Name = "uxSuburb";
			this.uxSuburb.Width = 250;
			this.uxSuburb.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSuburb);
			this.uxSuburb.Location = new System.Drawing.Point(160, 520);
			this.Controls.Add(this.uxSuburb);
			//
			// uxPostcodeLabel
			//
			this.uxPostcodeLabel.Name = "uxPostcodeLabel";
			this.uxPostcodeLabel.Text = "Postcode:";
			this.uxPostcodeLabel.Location = new System.Drawing.Point(3, 546);
			this.Controls.Add(this.uxPostcodeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPostcodeLabel);			
			//
			// uxPostcode
			//
			this.uxPostcode.Name = "uxPostcode";
			this.uxPostcode.Width = 250;
			this.uxPostcode.MaxLength = 4;
			//this.uxTableLayoutPanel.Controls.Add(this.uxPostcode);
			this.uxPostcode.Location = new System.Drawing.Point(160, 546);
			this.Controls.Add(this.uxPostcode);
			//
			// uxPhone1Label
			//
			this.uxPhone1Label.Name = "uxPhone1Label";
			this.uxPhone1Label.Text = "Phone1:";
			this.uxPhone1Label.Location = new System.Drawing.Point(3, 572);
			this.Controls.Add(this.uxPhone1Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone1Label);			
			//
			// uxPhone1
			//
			this.uxPhone1.Name = "uxPhone1";
			this.uxPhone1.Width = 250;
			this.uxPhone1.MaxLength = 10;
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone1);
			this.uxPhone1.Location = new System.Drawing.Point(160, 572);
			this.Controls.Add(this.uxPhone1);
			//
			// uxPhone2Label
			//
			this.uxPhone2Label.Name = "uxPhone2Label";
			this.uxPhone2Label.Text = "Phone2:";
			this.uxPhone2Label.Location = new System.Drawing.Point(3, 598);
			this.Controls.Add(this.uxPhone2Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone2Label);			
			//
			// uxPhone2
			//
			this.uxPhone2.Name = "uxPhone2";
			this.uxPhone2.Width = 250;
			this.uxPhone2.MaxLength = 10;
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone2);
			this.uxPhone2.Location = new System.Drawing.Point(160, 598);
			this.Controls.Add(this.uxPhone2);
			//
			// uxSourceSystemLabel
			//
			this.uxSourceSystemLabel.Name = "uxSourceSystemLabel";
			this.uxSourceSystemLabel.Text = "Source System:";
			this.uxSourceSystemLabel.Location = new System.Drawing.Point(3, 624);
			this.Controls.Add(this.uxSourceSystemLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSourceSystemLabel);			
			//
			// uxSourceSystem
			//
			this.uxSourceSystem.Name = "uxSourceSystem";
			this.uxSourceSystem.Width = 250;
			this.uxSourceSystem.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSourceSystem);
			this.uxSourceSystem.Location = new System.Drawing.Point(160, 624);
			this.Controls.Add(this.uxSourceSystem);
			//
			// uxPhoneticMatchIdLabel
			//
			this.uxPhoneticMatchIdLabel.Name = "uxPhoneticMatchIdLabel";
			this.uxPhoneticMatchIdLabel.Text = "Phonetic Match Id:";
			this.uxPhoneticMatchIdLabel.Location = new System.Drawing.Point(3, 650);
			this.Controls.Add(this.uxPhoneticMatchIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhoneticMatchIdLabel);			
			//
			// uxPhoneticMatchId
			//
			this.uxPhoneticMatchId.Name = "uxPhoneticMatchId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhoneticMatchId);
			this.uxPhoneticMatchId.Location = new System.Drawing.Point(160, 650);
			this.Controls.Add(this.uxPhoneticMatchId);
			// 
			// StudentMasterIndexEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "StudentMasterIndexEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.findComboBox = new System.Windows.Forms.ComboBox();
     this.maskedEdit = new System.Windows.Forms.MaskedTextBox();
     this.checkBox = new System.Windows.Forms.CheckBox();
     this.comboBox = new System.Windows.Forms.ComboBox();
     this.dateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.multiColumnComboBox = new ExactTarget.Controls.ComboBox.MultiColumnComboBox();
     this.textBox = new ExactTarget.Controls.TextBox.CustomTextBox();
     this.comboBoxGrid = new ExactTarget.Controls.ComboBox.ComboBoxGrid();
     this.customDataGridView = new ExactTarget.Controls.DataGridView.CustomDataGridView();
     this.comboSimple = new System.Windows.Forms.ComboBox();
     this.comboForm = new ExactTarget.Controls.ComboBox.ComboBoxForm(this.components);
     this.boton = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.customDataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // findComboBox
     //
     this.findComboBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.findComboBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.findComboBox.FormattingEnabled = true;
     this.findComboBox.Location = new System.Drawing.Point(149, 48);
     this.findComboBox.Name = "findComboBox";
     this.findComboBox.Size = new System.Drawing.Size(106, 21);
     this.findComboBox.TabIndex = 4;
     this.findComboBox.Visible = false;
     this.findComboBox.SelectedIndexChanged += new System.EventHandler(this.OnComboBoxSelectedIndexChanged);
     this.findComboBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // maskedEdit
     //
     this.maskedEdit.Location = new System.Drawing.Point(149, 22);
     this.maskedEdit.Name = "maskedEdit";
     this.maskedEdit.Size = new System.Drawing.Size(106, 20);
     this.maskedEdit.TabIndex = 2;
     this.maskedEdit.Visible = false;
     this.maskedEdit.TextChanged += new System.EventHandler(this.OnControlTextChange);
     this.maskedEdit.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // checkBox
     //
     this.checkBox.BackColor = System.Drawing.SystemColors.Window;
     this.checkBox.CheckAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.checkBox.Location = new System.Drawing.Point(149, 102);
     this.checkBox.Name = "checkBox";
     this.checkBox.Size = new System.Drawing.Size(106, 20);
     this.checkBox.TabIndex = 8;
     this.checkBox.UseVisualStyleBackColor = false;
     this.checkBox.Visible = false;
     this.checkBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // comboBox
     //
     this.comboBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox.FormattingEnabled = true;
     this.comboBox.Location = new System.Drawing.Point(38, 48);
     this.comboBox.Name = "comboBox";
     this.comboBox.Size = new System.Drawing.Size(105, 21);
     this.comboBox.TabIndex = 3;
     this.comboBox.Visible = false;
     this.comboBox.SelectedIndexChanged += new System.EventHandler(this.OnComboBoxSelectedIndexChanged);
     this.comboBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // dateTimePicker
     //
     this.dateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker.Location = new System.Drawing.Point(150, 75);
     this.dateTimePicker.Name = "dateTimePicker";
     this.dateTimePicker.Size = new System.Drawing.Size(105, 20);
     this.dateTimePicker.TabIndex = 6;
     this.dateTimePicker.Visible = false;
     this.dateTimePicker.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // multiColumnComboBox
     //
     this.multiColumnComboBox.BackColorEnter = System.Drawing.SystemColors.Window;
     this.multiColumnComboBox.BackColorLeave = System.Drawing.SystemColors.Window;
     this.multiColumnComboBox.ComboBoxHeight = 16;
     this.multiColumnComboBox.DropDownHeight = 98;
     this.multiColumnComboBox.DropDownWidth = 121;
     this.multiColumnComboBox.FontEnter = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.multiColumnComboBox.FontLeave = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.multiColumnComboBox.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.multiColumnComboBox.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.multiColumnComboBox.FormattingEnabled = true;
     this.multiColumnComboBox.Location = new System.Drawing.Point(38, 75);
     this.multiColumnComboBox.Name = "multiColumnComboBox";
     this.multiColumnComboBox.Size = new System.Drawing.Size(106, 22);
     this.multiColumnComboBox.TabIndex = 5;
     this.multiColumnComboBox.Visible = false;
     this.multiColumnComboBox.SelectionChangeCommitted += new System.EventHandler(this.OnComboBoxSelectedIndexChanged);
     this.multiColumnComboBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // textBox
     //
     this.textBox.BackColorEnter = System.Drawing.SystemColors.Window;
     this.textBox.BackColorLeave = System.Drawing.SystemColors.Window;
     this.textBox.DataType = ExactTarget.Controls.Types.DataType.Alfanumerico;
     this.textBox.FontStyleEnter = System.Drawing.FontStyle.Bold;
     this.textBox.FontStyleLeave = System.Drawing.FontStyle.Regular;
     this.textBox.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.textBox.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.textBox.IsMayusculas = false;
     this.textBox.Location = new System.Drawing.Point(38, 22);
     this.textBox.MaxValue = 0;
     this.textBox.Name = "textBox";
     this.textBox.NumberDecimals = 4;
     this.textBox.Size = new System.Drawing.Size(106, 20);
     this.textBox.TabIndex = 1;
     this.textBox.Visible = false;
     this.textBox.TextChanged += new System.EventHandler(this.OnControlTextChange);
     this.textBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // comboBoxGrid
     //
     this.comboBoxGrid.AllowResizeDropDown = true;
     this.comboBoxGrid.BackColorEnter = System.Drawing.SystemColors.Window;
     this.comboBoxGrid.BackColorLeave = System.Drawing.SystemColors.Window;
     this.comboBoxGrid.ControlSize = new System.Drawing.Size(240, 150);
     this.comboBoxGrid.DropDownSizeMode = ExactTarget.Controls.ComboBox.SimpleComboBox.SizeMode.UseControlSize;
     this.comboBoxGrid.DropSize = new System.Drawing.Size(200, 106);
     this.comboBoxGrid.FontEnter = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxGrid.FontLeave = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxGrid.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.comboBoxGrid.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.comboBoxGrid.Location = new System.Drawing.Point(38, 102);
     this.comboBoxGrid.Name = "comboBoxGrid";
     this.comboBoxGrid.Size = new System.Drawing.Size(106, 21);
     this.comboBoxGrid.TabIndex = 7;
     this.comboBoxGrid.ValueReturned = null;
     this.comboBoxGrid.Visible = false;
     this.comboBoxGrid.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // customDataGridView
     //
     this.customDataGridView.AddNewRow = false;
     this.customDataGridView.AllowUserToAddRows = false;
     this.customDataGridView.AllowUserToDeleteRows = false;
     this.customDataGridView.BackgroundColor = System.Drawing.SystemColors.Window;
     this.customDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.customDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.customDataGridView.Location = new System.Drawing.Point(0, 0);
     this.customDataGridView.Mode = ExactTarget.Controls.Types.Mode.ReadOnly;
     this.customDataGridView.Name = "customDataGridView";
     this.customDataGridView.ReadOnly = true;
     this.customDataGridView.RowHeadersWidth = 20;
     this.customDataGridView.RowTemplate.Height = 24;
     this.customDataGridView.Size = new System.Drawing.Size(431, 150);
     this.customDataGridView.TabIndex = 0;
     this.customDataGridView.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.CustomDataGridViewCellEnter);
     this.customDataGridView.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.CustomDataGridViewCellLeave);
     this.customDataGridView.Scroll += new System.Windows.Forms.ScrollEventHandler(this.CustomDataGridViewScroll);
     this.customDataGridView.Paint += new System.Windows.Forms.PaintEventHandler(this.CustomDataGridViewPaint);
     this.customDataGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CustomDataGridViewKeyDown);
     //
     // comboSimple
     //
     this.comboSimple.FormattingEnabled = true;
     this.comboSimple.Location = new System.Drawing.Point(273, 49);
     this.comboSimple.Name = "comboSimple";
     this.comboSimple.Size = new System.Drawing.Size(121, 21);
     this.comboSimple.TabIndex = 10;
     this.comboSimple.Visible = false;
     this.comboSimple.SelectedIndexChanged += new System.EventHandler(this.OnComboBoxSelectedIndexChanged);
     this.comboSimple.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // comboForm
     //
     this.comboForm.BackColorEnter = System.Drawing.SystemColors.Window;
     this.comboForm.BackColorLeave = System.Drawing.SystemColors.Window;
     this.comboForm.Data = null;
     this.comboForm.DropDownForm = null;
     this.comboForm.DropDownHeight = 1;
     this.comboForm.FontEnter = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboForm.FontLeave = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboForm.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.comboForm.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.comboForm.FormattingEnabled = true;
     this.comboForm.IntegralHeight = false;
     this.comboForm.Location = new System.Drawing.Point(273, 75);
     this.comboForm.Name = "comboForm";
     this.comboForm.Size = new System.Drawing.Size(121, 21);
     this.comboForm.TabIndex = 11;
     this.comboForm.Visible = false;
     this.comboForm.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ControlKeyUp);
     //
     // boton
     //
     this.boton.Location = new System.Drawing.Point(273, 102);
     this.boton.Name = "boton";
     this.boton.Size = new System.Drawing.Size(121, 23);
     this.boton.TabIndex = 12;
     this.boton.UseVisualStyleBackColor = true;
     this.boton.Visible = false;
     //
     // DataGridViewUC
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.boton);
     this.Controls.Add(this.comboForm);
     this.Controls.Add(this.comboSimple);
     this.Controls.Add(this.comboBoxGrid);
     this.Controls.Add(this.multiColumnComboBox);
     this.Controls.Add(this.dateTimePicker);
     this.Controls.Add(this.findComboBox);
     this.Controls.Add(this.maskedEdit);
     this.Controls.Add(this.checkBox);
     this.Controls.Add(this.comboBox);
     this.Controls.Add(this.textBox);
     this.Controls.Add(this.customDataGridView);
     this.Name = "DataGridViewUC";
     this.Size = new System.Drawing.Size(431, 150);
     ((System.ComponentModel.ISupportInitialize)(this.customDataGridView)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.button3 = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.cbNhanVien = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.rbDaTaoThe_InPin = new System.Windows.Forms.RadioButton();
     this.rbChuaMoTK_The = new System.Windows.Forms.RadioButton();
     this.button4 = new System.Windows.Forms.Button();
     this.button6 = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.tbNoiNhanThe = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label6 = new System.Windows.Forms.Label();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.tbCMND = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.rbChuyenXuongQuay = new System.Windows.Forms.RadioButton();
     this.rbNgayNone = new System.Windows.Forms.RadioButton();
     this.rbDaGiaoThe = new System.Windows.Forms.RadioButton();
     this.rbDaTaoThe = new System.Windows.Forms.RadioButton();
     this.button1 = new System.Windows.Forms.Button();
     this.tbFullName = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.groupBox1.Controls.Add(this.button3);
     this.groupBox1.Controls.Add(this.groupBox3);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.tbCMND);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.button1);
     this.groupBox1.Controls.Add(this.tbFullName);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.button2);
     this.groupBox1.Location = new System.Drawing.Point(2, 246);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
     this.groupBox1.Size = new System.Drawing.Size(988, 166);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Search";
     //
     // button3
     //
     this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button3.Location = new System.Drawing.Point(375, 124);
     this.button3.Margin = new System.Windows.Forms.Padding(2);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(70, 27);
     this.button3.TabIndex = 20;
     this.button3.Text = "Refresh";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label8);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.cbNhanVien);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.groupBox4);
     this.groupBox3.Controls.Add(this.button4);
     this.groupBox3.Controls.Add(this.button6);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.tbNoiNhanThe);
     this.groupBox3.Controls.Add(this.dateTimePicker1);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Controls.Add(this.dateTimePicker2);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Location = new System.Drawing.Point(467, 18);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(450, 133);
     this.groupBox3.TabIndex = 19;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Report";
     //
     // cbNhanVien
     //
     this.cbNhanVien.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbNhanVien.FormattingEnabled = true;
     this.cbNhanVien.Items.AddRange(new object[] {
     "-ALL-",
     "NHOM POS",
     "NHOM THE 1",
     "NHOM THE 2",
     "NGUYEN THI THANH TRUC",
     "DOAN VU LONG",
     "NGUYEN THANH VINH",
     "NGUYEN THI MY NHU",
     "NGUYEN THANH TRU",
     "BUI PHUONG HA",
     "BUI XUAN HIEP",
     "DO THI HUONG",
     "QUANG NHUT DIEM DIEM",
     "NGUYEN TUAN QUANG",
     "LE VAN THANG",
     "NGUYEN THANH LONG",
     "PHAM THI HUONG THUC",
     "NGUYEN THI NHU Y"});
     this.cbNhanVien.Location = new System.Drawing.Point(75, 75);
     this.cbNhanVien.Name = "cbNhanVien";
     this.cbNhanVien.Size = new System.Drawing.Size(176, 21);
     this.cbNhanVien.TabIndex = 158;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(6, 78);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(59, 13);
     this.label3.TabIndex = 157;
     this.label3.Text = "Nhân viên:";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.rbDaTaoThe_InPin);
     this.groupBox4.Controls.Add(this.rbChuaMoTK_The);
     this.groupBox4.Location = new System.Drawing.Point(267, 12);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(170, 73);
     this.groupBox4.TabIndex = 29;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Option";
     //
     // rbDaTaoThe_InPin
     //
     this.rbDaTaoThe_InPin.AutoSize = true;
     this.rbDaTaoThe_InPin.Location = new System.Drawing.Point(14, 42);
     this.rbDaTaoThe_InPin.Name = "rbDaTaoThe_InPin";
     this.rbDaTaoThe_InPin.Size = new System.Drawing.Size(118, 17);
     this.rbDaTaoThe_InPin.TabIndex = 29;
     this.rbDaTaoThe_InPin.Text = "Đã tạo thẻ và in pin";
     this.rbDaTaoThe_InPin.UseVisualStyleBackColor = true;
     //
     // rbChuaMoTK_The
     //
     this.rbChuaMoTK_The.AutoSize = true;
     this.rbChuaMoTK_The.Checked = true;
     this.rbChuaMoTK_The.Location = new System.Drawing.Point(13, 23);
     this.rbChuaMoTK_The.Name = "rbChuaMoTK_The";
     this.rbChuaMoTK_The.Size = new System.Drawing.Size(153, 17);
     this.rbChuaMoTK_The.TabIndex = 28;
     this.rbChuaMoTK_The.TabStop = true;
     this.rbChuaMoTK_The.Text = "Chưa mở tài khoản, tạo thẻ";
     this.rbChuaMoTK_The.UseVisualStyleBackColor = true;
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(348, 104);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(75, 22);
     this.button4.TabIndex = 27;
     this.button4.Text = "Load";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // button6
     //
     this.button6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button6.Location = new System.Drawing.Point(264, 104);
     this.button6.Margin = new System.Windows.Forms.Padding(2);
     this.button6.Name = "button6";
     this.button6.Size = new System.Drawing.Size(67, 24);
     this.button6.TabIndex = 26;
     this.button6.Text = "Execute";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Click += new System.EventHandler(this.button6_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(7, 51);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(52, 13);
     this.label5.TabIndex = 25;
     this.label5.Text = "To Date :";
     //
     // tbNoiNhanThe
     //
     this.tbNoiNhanThe.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.tbNoiNhanThe.Location = new System.Drawing.Point(75, 100);
     this.tbNoiNhanThe.Margin = new System.Windows.Forms.Padding(2);
     this.tbNoiNhanThe.Name = "tbNoiNhanThe";
     this.tbNoiNhanThe.Size = new System.Drawing.Size(176, 20);
     this.tbNoiNhanThe.TabIndex = 2;
     this.tbNoiNhanThe.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbFullName_KeyDown);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker1.Location = new System.Drawing.Point(75, 19);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(109, 20);
     this.dateTimePicker1.TabIndex = 22;
     //
     // label6
     //
     this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(5, 104);
     this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(68, 13);
     this.label6.TabIndex = 3;
     this.label6.Text = "Nơi nhận thẻ";
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker2.Location = new System.Drawing.Point(75, 45);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(109, 20);
     this.dateTimePicker2.TabIndex = 23;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(7, 22);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(62, 13);
     this.label4.TabIndex = 24;
     this.label4.Text = "From Date :";
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(195, 55);
     this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(39, 13);
     this.label1.TabIndex = 16;
     this.label1.Text = "CMND";
     //
     // tbCMND
     //
     this.tbCMND.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.tbCMND.Location = new System.Drawing.Point(284, 50);
     this.tbCMND.Margin = new System.Windows.Forms.Padding(2);
     this.tbCMND.Name = "tbCMND";
     this.tbCMND.Size = new System.Drawing.Size(178, 20);
     this.tbCMND.TabIndex = 15;
     this.tbCMND.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbCMND_KeyDown);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.rbChuyenXuongQuay);
     this.groupBox2.Controls.Add(this.rbNgayNone);
     this.groupBox2.Controls.Add(this.rbDaGiaoThe);
     this.groupBox2.Controls.Add(this.rbDaTaoThe);
     this.groupBox2.Location = new System.Drawing.Point(8, 14);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(182, 140);
     this.groupBox2.TabIndex = 13;
     this.groupBox2.TabStop = false;
     //
     // rbChuyenXuongQuay
     //
     this.rbChuyenXuongQuay.AutoSize = true;
     this.rbChuyenXuongQuay.Location = new System.Drawing.Point(18, 53);
     this.rbChuyenXuongQuay.Name = "rbChuyenXuongQuay";
     this.rbChuyenXuongQuay.Size = new System.Drawing.Size(119, 17);
     this.rbChuyenXuongQuay.TabIndex = 3;
     this.rbChuyenXuongQuay.Text = "Chuyển xuống quầy";
     this.rbChuyenXuongQuay.UseVisualStyleBackColor = true;
     //
     // rbNgayNone
     //
     this.rbNgayNone.AutoSize = true;
     this.rbNgayNone.Location = new System.Drawing.Point(18, 21);
     this.rbNgayNone.Name = "rbNgayNone";
     this.rbNgayNone.Size = new System.Drawing.Size(36, 17);
     this.rbNgayNone.TabIndex = 2;
     this.rbNgayNone.Text = "All";
     this.rbNgayNone.UseVisualStyleBackColor = true;
     //
     // rbDaGiaoThe
     //
     this.rbDaGiaoThe.AutoSize = true;
     this.rbDaGiaoThe.Checked = true;
     this.rbDaGiaoThe.Location = new System.Drawing.Point(18, 110);
     this.rbDaGiaoThe.Name = "rbDaGiaoThe";
     this.rbDaGiaoThe.Size = new System.Drawing.Size(144, 17);
     this.rbDaGiaoThe.TabIndex = 1;
     this.rbDaGiaoThe.TabStop = true;
     this.rbDaGiaoThe.Text = "Đã giao và kích hoạt thẻ";
     this.rbDaGiaoThe.UseVisualStyleBackColor = true;
     //
     // rbDaTaoThe
     //
     this.rbDaTaoThe.AutoSize = true;
     this.rbDaTaoThe.Location = new System.Drawing.Point(18, 83);
     this.rbDaTaoThe.Name = "rbDaTaoThe";
     this.rbDaTaoThe.Size = new System.Drawing.Size(122, 17);
     this.rbDaTaoThe.TabIndex = 0;
     this.rbDaTaoThe.Text = "Đã tạo thẻ và in PIN";
     this.rbDaTaoThe.UseVisualStyleBackColor = true;
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Location = new System.Drawing.Point(917, 124);
     this.button1.Margin = new System.Windows.Forms.Padding(2);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(67, 24);
     this.button1.TabIndex = 0;
     this.button1.Text = "Close";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // tbFullName
     //
     this.tbFullName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.tbFullName.Location = new System.Drawing.Point(284, 77);
     this.tbFullName.Margin = new System.Windows.Forms.Padding(2);
     this.tbFullName.Name = "tbFullName";
     this.tbFullName.Size = new System.Drawing.Size(178, 20);
     this.tbFullName.TabIndex = 2;
     this.tbFullName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbFullName_KeyDown);
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(195, 81);
     this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(60, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Họ tên KH:";
     //
     // button2
     //
     this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button2.Location = new System.Drawing.Point(284, 124);
     this.button2.Margin = new System.Windows.Forms.Padding(2);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(70, 27);
     this.button2.TabIndex = 4;
     this.button2.Text = "Search";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.ContextMenuStrip = this.contextMenuStrip1;
     this.dataGridView1.Location = new System.Drawing.Point(-2, 2);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     this.dataGridView1.Size = new System.Drawing.Size(992, 239);
     this.dataGridView1.TabIndex = 10;
     this.dataGridView1.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentDoubleClick);
     this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellDoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addToolStripMenuItem,
     this.editToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(97, 48);
     //
     // addToolStripMenuItem
     //
     this.addToolStripMenuItem.Name = "addToolStripMenuItem";
     this.addToolStripMenuItem.Size = new System.Drawing.Size(96, 22);
     this.addToolStripMenuItem.Text = "Add";
     this.addToolStripMenuItem.Click += new System.EventHandler(this.addToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(96, 22);
     this.editToolStripMenuItem.Text = "Edit";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(190, 25);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(71, 13);
     this.label7.TabIndex = 159;
     this.label7.Text = "(dd/mm/yyyy)";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(190, 51);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(71, 13);
     this.label8.TabIndex = 159;
     this.label8.Text = "(dd/mm/yyyy)";
     //
     // Frm_Card_Issuance
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(994, 409);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.groupBox1);
     this.Name = "Frm_Card_Issuance";
     this.Text = "Frm_Card_Issuance";
     this.Load += new System.EventHandler(this.Frm_Card_Issuance_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        private void InitializeComponent()
        {
            this.buttonClose                  = new System.Windows.Forms.Button();
            this.buttonSave                   = new System.Windows.Forms.Button();
            this.labelFromDateTime            = new System.Windows.Forms.Label();
            this.dateTimePickerFromDateTime   = new System.Windows.Forms.DateTimePicker();
            this.labelUntilDateTime           = new System.Windows.Forms.Label();
            this.dateTimePickerUntilDateTime  = new System.Windows.Forms.DateTimePicker();
            this.labelAmount                  = new System.Windows.Forms.Label();
            this.maskedTextBoxAmount          = new System.Windows.Forms.MaskedTextBox();
            this.labelFinancialCurrencyPicker = new System.Windows.Forms.Label();
            this.financialCurrencyPicker      = new FinancialCurrencyPicker();
            this.labelUserPicker              = new System.Windows.Forms.Label();
            this.userPicker                   = new DefaultUserPicker();
            this.labelDateTime                = new System.Windows.Forms.Label();
            this.dateTimePickerDateTime       = new System.Windows.Forms.TextBox();
            this.SuspendLayout();
            //
            // labelFromDateTime
            //
            this.labelFromDateTime.AutoSize = true;
            this.labelFromDateTime.Location = new System.Drawing.Point(11, 13);
            this.labelFromDateTime.Name     = "labelFromDateTime";
            this.labelFromDateTime.Size     = new System.Drawing.Size(71, 13);
            this.labelFromDateTime.TabIndex = 2;
            this.labelFromDateTime.Text     = "From Date Time:";
            //
            //dateTimePickerFromDateTime
            //
            this.dateTimePickerFromDateTime.Location     = new System.Drawing.Point(140, 13);
            this.dateTimePickerFromDateTime.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
            this.dateTimePickerFromDateTime.Name         = "dateTimePickerFromDateTime";
            this.dateTimePickerFromDateTime.Size         = new System.Drawing.Size(250, 20);
            this.dateTimePickerFromDateTime.TabIndex     = 3;
            this.dateTimePickerFromDateTime.Checked      = false;
            this.dateTimePickerFromDateTime.ShowCheckBox = true;
            //
            // labelUntilDateTime
            //
            this.labelUntilDateTime.AutoSize = true;
            this.labelUntilDateTime.Location = new System.Drawing.Point(11, 36);
            this.labelUntilDateTime.Name     = "labelUntilDateTime";
            this.labelUntilDateTime.Size     = new System.Drawing.Size(71, 13);
            this.labelUntilDateTime.TabIndex = 4;
            this.labelUntilDateTime.Text     = "Until Date Time:";
            //
            //dateTimePickerUntilDateTime
            //
            this.dateTimePickerUntilDateTime.Location     = new System.Drawing.Point(140, 36);
            this.dateTimePickerUntilDateTime.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
            this.dateTimePickerUntilDateTime.Name         = "dateTimePickerUntilDateTime";
            this.dateTimePickerUntilDateTime.Size         = new System.Drawing.Size(250, 20);
            this.dateTimePickerUntilDateTime.TabIndex     = 5;
            this.dateTimePickerUntilDateTime.Checked      = false;
            this.dateTimePickerUntilDateTime.ShowCheckBox = true;
            //
            // labelAmount
            //
            this.labelAmount.AutoSize = true;
            this.labelAmount.Location = new System.Drawing.Point(11, 59);
            this.labelAmount.Name     = "labelAmount";
            this.labelAmount.Size     = new System.Drawing.Size(71, 13);
            this.labelAmount.TabIndex = 6;
            this.labelAmount.Text     = "Amount:";
            //
            //maskedTextBoxAmount
            //
            this.maskedTextBoxAmount.Location = new System.Drawing.Point(140, 59);
            this.maskedTextBoxAmount.Anchor   = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
            this.maskedTextBoxAmount.Name     = "maskedTextBoxAmount";
            this.maskedTextBoxAmount.Size     = new System.Drawing.Size(250, 20);
            this.maskedTextBoxAmount.TabIndex = 7;
            //
            // labelFinancialCurrencyPicker
            //
            this.labelFinancialCurrencyPicker.AutoSize = true;
            this.labelFinancialCurrencyPicker.Location = new System.Drawing.Point(11, 82);
            this.labelFinancialCurrencyPicker.Name     = "labelFinancialCurrencyPicker";
            this.labelFinancialCurrencyPicker.Size     = new System.Drawing.Size(71, 13);
            this.labelFinancialCurrencyPicker.TabIndex = 8;
            this.labelFinancialCurrencyPicker.Text     = "Financial Currency:";
            //
            //financialCurrencyPicker
            //
            this.financialCurrencyPicker.Location = new System.Drawing.Point(140, 82);
            this.financialCurrencyPicker.Anchor   = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
            this.financialCurrencyPicker.Name     = "financialCurrencyPicker";
            this.financialCurrencyPicker.Size     = new System.Drawing.Size(250, 20);
            this.financialCurrencyPicker.TabIndex = 9;
            //
            // labelUserPicker
            //
            this.labelUserPicker.AutoSize = true;
            this.labelUserPicker.Location = new System.Drawing.Point(11, 105);
            this.labelUserPicker.Name     = "labelUserPicker";
            this.labelUserPicker.Size     = new System.Drawing.Size(71, 13);
            this.labelUserPicker.TabIndex = 10;
            this.labelUserPicker.Text     = "User:"******"userPicker";
            this.userPicker.Size     = new System.Drawing.Size(250, 20);
            this.userPicker.TabIndex = 11;
            //
            // labelDateTime
            //
            this.labelDateTime.AutoSize = true;
            this.labelDateTime.Location = new System.Drawing.Point(11, 128);
            this.labelDateTime.Name     = "labelDateTime";
            this.labelDateTime.Size     = new System.Drawing.Size(71, 13);
            this.labelDateTime.TabIndex = 12;
            this.labelDateTime.Text     = "Date Time:";
            //
            //dateTimePickerDateTime
            //
            this.dateTimePickerDateTime.Location = new System.Drawing.Point(140, 128);
            this.dateTimePickerDateTime.Anchor   = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
            this.dateTimePickerDateTime.Name     = "dateTimePickerDateTime";
            this.dateTimePickerDateTime.Size     = new System.Drawing.Size(250, 20);
            this.dateTimePickerDateTime.TabIndex = 13;
            //
            // buttonClose
            //
            this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonClose.Location = new System.Drawing.Point(298, 151);

            this.buttonClose.Name     = "buttonClose";
            this.buttonClose.Size     = new System.Drawing.Size(92, 22);
            this.buttonClose.TabIndex = 1;
            this.buttonClose.Text     = "&Close";
            this.buttonClose.UseVisualStyleBackColor = true;
            this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
            //
            // buttonSave
            //
            this.buttonSave.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonSave.Location = new System.Drawing.Point(198, 151);
            this.buttonSave.Name     = "buttonSave";
            this.buttonSave.Size     = new System.Drawing.Size(92, 22);
            this.buttonSave.TabIndex = 2;
            this.buttonSave.Text     = "&Save";
            this.buttonSave.UseVisualStyleBackColor = true;
            this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
            //
            // EditForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(402, 179);
            this.Controls.Add(this.buttonSave);
            this.Controls.Add(this.buttonClose);
            this.Name = "CrudeFinancialHotelBookingEdit";
            this.Text = "Financial Hotel Booking Edit";
            this.Controls.Add(this.labelFromDateTime);
            this.Controls.Add(this.dateTimePickerFromDateTime);
            this.Controls.Add(this.labelUntilDateTime);
            this.Controls.Add(this.dateTimePickerUntilDateTime);
            this.Controls.Add(this.labelAmount);
            this.Controls.Add(this.maskedTextBoxAmount);
            this.Controls.Add(this.labelFinancialCurrencyPicker);
            this.Controls.Add(this.financialCurrencyPicker);
            this.Controls.Add(this.labelUserPicker);
            this.Controls.Add(this.userPicker);
            this.Controls.Add(this.labelDateTime);
            this.Controls.Add(this.dateTimePickerDateTime);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.dgv_reject = new System.Windows.Forms.DataGridView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.doneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.rd_all = new System.Windows.Forms.RadioButton();
     this.rd_da_hach_toan = new System.Windows.Forms.RadioButton();
     this.rd_chua_hach_toan = new System.Windows.Forms.RadioButton();
     this.btn_search = new System.Windows.Forms.Button();
     this.btn_clear = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tb_sender = new System.Windows.Forms.TextBox();
     this.tb_bank_send = new System.Windows.Forms.TextBox();
     this.tb_reciever = new System.Windows.Forms.TextBox();
     this.dp_from_date = new System.Windows.Forms.DateTimePicker();
     this.dp_to_date = new System.Windows.Forms.DateTimePicker();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tb_note_show = new System.Windows.Forms.RichTextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.tb_err_mess = new System.Windows.Forms.RichTextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.tb_note_edit = new System.Windows.Forms.RichTextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.btn_close = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_reject)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // dgv_reject
     //
     this.dgv_reject.AllowUserToAddRows = false;
     this.dgv_reject.AllowUserToDeleteRows = false;
     this.dgv_reject.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_reject.ContextMenuStrip = this.contextMenuStrip1;
     this.dgv_reject.Location = new System.Drawing.Point(12, 152);
     this.dgv_reject.Name = "dgv_reject";
     this.dgv_reject.Size = new System.Drawing.Size(824, 273);
     this.dgv_reject.TabIndex = 0;
     this.dgv_reject.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_reject_CellClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.doneToolStripMenuItem,
     this.editToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(153, 70);
     //
     // doneToolStripMenuItem
     //
     this.doneToolStripMenuItem.Name = "doneToolStripMenuItem";
     this.doneToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.doneToolStripMenuItem.Text = "Done";
     this.doneToolStripMenuItem.Click += new System.EventHandler(this.doneToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.editToolStripMenuItem.Text = "Edit Note";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
     //
     // rd_all
     //
     this.rd_all.AutoSize = true;
     this.rd_all.Location = new System.Drawing.Point(22, 31);
     this.rd_all.Name = "rd_all";
     this.rd_all.Size = new System.Drawing.Size(44, 17);
     this.rd_all.TabIndex = 1;
     this.rd_all.TabStop = true;
     this.rd_all.Text = "ALL";
     this.rd_all.UseVisualStyleBackColor = true;
     //
     // rd_da_hach_toan
     //
     this.rd_da_hach_toan.AutoSize = true;
     this.rd_da_hach_toan.Location = new System.Drawing.Point(22, 99);
     this.rd_da_hach_toan.Name = "rd_da_hach_toan";
     this.rd_da_hach_toan.Size = new System.Drawing.Size(90, 17);
     this.rd_da_hach_toan.TabIndex = 2;
     this.rd_da_hach_toan.TabStop = true;
     this.rd_da_hach_toan.Text = "Đã hạch toán";
     this.rd_da_hach_toan.UseVisualStyleBackColor = true;
     //
     // rd_chua_hach_toan
     //
     this.rd_chua_hach_toan.AutoSize = true;
     this.rd_chua_hach_toan.Location = new System.Drawing.Point(22, 64);
     this.rd_chua_hach_toan.Name = "rd_chua_hach_toan";
     this.rd_chua_hach_toan.Size = new System.Drawing.Size(101, 17);
     this.rd_chua_hach_toan.TabIndex = 3;
     this.rd_chua_hach_toan.TabStop = true;
     this.rd_chua_hach_toan.Text = "Chưa hạch toán";
     this.rd_chua_hach_toan.UseVisualStyleBackColor = true;
     //
     // btn_search
     //
     this.btn_search.Location = new System.Drawing.Point(271, 431);
     this.btn_search.Name = "btn_search";
     this.btn_search.Size = new System.Drawing.Size(75, 23);
     this.btn_search.TabIndex = 4;
     this.btn_search.Text = "Search";
     this.btn_search.UseVisualStyleBackColor = true;
     this.btn_search.Click += new System.EventHandler(this.btn_search_Click);
     //
     // btn_clear
     //
     this.btn_clear.Location = new System.Drawing.Point(362, 431);
     this.btn_clear.Name = "btn_clear";
     this.btn_clear.Size = new System.Drawing.Size(75, 23);
     this.btn_clear.TabIndex = 5;
     this.btn_clear.Text = "Clear";
     this.btn_clear.UseVisualStyleBackColor = true;
     this.btn_clear.Click += new System.EventHandler(this.btn_close_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(155, 31);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(75, 13);
     this.label1.TabIndex = 6;
     this.label1.Text = "Tên người gửi:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(155, 104);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(101, 13);
     this.label2.TabIndex = 7;
     this.label2.Text = "Ngân hàng chuyển:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(441, 16);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(49, 13);
     this.label3.TabIndex = 8;
     this.label3.Text = "Từ ngày:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(441, 49);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 13);
     this.label4.TabIndex = 9;
     this.label4.Text = "Đến ngày:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(155, 69);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(85, 13);
     this.label5.TabIndex = 10;
     this.label5.Text = "Tên người nhận:";
     //
     // tb_sender
     //
     this.tb_sender.Location = new System.Drawing.Point(259, 28);
     this.tb_sender.Name = "tb_sender";
     this.tb_sender.Size = new System.Drawing.Size(162, 20);
     this.tb_sender.TabIndex = 11;
     //
     // tb_bank_send
     //
     this.tb_bank_send.Location = new System.Drawing.Point(259, 97);
     this.tb_bank_send.Name = "tb_bank_send";
     this.tb_bank_send.Size = new System.Drawing.Size(162, 20);
     this.tb_bank_send.TabIndex = 12;
     //
     // tb_reciever
     //
     this.tb_reciever.Location = new System.Drawing.Point(259, 62);
     this.tb_reciever.Name = "tb_reciever";
     this.tb_reciever.Size = new System.Drawing.Size(162, 20);
     this.tb_reciever.TabIndex = 13;
     //
     // dp_from_date
     //
     this.dp_from_date.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dp_from_date.Location = new System.Drawing.Point(503, 14);
     this.dp_from_date.Name = "dp_from_date";
     this.dp_from_date.Size = new System.Drawing.Size(107, 20);
     this.dp_from_date.TabIndex = 14;
     //
     // dp_to_date
     //
     this.dp_to_date.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dp_to_date.Location = new System.Drawing.Point(503, 44);
     this.dp_to_date.Name = "dp_to_date";
     this.dp_to_date.Size = new System.Drawing.Size(107, 20);
     this.dp_to_date.TabIndex = 15;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.tb_note_show);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.tb_err_mess);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.tb_note_edit);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.rd_all);
     this.groupBox1.Controls.Add(this.dp_to_date);
     this.groupBox1.Controls.Add(this.rd_da_hach_toan);
     this.groupBox1.Controls.Add(this.dp_from_date);
     this.groupBox1.Controls.Add(this.rd_chua_hach_toan);
     this.groupBox1.Controls.Add(this.tb_reciever);
     this.groupBox1.Controls.Add(this.tb_bank_send);
     this.groupBox1.Controls.Add(this.tb_sender);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Location = new System.Drawing.Point(12, 4);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(824, 142);
     this.groupBox1.TabIndex = 16;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Search Options";
     //
     // tb_note_show
     //
     this.tb_note_show.Enabled = false;
     this.tb_note_show.Location = new System.Drawing.Point(444, 89);
     this.tb_note_show.Name = "tb_note_show";
     this.tb_note_show.Size = new System.Drawing.Size(171, 47);
     this.tb_note_show.TabIndex = 21;
     this.tb_note_show.Text = "";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(441, 71);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(126, 13);
     this.label8.TabIndex = 20;
     this.label8.Text = "Accounting Note: (Show)";
     //
     // tb_err_mess
     //
     this.tb_err_mess.Enabled = false;
     this.tb_err_mess.Location = new System.Drawing.Point(642, 25);
     this.tb_err_mess.Name = "tb_err_mess";
     this.tb_err_mess.Size = new System.Drawing.Size(171, 47);
     this.tb_err_mess.TabIndex = 19;
     this.tb_err_mess.Text = "";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(639, 11);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(69, 13);
     this.label7.TabIndex = 18;
     this.label7.Text = "Err Message:";
     //
     // tb_note_edit
     //
     this.tb_note_edit.Location = new System.Drawing.Point(642, 89);
     this.tb_note_edit.Name = "tb_note_edit";
     this.tb_note_edit.Size = new System.Drawing.Size(171, 47);
     this.tb_note_edit.TabIndex = 17;
     this.tb_note_edit.Text = "";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(639, 71);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(117, 13);
     this.label6.TabIndex = 16;
     this.label6.Text = "Accounting Note: (Edit)";
     //
     // btn_close
     //
     this.btn_close.Location = new System.Drawing.Point(456, 431);
     this.btn_close.Name = "btn_close";
     this.btn_close.Size = new System.Drawing.Size(75, 23);
     this.btn_close.TabIndex = 19;
     this.btn_close.Text = "Close";
     this.btn_close.UseVisualStyleBackColor = true;
     this.btn_close.Click += new System.EventHandler(this.btn_close_Click_1);
     //
     // Frm_Balance_pre_cre_transfer_IBPS_Authorize_Reject
     //
     this.AcceptButton = this.btn_search;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(850, 464);
     this.Controls.Add(this.btn_close);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.dgv_reject);
     this.Controls.Add(this.btn_search);
     this.Controls.Add(this.btn_clear);
     this.Name = "Frm_Balance_pre_cre_transfer_IBPS_Authorize_Reject";
     this.Text = "Frm_Balance_pre_cre_transfer_IBPS_Authorize_Reject";
     this.Load += new System.EventHandler(this.Frm_Balance_pre_cre_transfer_IBPS_Authorize_Reject_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgv_reject)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.label19 = new System.Windows.Forms.Label();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.button3 = new System.Windows.Forms.Button();
     this.label22 = new System.Windows.Forms.Label();
     this.textBox20 = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.textBox19 = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.textBox18 = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.textBox16 = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.textBox17 = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label2 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.label8 = new System.Windows.Forms.Label();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.button4 = new System.Windows.Forms.Button();
     this.label10 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // comboBox1
     //
     this.comboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBox1.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(101, 24);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(153, 26);
     this.comboBox1.TabIndex = 0;
     //
     // button1
     //
     this.button1.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.Location = new System.Drawing.Point(261, 24);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 26);
     this.button1.TabIndex = 1;
     this.button1.Text = "Show";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button2.Location = new System.Drawing.Point(339, 24);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 26);
     this.button2.TabIndex = 4;
     this.button2.Text = "Back";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // label19
     //
     this.label19.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label19.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label19.Location = new System.Drawing.Point(24, 26);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(71, 23);
     this.label19.TabIndex = 204;
     this.label19.Text = "Bill No";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // dataGridView1
     //
     this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column11,
     this.Column1,
     this.Column2,
     this.Column5,
     this.Column3,
     this.Column4});
     this.dataGridView1.Location = new System.Drawing.Point(24, 65);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(579, 157);
     this.dataGridView1.TabIndex = 205;
     //
     // Column11
     //
     this.Column11.HeaderText = "AutoId";
     this.Column11.Name = "Column11";
     this.Column11.Visible = false;
     //
     // Column1
     //
     this.Column1.HeaderText = "Product Name";
     this.Column1.Name = "Column1";
     //
     // Column2
     //
     this.Column2.HeaderText = "Qty";
     this.Column2.Name = "Column2";
     //
     // Column5
     //
     this.Column5.HeaderText = "Unit";
     this.Column5.Name = "Column5";
     //
     // Column3
     //
     this.Column3.HeaderText = "Price";
     this.Column3.Name = "Column3";
     //
     // Column4
     //
     this.Column4.HeaderText = "Total Price";
     this.Column4.Name = "Column4";
     //
     // button3
     //
     this.button3.BackColor = System.Drawing.Color.Crimson;
     this.button3.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button3.ForeColor = System.Drawing.Color.White;
     this.button3.Location = new System.Drawing.Point(766, 285);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 33);
     this.button3.TabIndex = 3;
     this.button3.Text = "Update";
     this.button3.UseVisualStyleBackColor = false;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // label22
     //
     this.label22.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label22.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label22.Location = new System.Drawing.Point(612, 255);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(124, 23);
     this.label22.TabIndex = 221;
     this.label22.Text = "DUE";
     this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBox20
     //
     this.textBox20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox20.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox20.Location = new System.Drawing.Point(742, 255);
     this.textBox20.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.textBox20.Name = "textBox20";
     this.textBox20.Size = new System.Drawing.Size(99, 23);
     this.textBox20.TabIndex = 220;
     this.textBox20.Text = "0";
     this.textBox20.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label21
     //
     this.label21.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label21.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label21.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label21.Location = new System.Drawing.Point(612, 230);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(124, 23);
     this.label21.TabIndex = 219;
     this.label21.Text = "PAYABLE";
     this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBox19
     //
     this.textBox19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox19.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox19.Location = new System.Drawing.Point(742, 230);
     this.textBox19.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.textBox19.Name = "textBox19";
     this.textBox19.Size = new System.Drawing.Size(99, 23);
     this.textBox19.TabIndex = 2;
     this.textBox19.Text = "0";
     this.textBox19.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.textBox19.Leave += new System.EventHandler(this.textBox19_Leave);
     //
     // label20
     //
     this.label20.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label20.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label20.Location = new System.Drawing.Point(612, 205);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(124, 23);
     this.label20.TabIndex = 218;
     this.label20.Text = "NET AMOUNT";
     this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBox18
     //
     this.textBox18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox18.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox18.Location = new System.Drawing.Point(742, 205);
     this.textBox18.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.textBox18.Name = "textBox18";
     this.textBox18.Size = new System.Drawing.Size(99, 23);
     this.textBox18.TabIndex = 217;
     this.textBox18.Text = "0";
     this.textBox18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label18
     //
     this.label18.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label18.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label18.Location = new System.Drawing.Point(612, 180);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(124, 23);
     this.label18.TabIndex = 216;
     this.label18.Text = "DISCOUNT";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBox16
     //
     this.textBox16.BackColor = System.Drawing.Color.Blue;
     this.textBox16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox16.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox16.ForeColor = System.Drawing.Color.Yellow;
     this.textBox16.Location = new System.Drawing.Point(742, 180);
     this.textBox16.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.textBox16.Name = "textBox16";
     this.textBox16.Size = new System.Drawing.Size(99, 23);
     this.textBox16.TabIndex = 212;
     this.textBox16.Text = "0";
     this.textBox16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label1.Location = new System.Drawing.Point(612, 155);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(124, 23);
     this.label1.TabIndex = 215;
     this.label1.Text = "TOTAL AMOUNT";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBox17
     //
     this.textBox17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox17.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox17.Location = new System.Drawing.Point(742, 155);
     this.textBox17.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.textBox17.Name = "textBox17";
     this.textBox17.Size = new System.Drawing.Size(99, 23);
     this.textBox17.TabIndex = 214;
     this.textBox17.Text = "0";
     this.textBox17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CustomFormat = "dd/MM/yyyy";
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location = new System.Drawing.Point(742, 128);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(99, 23);
     this.dateTimePicker1.TabIndex = 222;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label2.Location = new System.Drawing.Point(612, 128);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(124, 23);
     this.label2.TabIndex = 224;
     this.label2.Text = "PAID DATE";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label9.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label9.Location = new System.Drawing.Point(612, 91);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(124, 23);
     this.label9.TabIndex = 261;
     this.label9.Text = "SALE DATE";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CustomFormat = "dd/MM/yyyy";
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location = new System.Drawing.Point(742, 91);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(99, 23);
     this.dateTimePicker2.TabIndex = 259;
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label8.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label8.Location = new System.Drawing.Point(612, 65);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(124, 23);
     this.label8.TabIndex = 260;
     this.label8.Text = "FACTORY NAME";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // comboBox2
     //
     this.comboBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBox2.BackColor = System.Drawing.Color.MistyRose;
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Location = new System.Drawing.Point(742, 65);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(198, 24);
     this.comboBox2.TabIndex = 258;
     //
     // button4
     //
     this.button4.BackColor = System.Drawing.Color.Crimson;
     this.button4.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.ForeColor = System.Drawing.Color.White;
     this.button4.Location = new System.Drawing.Point(847, 285);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(75, 33);
     this.button4.TabIndex = 262;
     this.button4.Text = "Refresh";
     this.button4.UseVisualStyleBackColor = false;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label10.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label10.Location = new System.Drawing.Point(847, 128);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(124, 48);
     this.label10.TabIndex = 264;
     this.label10.Text = "MONEY RECEIPT NO";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // textBox7
     //
     this.textBox7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox7.Location = new System.Drawing.Point(847, 180);
     this.textBox7.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(124, 23);
     this.textBox7.TabIndex = 263;
     this.textBox7.Text = "0";
     this.textBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // AccountStatement
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.DarkSeaGreen;
     this.ClientSize = new System.Drawing.Size(1008, 495);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.textBox7);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.dateTimePicker2);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.comboBox2);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.dateTimePicker1);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.textBox20);
     this.Controls.Add(this.label21);
     this.Controls.Add(this.textBox19);
     this.Controls.Add(this.label20);
     this.Controls.Add(this.textBox18);
     this.Controls.Add(this.label18);
     this.Controls.Add(this.textBox16);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textBox17);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.comboBox1);
     this.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "AccountStatement";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Account Statement";
     this.Load += new System.EventHandler(this.AccountStatement_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_CanjeLetras_Cronograma));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     this.GroupBox2 = new System.Windows.Forms.GroupBox();
     this.txttotapagarsoles = new System.Windows.Forms.TextBox();
     this.Label3 = new System.Windows.Forms.Label();
     this.txttotapagardolares = new System.Windows.Forms.TextBox();
     this.Label5 = new System.Windows.Forms.Label();
     this.Label6 = new System.Windows.Forms.Label();
     this.txtcambio = new System.Windows.Forms.TextBox();
     this.Label10 = new System.Windows.Forms.Label();
     this.btngenerarletras = new System.Windows.Forms.Button();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.txtSerie = new System.Windows.Forms.TextBox();
     this.txtnumpagoinicial = new System.Windows.Forms.TextBox();
     this.fechavenc = new System.Windows.Forms.DateTimePicker();
     this.Label4 = new System.Windows.Forms.Label();
     this.Label1 = new System.Windows.Forms.Label();
     this.txttotletras = new System.Windows.Forms.TextBox();
     this.Label2 = new System.Windows.Forms.Label();
     this.btnSalir = new System.Windows.Forms.Button();
     this.btnReporte = new System.Windows.Forms.Button();
     this.Examinar = new System.Windows.Forms.DataGridView();
     this.asientoitems = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ddocuref = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cuentaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cuentaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.debehaber = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ImporteCambio = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.moneda = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mediopago = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipcamb = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cencosid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechvenc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nmruc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bancoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipref = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numref = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.flagd_3a = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.cuend_3a = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dfich_3a = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pedidoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.num_op = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cuenta_Imputable = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.label7 = new System.Windows.Forms.Label();
     this.txtTotaImporte = new System.Windows.Forms.TextBox();
     this.txtTotalImporteCambio = new System.Windows.Forms.TextBox();
     this.txtDif = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.GroupBox2.SuspendLayout();
     this.GroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Examinar)).BeginInit();
     this.SuspendLayout();
     //
     // GroupBox2
     //
     this.GroupBox2.Controls.Add(this.txttotapagarsoles);
     this.GroupBox2.Controls.Add(this.Label3);
     this.GroupBox2.Controls.Add(this.txttotapagardolares);
     this.GroupBox2.Controls.Add(this.Label5);
     this.GroupBox2.Controls.Add(this.Label6);
     this.GroupBox2.Controls.Add(this.txtcambio);
     this.GroupBox2.Controls.Add(this.Label10);
     this.GroupBox2.Location = new System.Drawing.Point(12, 5);
     this.GroupBox2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.GroupBox2.Name = "GroupBox2";
     this.GroupBox2.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.GroupBox2.Size = new System.Drawing.Size(507, 70);
     this.GroupBox2.TabIndex = 0;
     this.GroupBox2.TabStop = false;
     this.GroupBox2.Text = " Datos Importe Deuda - Canje de Letras";
     //
     // txttotapagarsoles
     //
     this.txttotapagarsoles.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txttotapagarsoles.Location = new System.Drawing.Point(122, 36);
     this.txttotapagarsoles.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txttotapagarsoles.MaxLength = 13;
     this.txttotapagarsoles.Name = "txttotapagarsoles";
     this.txttotapagarsoles.Size = new System.Drawing.Size(136, 23);
     this.txttotapagarsoles.TabIndex = 1;
     this.txttotapagarsoles.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label3.Location = new System.Drawing.Point(22, 41);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(100, 17);
     this.Label3.TabIndex = 0;
     this.Label3.Text = "Total a Canjear";
     //
     // txttotapagardolares
     //
     this.txttotapagardolares.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txttotapagardolares.Location = new System.Drawing.Point(266, 36);
     this.txttotapagardolares.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txttotapagardolares.MaxLength = 13;
     this.txttotapagardolares.Name = "txttotapagardolares";
     this.txttotapagardolares.Size = new System.Drawing.Size(136, 23);
     this.txttotapagardolares.TabIndex = 3;
     this.txttotapagardolares.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label5.Location = new System.Drawing.Point(173, 18);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(25, 17);
     this.Label5.TabIndex = 2;
     this.Label5.Text = "S/.";
     //
     // Label6
     //
     this.Label6.AutoSize = true;
     this.Label6.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label6.Location = new System.Drawing.Point(303, 18);
     this.Label6.Name = "Label6";
     this.Label6.Size = new System.Drawing.Size(37, 17);
     this.Label6.TabIndex = 4;
     this.Label6.Text = "US $";
     //
     // txtcambio
     //
     this.txtcambio.Enabled = false;
     this.txtcambio.Location = new System.Drawing.Point(409, 36);
     this.txtcambio.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtcambio.Name = "txtcambio";
     this.txtcambio.Size = new System.Drawing.Size(80, 23);
     this.txtcambio.TabIndex = 6;
     this.txtcambio.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label10
     //
     this.Label10.AutoSize = true;
     this.Label10.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label10.Location = new System.Drawing.Point(427, 18);
     this.Label10.Name = "Label10";
     this.Label10.Size = new System.Drawing.Size(33, 17);
     this.Label10.TabIndex = 5;
     this.Label10.Text = "T.C.";
     //
     // btngenerarletras
     //
     this.btngenerarletras.Image = ((System.Drawing.Image)(resources.GetObject("btngenerarletras.Image")));
     this.btngenerarletras.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btngenerarletras.Location = new System.Drawing.Point(332, 154);
     this.btngenerarletras.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btngenerarletras.Name = "btngenerarletras";
     this.btngenerarletras.Size = new System.Drawing.Size(126, 33);
     this.btngenerarletras.TabIndex = 2;
     this.btngenerarletras.Text = "Generar Letras";
     this.btngenerarletras.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btngenerarletras.UseVisualStyleBackColor = true;
     this.btngenerarletras.Click += new System.EventHandler(this.btngenerarletras_Click);
     //
     // GroupBox1
     //
     this.GroupBox1.Controls.Add(this.txtSerie);
     this.GroupBox1.Controls.Add(this.txtnumpagoinicial);
     this.GroupBox1.Controls.Add(this.fechavenc);
     this.GroupBox1.Controls.Add(this.Label4);
     this.GroupBox1.Controls.Add(this.Label1);
     this.GroupBox1.Controls.Add(this.txttotletras);
     this.GroupBox1.Controls.Add(this.Label2);
     this.GroupBox1.Location = new System.Drawing.Point(12, 78);
     this.GroupBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.GroupBox1.Name = "GroupBox1";
     this.GroupBox1.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.GroupBox1.Size = new System.Drawing.Size(289, 113);
     this.GroupBox1.TabIndex = 1;
     this.GroupBox1.TabStop = false;
     this.GroupBox1.Text = " Datos Generación Letras ";
     //
     // txtSerie
     //
     this.txtSerie.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtSerie.Location = new System.Drawing.Point(129, 52);
     this.txtSerie.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtSerie.MaxLength = 4;
     this.txtSerie.Name = "txtSerie";
     this.txtSerie.Size = new System.Drawing.Size(39, 23);
     this.txtSerie.TabIndex = 3;
     //
     // txtnumpagoinicial
     //
     this.txtnumpagoinicial.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtnumpagoinicial.Location = new System.Drawing.Point(171, 52);
     this.txtnumpagoinicial.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtnumpagoinicial.MaxLength = 13;
     this.txtnumpagoinicial.Name = "txtnumpagoinicial";
     this.txtnumpagoinicial.Size = new System.Drawing.Size(86, 23);
     this.txtnumpagoinicial.TabIndex = 4;
     //
     // fechavenc
     //
     this.fechavenc.Checked = false;
     this.fechavenc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechavenc.Location = new System.Drawing.Point(129, 79);
     this.fechavenc.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.fechavenc.Name = "fechavenc";
     this.fechavenc.Size = new System.Drawing.Size(128, 23);
     this.fechavenc.TabIndex = 6;
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label4.Location = new System.Drawing.Point(49, 28);
     this.Label4.Name = "Label4";
     this.Label4.Size = new System.Drawing.Size(79, 17);
     this.Label4.TabIndex = 0;
     this.Label4.Text = "Total Letras";
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label1.Location = new System.Drawing.Point(36, 57);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(93, 17);
     this.Label1.TabIndex = 2;
     this.Label1.Text = "Número Inicial";
     //
     // txttotletras
     //
     this.txttotletras.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txttotletras.Location = new System.Drawing.Point(129, 25);
     this.txttotletras.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txttotletras.MaxLength = 13;
     this.txttotletras.Name = "txttotletras";
     this.txttotletras.Size = new System.Drawing.Size(72, 23);
     this.txttotletras.TabIndex = 1;
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label2.Location = new System.Drawing.Point(40, 82);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(85, 17);
     this.Label2.TabIndex = 5;
     this.Label2.Text = "F.Venc.Inicial";
     //
     // btnSalir
     //
     this.btnSalir.Image = global::BapFormulariosNet.Properties.Resources.Cancela16;
     this.btnSalir.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSalir.Location = new System.Drawing.Point(633, 459);
     this.btnSalir.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(103, 34);
     this.btnSalir.TabIndex = 5;
     this.btnSalir.Text = "&Cancelar  ";
     this.btnSalir.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // btnReporte
     //
     this.btnReporte.Image = global::BapFormulariosNet.Properties.Resources.Acepta16;
     this.btnReporte.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnReporte.Location = new System.Drawing.Point(517, 459);
     this.btnReporte.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnReporte.Name = "btnReporte";
     this.btnReporte.Size = new System.Drawing.Size(103, 34);
     this.btnReporte.TabIndex = 4;
     this.btnReporte.Text = "&Seleccionar";
     this.btnReporte.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnReporte.UseVisualStyleBackColor = true;
     this.btnReporte.Click += new System.EventHandler(this.btnReporte_Click);
     //
     // Examinar
     //
     this.Examinar.AllowUserToAddRows = false;
     this.Examinar.AllowUserToDeleteRows = false;
     this.Examinar.AllowUserToResizeColumns = false;
     this.Examinar.AllowUserToResizeRows = false;
     this.Examinar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.Examinar.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     this.Examinar.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.Examinar.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.asientoitems,
     this.ddocuref,
     this.cuentaid,
     this.cuentaname,
     this.debehaber,
     this.Importe,
     this.ImporteCambio,
     this.moneda,
     this.mediopago,
     this.tipdoc,
     this.serdoc,
     this.numdoc,
     this.tipcamb,
     this.cencosid,
     this.fechvenc,
     this.nmruc,
     this.bancoid,
     this.tipref,
     this.numref,
     this.ctactename,
     this.flagd_3a,
     this.cuend_3a,
     this.dfich_3a,
     this.pedidoid,
     this.num_op,
     this.cuenta_Imputable});
     this.Examinar.Location = new System.Drawing.Point(12, 193);
     this.Examinar.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Examinar.MultiSelect = false;
     this.Examinar.Name = "Examinar";
     this.Examinar.RowHeadersWidth = 10;
     dataGridViewCellStyle5.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Examinar.RowsDefaultCellStyle = dataGridViewCellStyle5;
     this.Examinar.RowTemplate.Height = 20;
     this.Examinar.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.Examinar.Size = new System.Drawing.Size(857, 262);
     this.Examinar.TabIndex = 3;
     this.Examinar.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.Examinar_CellBeginEdit);
     this.Examinar.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.Examinar_CellEndEdit);
     this.Examinar.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.Examinar_CellValueChanged);
     this.Examinar.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.Examinar_EditingControlShowing);
     this.Examinar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Examinar_KeyDown);
     //
     // asientoitems
     //
     this.asientoitems.DataPropertyName = "asientoitems";
     this.asientoitems.HeaderText = "Nro";
     this.asientoitems.Name = "asientoitems";
     this.asientoitems.ReadOnly = true;
     this.asientoitems.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.asientoitems.Visible = false;
     this.asientoitems.Width = 45;
     //
     // ddocuref
     //
     this.ddocuref.DataPropertyName = "ddocuref";
     this.ddocuref.HeaderText = "ddocuref";
     this.ddocuref.Name = "ddocuref";
     this.ddocuref.Visible = false;
     //
     // cuentaid
     //
     this.cuentaid.DataPropertyName = "cuentaid";
     this.cuentaid.HeaderText = "Cuenta";
     this.cuentaid.Name = "cuentaid";
     this.cuentaid.Visible = false;
     //
     // cuentaname
     //
     this.cuentaname.DataPropertyName = "cuentaname";
     this.cuentaname.HeaderText = "Descripción";
     this.cuentaname.Name = "cuentaname";
     this.cuentaname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cuentaname.Visible = false;
     this.cuentaname.Width = 360;
     //
     // debehaber
     //
     this.debehaber.DataPropertyName = "debehaber";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.debehaber.DefaultCellStyle = dataGridViewCellStyle1;
     this.debehaber.HeaderText = "D/H";
     this.debehaber.MaxInputLength = 1;
     this.debehaber.Name = "debehaber";
     this.debehaber.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.debehaber.Visible = false;
     this.debehaber.Width = 35;
     //
     // Importe
     //
     this.Importe.DataPropertyName = "Importe";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle2.Format = "N2";
     dataGridViewCellStyle2.NullValue = "0";
     this.Importe.DefaultCellStyle = dataGridViewCellStyle2;
     this.Importe.HeaderText = "Importe";
     this.Importe.Name = "Importe";
     this.Importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Importe.Width = 78;
     //
     // ImporteCambio
     //
     this.ImporteCambio.DataPropertyName = "ImporteCambio";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle3.Format = "N2";
     dataGridViewCellStyle3.NullValue = "0";
     this.ImporteCambio.DefaultCellStyle = dataGridViewCellStyle3;
     this.ImporteCambio.HeaderText = "Importe Cambio";
     this.ImporteCambio.Name = "ImporteCambio";
     this.ImporteCambio.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ImporteCambio.Width = 78;
     //
     // moneda
     //
     this.moneda.DataPropertyName = "moneda";
     this.moneda.HeaderText = "MND";
     this.moneda.Name = "moneda";
     this.moneda.Width = 35;
     //
     // mediopago
     //
     this.mediopago.DataPropertyName = "mediopago";
     this.mediopago.HeaderText = "MPag";
     this.mediopago.Name = "mediopago";
     this.mediopago.Visible = false;
     this.mediopago.Width = 40;
     //
     // tipdoc
     //
     this.tipdoc.DataPropertyName = "tipdoc";
     this.tipdoc.HeaderText = "TD";
     this.tipdoc.Name = "tipdoc";
     this.tipdoc.Width = 28;
     //
     // serdoc
     //
     this.serdoc.DataPropertyName = "serdoc";
     this.serdoc.HeaderText = "Serie";
     this.serdoc.Name = "serdoc";
     this.serdoc.Width = 38;
     //
     // numdoc
     //
     this.numdoc.DataPropertyName = "numdoc";
     this.numdoc.HeaderText = "Número";
     this.numdoc.Name = "numdoc";
     this.numdoc.Width = 74;
     //
     // tipcamb
     //
     this.tipcamb.DataPropertyName = "tipcamb";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.Format = "N4";
     dataGridViewCellStyle4.NullValue = "0";
     this.tipcamb.DefaultCellStyle = dataGridViewCellStyle4;
     this.tipcamb.HeaderText = "T.Cambio";
     this.tipcamb.Name = "tipcamb";
     this.tipcamb.Visible = false;
     this.tipcamb.Width = 66;
     //
     // cencosid
     //
     this.cencosid.DataPropertyName = "cencosid";
     this.cencosid.HeaderText = "C.Costo";
     this.cencosid.Name = "cencosid";
     this.cencosid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cencosid.Visible = false;
     this.cencosid.Width = 65;
     //
     // fechvenc
     //
     this.fechvenc.DataPropertyName = "fechvenc";
     this.fechvenc.HeaderText = "F.Vencimiento";
     this.fechvenc.MaxInputLength = 10;
     this.fechvenc.Name = "fechvenc";
     this.fechvenc.Width = 80;
     //
     // nmruc
     //
     this.nmruc.DataPropertyName = "nmruc";
     this.nmruc.HeaderText = "Nº RUC";
     this.nmruc.Name = "nmruc";
     this.nmruc.Width = 86;
     //
     // bancoid
     //
     this.bancoid.DataPropertyName = "bancoid";
     this.bancoid.HeaderText = "BCO";
     this.bancoid.Name = "bancoid";
     this.bancoid.Visible = false;
     this.bancoid.Width = 55;
     //
     // tipref
     //
     this.tipref.DataPropertyName = "tipref";
     this.tipref.HeaderText = "T.Ref.";
     this.tipref.Name = "tipref";
     this.tipref.Visible = false;
     this.tipref.Width = 40;
     //
     // numref
     //
     this.numref.DataPropertyName = "numref";
     this.numref.HeaderText = "Nº Referencia";
     this.numref.Name = "numref";
     this.numref.Visible = false;
     this.numref.Width = 90;
     //
     // ctactename
     //
     this.ctactename.DataPropertyName = "ctactename";
     this.ctactename.HeaderText = "Apellidos y Nombres/Razón Social";
     this.ctactename.Name = "ctactename";
     this.ctactename.Width = 200;
     //
     // flagd_3a
     //
     this.flagd_3a.DataPropertyName = "flagd_3a";
     this.flagd_3a.HeaderText = "Destino";
     this.flagd_3a.Name = "flagd_3a";
     this.flagd_3a.Visible = false;
     this.flagd_3a.Width = 55;
     //
     // cuend_3a
     //
     this.cuend_3a.DataPropertyName = "cuend_3a";
     this.cuend_3a.HeaderText = "C.Destino";
     this.cuend_3a.Name = "cuend_3a";
     this.cuend_3a.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.cuend_3a.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cuend_3a.Visible = false;
     //
     // dfich_3a
     //
     this.dfich_3a.DataPropertyName = "dfich_3a";
     this.dfich_3a.HeaderText = "dfich_3a";
     this.dfich_3a.Name = "dfich_3a";
     this.dfich_3a.Visible = false;
     //
     // pedidoid
     //
     this.pedidoid.DataPropertyName = "pedidoid";
     this.pedidoid.HeaderText = "Pedido";
     this.pedidoid.Name = "pedidoid";
     this.pedidoid.Visible = false;
     this.pedidoid.Width = 70;
     //
     // num_op
     //
     this.num_op.DataPropertyName = "num_op";
     this.num_op.HeaderText = "OP";
     this.num_op.Name = "num_op";
     this.num_op.Visible = false;
     this.num_op.Width = 70;
     //
     // cuenta_Imputable
     //
     this.cuenta_Imputable.DataPropertyName = "cuenta_Imputable";
     this.cuenta_Imputable.HeaderText = "cuenta_Imputable";
     this.cuenta_Imputable.Name = "cuenta_Imputable";
     this.cuenta_Imputable.Visible = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label7.Location = new System.Drawing.Point(2, 465);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(89, 17);
     this.label7.TabIndex = 6;
     this.label7.Text = "Total Canjear";
     //
     // txtTotaImporte
     //
     this.txtTotaImporte.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtTotaImporte.Enabled = false;
     this.txtTotaImporte.Location = new System.Drawing.Point(86, 460);
     this.txtTotaImporte.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtTotaImporte.MaxLength = 13;
     this.txtTotaImporte.Name = "txtTotaImporte";
     this.txtTotaImporte.Size = new System.Drawing.Size(104, 23);
     this.txtTotaImporte.TabIndex = 7;
     this.txtTotaImporte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtTotalImporteCambio
     //
     this.txtTotalImporteCambio.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtTotalImporteCambio.Enabled = false;
     this.txtTotalImporteCambio.Location = new System.Drawing.Point(194, 460);
     this.txtTotalImporteCambio.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtTotalImporteCambio.MaxLength = 13;
     this.txtTotalImporteCambio.Name = "txtTotalImporteCambio";
     this.txtTotalImporteCambio.Size = new System.Drawing.Size(104, 23);
     this.txtTotalImporteCambio.TabIndex = 8;
     this.txtTotalImporteCambio.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtDif
     //
     this.txtDif.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtDif.Enabled = false;
     this.txtDif.Location = new System.Drawing.Point(345, 460);
     this.txtDif.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtDif.MaxLength = 13;
     this.txtDif.Name = "txtDif";
     this.txtDif.Size = new System.Drawing.Size(104, 23);
     this.txtDif.TabIndex = 9;
     this.txtDif.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label8.Location = new System.Drawing.Point(316, 465);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(28, 17);
     this.label8.TabIndex = 10;
     this.label8.Text = "Dif.";
     //
     // Frm_CanjeLetras_Cronograma
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(876, 501);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.txtDif);
     this.Controls.Add(this.txtTotaImporte);
     this.Controls.Add(this.txtTotalImporteCambio);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.GroupBox2);
     this.Controls.Add(this.btngenerarletras);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.btnSalir);
     this.Controls.Add(this.btnReporte);
     this.Controls.Add(this.Examinar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Frm_CanjeLetras_Cronograma";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Cronograma de Letras";
     this.Activated += new System.EventHandler(this.Frm_CanjeLetras_Cronograma_Activated);
     this.Load += new System.EventHandler(this.Frm_CanjeLetras_Cronograma_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_CanjeLetras_Cronograma_KeyDown);
     this.GroupBox2.ResumeLayout(false);
     this.GroupBox2.PerformLayout();
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Examinar)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dgv_Transaction_NQH = new System.Windows.Forms.DataGridView();
     this.NGAY_GD = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.LOAI_GD = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SOTIEN_GD = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.processing_flag = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btn_exit = new System.Windows.Forms.Button();
     this.btn_search = new System.Windows.Forms.Button();
     this.btn_clear = new System.Windows.Forms.Button();
     this.label11 = new System.Windows.Forms.Label();
     this.Txt_accountnumber = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.Txt_cardnumber = new System.Windows.Forms.TextBox();
     this.label37 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.tb_fromdate = new System.Windows.Forms.DateTimePicker();
     this.tb_todate = new System.Windows.Forms.DateTimePicker();
     this.TxtName = new System.Windows.Forms.TextBox();
     this.TxtStatus = new System.Windows.Forms.TextBox();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_Transaction_NQH)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dgv_Transaction_NQH);
     this.groupBox1.Location = new System.Drawing.Point(33, 123);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(631, 298);
     this.groupBox1.TabIndex = 250;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Transaction details:";
     //
     // dgv_Transaction_NQH
     //
     this.dgv_Transaction_NQH.AllowUserToAddRows = false;
     this.dgv_Transaction_NQH.AllowUserToDeleteRows = false;
     this.dgv_Transaction_NQH.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_Transaction_NQH.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.NGAY_GD,
     this.LOAI_GD,
     this.SOTIEN_GD,
     this.processing_flag});
     this.dgv_Transaction_NQH.Location = new System.Drawing.Point(0, 19);
     this.dgv_Transaction_NQH.MultiSelect = false;
     this.dgv_Transaction_NQH.Name = "dgv_Transaction_NQH";
     this.dgv_Transaction_NQH.ReadOnly = true;
     this.dgv_Transaction_NQH.Size = new System.Drawing.Size(614, 273);
     this.dgv_Transaction_NQH.TabIndex = 235;
     //
     // NGAY_GD
     //
     this.NGAY_GD.DataPropertyName = "NGAY_GD";
     this.NGAY_GD.HeaderText = "Ngày giao dịch";
     this.NGAY_GD.Name = "NGAY_GD";
     this.NGAY_GD.ReadOnly = true;
     this.NGAY_GD.Width = 150;
     //
     // LOAI_GD
     //
     this.LOAI_GD.DataPropertyName = "LOAI_GD";
     this.LOAI_GD.HeaderText = "Loại giao dịch";
     this.LOAI_GD.Name = "LOAI_GD";
     this.LOAI_GD.ReadOnly = true;
     this.LOAI_GD.Width = 150;
     //
     // SOTIEN_GD
     //
     this.SOTIEN_GD.DataPropertyName = "SOTIEN_GD";
     this.SOTIEN_GD.HeaderText = "Số tiền giao dịch";
     this.SOTIEN_GD.Name = "SOTIEN_GD";
     this.SOTIEN_GD.ReadOnly = true;
     this.SOTIEN_GD.Width = 140;
     //
     // processing_flag
     //
     this.processing_flag.DataPropertyName = "processing_flag";
     dataGridViewCellStyle7.Format = "dd/MM/YYYY";
     this.processing_flag.DefaultCellStyle = dataGridViewCellStyle7;
     this.processing_flag.HeaderText = "Processing_Flag";
     this.processing_flag.Name = "processing_flag";
     this.processing_flag.ReadOnly = true;
     this.processing_flag.Width = 130;
     //
     // btn_exit
     //
     this.btn_exit.BackColor = System.Drawing.Color.Transparent;
     this.btn_exit.ForeColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.btn_exit.Location = new System.Drawing.Point(589, 88);
     this.btn_exit.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btn_exit.Name = "btn_exit";
     this.btn_exit.Size = new System.Drawing.Size(75, 29);
     this.btn_exit.TabIndex = 249;
     this.btn_exit.Text = "Exit ";
     this.btn_exit.UseVisualStyleBackColor = false;
     this.btn_exit.Click += new System.EventHandler(this.btn_exit_Click);
     //
     // btn_search
     //
     this.btn_search.BackColor = System.Drawing.Color.Transparent;
     this.btn_search.ForeColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.btn_search.Location = new System.Drawing.Point(589, 12);
     this.btn_search.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btn_search.Name = "btn_search";
     this.btn_search.Size = new System.Drawing.Size(75, 29);
     this.btn_search.TabIndex = 247;
     this.btn_search.Text = "Search";
     this.btn_search.UseVisualStyleBackColor = false;
     this.btn_search.Click += new System.EventHandler(this.btn_search_Click);
     //
     // btn_clear
     //
     this.btn_clear.BackColor = System.Drawing.Color.Transparent;
     this.btn_clear.ForeColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.btn_clear.Location = new System.Drawing.Point(589, 49);
     this.btn_clear.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btn_clear.Name = "btn_clear";
     this.btn_clear.Size = new System.Drawing.Size(75, 29);
     this.btn_clear.TabIndex = 248;
     this.btn_clear.Text = "Clear";
     this.btn_clear.UseVisualStyleBackColor = false;
     this.btn_clear.Click += new System.EventHandler(this.btn_clear_Click);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(306, 19);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(109, 13);
     this.label11.TabIndex = 243;
     this.label11.Text = "Account Number :";
     //
     // Txt_accountnumber
     //
     this.Txt_accountnumber.Location = new System.Drawing.Point(421, 12);
     this.Txt_accountnumber.Name = "Txt_accountnumber";
     this.Txt_accountnumber.Size = new System.Drawing.Size(133, 20);
     this.Txt_accountnumber.TabIndex = 244;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(74, 22);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(88, 13);
     this.label1.TabIndex = 251;
     this.label1.Text = "Card Number :";
     //
     // Txt_cardnumber
     //
     this.Txt_cardnumber.Location = new System.Drawing.Point(168, 14);
     this.Txt_cardnumber.Name = "Txt_cardnumber";
     this.Txt_cardnumber.ReadOnly = true;
     this.Txt_cardnumber.Size = new System.Drawing.Size(133, 20);
     this.Txt_cardnumber.TabIndex = 252;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(121, 51);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(41, 13);
     this.label37.TabIndex = 253;
     this.label37.Text = "Name :";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(368, 82);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(47, 13);
     this.label4.TabIndex = 256;
     this.label4.Text = "To date:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(375, 49);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 257;
     this.label5.Text = "Status:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(105, 83);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(57, 13);
     this.label6.TabIndex = 258;
     this.label6.Text = "From date:";
     //
     // tb_fromdate
     //
     this.tb_fromdate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.tb_fromdate.Location = new System.Drawing.Point(168, 77);
     this.tb_fromdate.Name = "tb_fromdate";
     this.tb_fromdate.Size = new System.Drawing.Size(115, 20);
     this.tb_fromdate.TabIndex = 259;
     //
     // tb_todate
     //
     this.tb_todate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.tb_todate.Location = new System.Drawing.Point(421, 75);
     this.tb_todate.Name = "tb_todate";
     this.tb_todate.Size = new System.Drawing.Size(115, 20);
     this.tb_todate.TabIndex = 260;
     //
     // TxtName
     //
     this.TxtName.Location = new System.Drawing.Point(168, 45);
     this.TxtName.Name = "TxtName";
     this.TxtName.ReadOnly = true;
     this.TxtName.Size = new System.Drawing.Size(133, 20);
     this.TxtName.TabIndex = 261;
     //
     // TxtStatus
     //
     this.TxtStatus.Location = new System.Drawing.Point(421, 43);
     this.TxtStatus.Name = "TxtStatus";
     this.TxtStatus.ReadOnly = true;
     this.TxtStatus.Size = new System.Drawing.Size(133, 20);
     this.TxtStatus.TabIndex = 262;
     //
     // Frm_Transaction_Credit_NQH
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(712, 442);
     this.Controls.Add(this.TxtStatus);
     this.Controls.Add(this.btn_exit);
     this.Controls.Add(this.TxtName);
     this.Controls.Add(this.tb_todate);
     this.Controls.Add(this.tb_fromdate);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label37);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.Txt_cardnumber);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.btn_search);
     this.Controls.Add(this.btn_clear);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.Txt_accountnumber);
     this.Name = "Frm_Transaction_Credit_NQH";
     this.Text = "Frm_Transaction_Credit_NQH";
     this.Load += new System.EventHandler(this.Frm_Transaction_Credit_NQH_Load);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgv_Transaction_NQH)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label30 = new System.Windows.Forms.Label();
     this.tbBatchNumber = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.tbReceipt = new System.Windows.Forms.TextBox();
     this.tbCardNumber = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tbTransAmt = new System.Windows.Forms.TextBox();
     this.cbTransSign = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.dtTransDate = new System.Windows.Forms.DateTimePicker();
     this.label5 = new System.Windows.Forms.Label();
     this.btnAdd = new System.Windows.Forms.Button();
     this.btnClear = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.rtDescription = new System.Windows.Forms.RichTextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.ForeColor = System.Drawing.Color.Black;
     this.label30.Location = new System.Drawing.Point(22, 19);
     this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(78, 13);
     this.label30.TabIndex = 112;
     this.label30.Text = "Batch Number:";
     //
     // tbBatchNumber
     //
     this.tbBatchNumber.Location = new System.Drawing.Point(105, 16);
     this.tbBatchNumber.Margin = new System.Windows.Forms.Padding(2);
     this.tbBatchNumber.Name = "tbBatchNumber";
     this.tbBatchNumber.ReadOnly = true;
     this.tbBatchNumber.Size = new System.Drawing.Size(101, 20);
     this.tbBatchNumber.TabIndex = 111;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(28, 86);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(72, 13);
     this.label3.TabIndex = 107;
     this.label3.Text = "Card Number:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.ForeColor = System.Drawing.Color.Black;
     this.label11.Location = new System.Drawing.Point(35, 66);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(64, 13);
     this.label11.TabIndex = 108;
     this.label11.Text = "Receipt No:";
     //
     // tbReceipt
     //
     this.tbReceipt.Location = new System.Drawing.Point(105, 62);
     this.tbReceipt.Margin = new System.Windows.Forms.Padding(2);
     this.tbReceipt.MaxLength = 16;
     this.tbReceipt.Name = "tbReceipt";
     this.tbReceipt.Size = new System.Drawing.Size(212, 20);
     this.tbReceipt.TabIndex = 0;
     this.tbReceipt.Leave += new System.EventHandler(this.tbReceipt_Leave);
     //
     // tbCardNumber
     //
     this.tbCardNumber.Location = new System.Drawing.Point(105, 83);
     this.tbCardNumber.Margin = new System.Windows.Forms.Padding(2);
     this.tbCardNumber.MaxLength = 16;
     this.tbCardNumber.Name = "tbCardNumber";
     this.tbCardNumber.Size = new System.Drawing.Size(212, 20);
     this.tbCardNumber.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(342, 89);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(87, 13);
     this.label1.TabIndex = 115;
     this.label1.Text = "Transaction Amt:";
     //
     // tbTransAmt
     //
     this.tbTransAmt.Location = new System.Drawing.Point(435, 85);
     this.tbTransAmt.Margin = new System.Windows.Forms.Padding(2);
     this.tbTransAmt.MaxLength = 16;
     this.tbTransAmt.Name = "tbTransAmt";
     this.tbTransAmt.Size = new System.Drawing.Size(149, 20);
     this.tbTransAmt.TabIndex = 3;
     //
     // cbTransSign
     //
     this.cbTransSign.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbTransSign.FormattingEnabled = true;
     this.cbTransSign.Items.AddRange(new object[] {
     "Credit",
     "Debit"});
     this.cbTransSign.Location = new System.Drawing.Point(105, 107);
     this.cbTransSign.Name = "cbTransSign";
     this.cbTransSign.Size = new System.Drawing.Size(128, 21);
     this.cbTransSign.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(10, 109);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(90, 13);
     this.label2.TabIndex = 117;
     this.label2.Text = "Transaction Sign:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(35, 129);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(63, 13);
     this.label4.TabIndex = 119;
     this.label4.Text = "Description:";
     //
     // dtTransDate
     //
     this.dtTransDate.Enabled = false;
     this.dtTransDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtTransDate.Location = new System.Drawing.Point(435, 64);
     this.dtTransDate.Name = "dtTransDate";
     this.dtTransDate.Size = new System.Drawing.Size(81, 20);
     this.dtTransDate.TabIndex = 2;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(337, 68);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(92, 13);
     this.label5.TabIndex = 121;
     this.label5.Text = "Transaction Date:";
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(24, 246);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 6;
     this.btnAdd.Text = "Add new";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnClear
     //
     this.btnClear.Location = new System.Drawing.Point(115, 246);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(75, 23);
     this.btnClear.TabIndex = 7;
     this.btnClear.Text = "Clear";
     this.btnClear.UseVisualStyleBackColor = true;
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(509, 246);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 8;
     this.btnClose.Text = "Close";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // rtDescription
     //
     this.rtDescription.Location = new System.Drawing.Point(106, 131);
     this.rtDescription.MaxLength = 40;
     this.rtDescription.Name = "rtDescription";
     this.rtDescription.Size = new System.Drawing.Size(478, 94);
     this.rtDescription.TabIndex = 5;
     this.rtDescription.Text = "";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(520, 66);
     this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(71, 13);
     this.label6.TabIndex = 122;
     this.label6.Text = "(mm/dd/yyyy)";
     //
     // Frm_EnterPay
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(597, 289);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.rtDescription);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnClear);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.dtTransDate);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.cbTransSign);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.tbTransAmt);
     this.Controls.Add(this.label30);
     this.Controls.Add(this.tbBatchNumber);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.tbReceipt);
     this.Controls.Add(this.tbCardNumber);
     this.Name = "Frm_EnterPay";
     this.Text = "Frm_EnterPay";
     this.Load += new System.EventHandler(this.Frm_EnterPay_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPackageDataChange));
     this.lblPackageName = new System.Windows.Forms.Label();
     this.btncancel = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dtpPkgEndDate = new System.Windows.Forms.DateTimePicker();
     this.dtpPkgStartDate = new System.Windows.Forms.DateTimePicker();
     this.txtPkgAgencyCommission = new System.Windows.Forms.TextBox();
     this.lblPkgAgencyCommission = new System.Windows.Forms.Label();
     this.txtPkgBasePrice = new System.Windows.Forms.TextBox();
     this.lblPkgBasePrice = new System.Windows.Forms.Label();
     this.txtPkgDesc = new System.Windows.Forms.TextBox();
     this.lblPkgDesc = new System.Windows.Forms.Label();
     this.lblPkgEndDate = new System.Windows.Forms.Label();
     this.lblPkgStartDate = new System.Windows.Forms.Label();
     this.btnsave = new System.Windows.Forms.Button();
     this.txtPkgName = new System.Windows.Forms.TextBox();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // lblPackageName
     //
     this.lblPackageName.AutoSize = true;
     this.lblPackageName.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold);
     this.lblPackageName.ForeColor = System.Drawing.Color.Navy;
     this.lblPackageName.Location = new System.Drawing.Point(20, 57);
     this.lblPackageName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblPackageName.Name = "lblPackageName";
     this.lblPackageName.Size = new System.Drawing.Size(157, 24);
     this.lblPackageName.TabIndex = 26;
     this.lblPackageName.Text = "Package Name:";
     //
     // btncancel
     //
     this.btncancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btncancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.btncancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btncancel.Location = new System.Drawing.Point(324, 441);
     this.btncancel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btncancel.Name = "btncancel";
     this.btncancel.Size = new System.Drawing.Size(100, 34);
     this.btncancel.TabIndex = 1;
     this.btncancel.Text = "&Cancel";
     this.btncancel.UseVisualStyleBackColor = false;
     this.btncancel.Click += new System.EventHandler(this.btncancel_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dtpPkgEndDate);
     this.groupBox1.Controls.Add(this.dtpPkgStartDate);
     this.groupBox1.Controls.Add(this.txtPkgAgencyCommission);
     this.groupBox1.Controls.Add(this.lblPkgAgencyCommission);
     this.groupBox1.Controls.Add(this.txtPkgBasePrice);
     this.groupBox1.Controls.Add(this.lblPkgBasePrice);
     this.groupBox1.Controls.Add(this.txtPkgDesc);
     this.groupBox1.Controls.Add(this.lblPkgDesc);
     this.groupBox1.Controls.Add(this.lblPkgEndDate);
     this.groupBox1.Controls.Add(this.lblPkgStartDate);
     this.groupBox1.Controls.Add(this.btnsave);
     this.groupBox1.Controls.Add(this.txtPkgName);
     this.groupBox1.Controls.Add(this.lblPackageName);
     this.groupBox1.Location = new System.Drawing.Point(32, 28);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.groupBox1.Size = new System.Drawing.Size(684, 396);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     //
     // dtpPkgEndDate
     //
     this.dtpPkgEndDate.CustomFormat = "dd-MMM-yyyy";
     this.dtpPkgEndDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold);
     this.dtpPkgEndDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpPkgEndDate.Location = new System.Drawing.Point(239, 154);
     this.dtpPkgEndDate.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.dtpPkgEndDate.MaxDate = new System.DateTime(2020, 12, 31, 0, 0, 0, 0);
     this.dtpPkgEndDate.MinDate = new System.DateTime(1970, 1, 1, 0, 0, 0, 0);
     this.dtpPkgEndDate.Name = "dtpPkgEndDate";
     this.dtpPkgEndDate.Size = new System.Drawing.Size(315, 28);
     this.dtpPkgEndDate.TabIndex = 2;
     this.dtpPkgEndDate.Tag = "End Date";
     //
     // dtpPkgStartDate
     //
     this.dtpPkgStartDate.CustomFormat = "dd-MMM-yyyy";
     this.dtpPkgStartDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold);
     this.dtpPkgStartDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpPkgStartDate.Location = new System.Drawing.Point(239, 102);
     this.dtpPkgStartDate.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.dtpPkgStartDate.MaxDate = new System.DateTime(2020, 12, 31, 0, 0, 0, 0);
     this.dtpPkgStartDate.MinDate = new System.DateTime(1970, 1, 1, 0, 0, 0, 0);
     this.dtpPkgStartDate.Name = "dtpPkgStartDate";
     this.dtpPkgStartDate.Size = new System.Drawing.Size(315, 28);
     this.dtpPkgStartDate.TabIndex = 1;
     this.dtpPkgStartDate.Tag = "Start date";
     //
     // txtPkgAgencyCommission
     //
     this.txtPkgAgencyCommission.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPkgAgencyCommission.ForeColor = System.Drawing.Color.MidnightBlue;
     this.txtPkgAgencyCommission.Location = new System.Drawing.Point(239, 311);
     this.txtPkgAgencyCommission.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtPkgAgencyCommission.Name = "txtPkgAgencyCommission";
     this.txtPkgAgencyCommission.Size = new System.Drawing.Size(315, 28);
     this.txtPkgAgencyCommission.TabIndex = 5;
     this.txtPkgAgencyCommission.Tag = "Agency Commission";
     //
     // lblPkgAgencyCommission
     //
     this.lblPkgAgencyCommission.AutoSize = true;
     this.lblPkgAgencyCommission.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPkgAgencyCommission.ForeColor = System.Drawing.Color.Navy;
     this.lblPkgAgencyCommission.Location = new System.Drawing.Point(20, 315);
     this.lblPkgAgencyCommission.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblPkgAgencyCommission.Name = "lblPkgAgencyCommission";
     this.lblPkgAgencyCommission.Size = new System.Drawing.Size(201, 24);
     this.lblPkgAgencyCommission.TabIndex = 42;
     this.lblPkgAgencyCommission.Text = "Agency Commission";
     this.lblPkgAgencyCommission.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtPkgBasePrice
     //
     this.txtPkgBasePrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPkgBasePrice.ForeColor = System.Drawing.Color.MidnightBlue;
     this.txtPkgBasePrice.Location = new System.Drawing.Point(239, 260);
     this.txtPkgBasePrice.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtPkgBasePrice.Name = "txtPkgBasePrice";
     this.txtPkgBasePrice.Size = new System.Drawing.Size(315, 28);
     this.txtPkgBasePrice.TabIndex = 4;
     this.txtPkgBasePrice.Tag = "Base Price";
     //
     // lblPkgBasePrice
     //
     this.lblPkgBasePrice.AutoSize = true;
     this.lblPkgBasePrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPkgBasePrice.ForeColor = System.Drawing.Color.Navy;
     this.lblPkgBasePrice.Location = new System.Drawing.Point(20, 263);
     this.lblPkgBasePrice.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblPkgBasePrice.Name = "lblPkgBasePrice";
     this.lblPkgBasePrice.Size = new System.Drawing.Size(110, 24);
     this.lblPkgBasePrice.TabIndex = 40;
     this.lblPkgBasePrice.Text = "Base Price";
     this.lblPkgBasePrice.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtPkgDesc
     //
     this.txtPkgDesc.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPkgDesc.ForeColor = System.Drawing.Color.MidnightBlue;
     this.txtPkgDesc.Location = new System.Drawing.Point(239, 208);
     this.txtPkgDesc.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtPkgDesc.Name = "txtPkgDesc";
     this.txtPkgDesc.Size = new System.Drawing.Size(315, 28);
     this.txtPkgDesc.TabIndex = 3;
     this.txtPkgDesc.Tag = "Description";
     //
     // lblPkgDesc
     //
     this.lblPkgDesc.AutoSize = true;
     this.lblPkgDesc.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPkgDesc.ForeColor = System.Drawing.Color.Navy;
     this.lblPkgDesc.Location = new System.Drawing.Point(20, 212);
     this.lblPkgDesc.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblPkgDesc.Name = "lblPkgDesc";
     this.lblPkgDesc.Size = new System.Drawing.Size(115, 24);
     this.lblPkgDesc.TabIndex = 38;
     this.lblPkgDesc.Text = "Description";
     this.lblPkgDesc.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblPkgEndDate
     //
     this.lblPkgEndDate.AutoSize = true;
     this.lblPkgEndDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPkgEndDate.ForeColor = System.Drawing.Color.Navy;
     this.lblPkgEndDate.Location = new System.Drawing.Point(20, 160);
     this.lblPkgEndDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblPkgEndDate.Name = "lblPkgEndDate";
     this.lblPkgEndDate.Size = new System.Drawing.Size(96, 24);
     this.lblPkgEndDate.TabIndex = 36;
     this.lblPkgEndDate.Text = "End Date";
     this.lblPkgEndDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblPkgStartDate
     //
     this.lblPkgStartDate.AutoSize = true;
     this.lblPkgStartDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPkgStartDate.ForeColor = System.Drawing.Color.Navy;
     this.lblPkgStartDate.Location = new System.Drawing.Point(20, 108);
     this.lblPkgStartDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblPkgStartDate.Name = "lblPkgStartDate";
     this.lblPkgStartDate.Size = new System.Drawing.Size(99, 24);
     this.lblPkgStartDate.TabIndex = 34;
     this.lblPkgStartDate.Text = "Start Date";
     this.lblPkgStartDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnsave
     //
     this.btnsave.BackColor = System.Drawing.Color.SteelBlue;
     this.btnsave.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnsave.ForeColor = System.Drawing.Color.White;
     this.btnsave.Location = new System.Drawing.Point(575, 52);
     this.btnsave.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btnsave.Name = "btnsave";
     this.btnsave.Size = new System.Drawing.Size(87, 34);
     this.btnsave.TabIndex = 6;
     this.btnsave.Text = "&Save";
     this.btnsave.UseVisualStyleBackColor = false;
     this.btnsave.Click += new System.EventHandler(this.btnsave_Click);
     //
     // txtPkgName
     //
     this.txtPkgName.BackColor = System.Drawing.Color.White;
     this.txtPkgName.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold);
     this.txtPkgName.ForeColor = System.Drawing.Color.MidnightBlue;
     this.txtPkgName.Location = new System.Drawing.Point(239, 53);
     this.txtPkgName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtPkgName.Name = "txtPkgName";
     this.txtPkgName.Size = new System.Drawing.Size(315, 28);
     this.txtPkgName.TabIndex = 0;
     this.txtPkgName.Tag = "Package Name";
     //
     // frmPackageDataChange
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.LightSkyBlue;
     this.ClientSize = new System.Drawing.Size(748, 490);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.btncancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.MaximizeBox = false;
     this.Name = "frmPackageDataChange";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Add / Modify Product";
     this.Load += new System.EventHandler(this.frmPackageDataChange_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 50
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.pnInfo = new System.Windows.Forms.Panel();
     this.dgvThongTin = new System.Windows.Forms.DataGridView();
     this.tbGhiChu = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lbNgayGio = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.panel12 = new System.Windows.Forms.Panel();
     this.label47 = new System.Windows.Forms.Label();
     this.pbHoanTat = new System.Windows.Forms.PictureBox();
     this.pnTitle = new System.Windows.Forms.Panel();
     this.lbSelect = new System.Windows.Forms.Label();
     this.lbTitle = new System.Windows.Forms.Label();
     this.pbTitle = new System.Windows.Forms.PictureBox();
     this.pnDetail = new System.Windows.Forms.Panel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tbMa = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.tbTong = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.ttDetail = new System.Windows.Forms.ToolTip(this.components);
     this.dtpFilter = new System.Windows.Forms.DateTimePicker();
     this.colId = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colIdSanPham = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSanPham = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colGia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSoLuong = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colThanhTien = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pnInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvThongTin)).BeginInit();
     this.panel12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbHoanTat)).BeginInit();
     this.pnTitle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbTitle)).BeginInit();
     this.pnDetail.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // pnInfo
     //
     this.pnInfo.Controls.Add(this.dgvThongTin);
     this.pnInfo.ForeColor = System.Drawing.Color.Black;
     this.pnInfo.Location = new System.Drawing.Point(20, 40);
     this.pnInfo.Name = "pnInfo";
     this.pnInfo.Size = new System.Drawing.Size(950, 330);
     this.pnInfo.TabIndex = 56;
     //
     // dgvThongTin
     //
     this.dgvThongTin.AllowUserToAddRows = false;
     this.dgvThongTin.AllowUserToDeleteRows = false;
     this.dgvThongTin.AllowUserToResizeRows = false;
     this.dgvThongTin.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvThongTin.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colId,
     this.colIdSanPham,
     this.colSanPham,
     this.colGia,
     this.colSoLuong,
     this.colThanhTien});
     this.dgvThongTin.Location = new System.Drawing.Point(3, 3);
     this.dgvThongTin.MultiSelect = false;
     this.dgvThongTin.Name = "dgvThongTin";
     this.dgvThongTin.ReadOnly = true;
     this.dgvThongTin.RowHeadersVisible = false;
     this.dgvThongTin.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvThongTin.ShowCellToolTips = false;
     this.dgvThongTin.Size = new System.Drawing.Size(944, 324);
     this.dgvThongTin.TabIndex = 1;
     //
     // tbGhiChu
     //
     this.tbGhiChu.Location = new System.Drawing.Point(331, 30);
     this.tbGhiChu.MaxLength = 200;
     this.tbGhiChu.Multiline = true;
     this.tbGhiChu.Name = "tbGhiChu";
     this.tbGhiChu.ReadOnly = true;
     this.tbGhiChu.Size = new System.Drawing.Size(581, 66);
     this.tbGhiChu.TabIndex = 8;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(264, 33);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(61, 16);
     this.label4.TabIndex = 97;
     this.label4.Text = "Ghi chú:";
     //
     // lbNgayGio
     //
     this.lbNgayGio.AutoSize = true;
     this.lbNgayGio.ForeColor = System.Drawing.Color.Black;
     this.lbNgayGio.Location = new System.Drawing.Point(102, 18);
     this.lbNgayGio.Name = "lbNgayGio";
     this.lbNgayGio.Size = new System.Drawing.Size(137, 16);
     this.lbNgayGio.TabIndex = 140;
     this.lbNgayGio.Text = "dd/MM/yyyy - hh:mm";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(36, 18);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(68, 16);
     this.label1.TabIndex = 122;
     this.label1.Text = "Ngày giờ:";
     //
     // panel12
     //
     this.panel12.Controls.Add(this.label47);
     this.panel12.Controls.Add(this.pbHoanTat);
     this.panel12.Location = new System.Drawing.Point(432, 100);
     this.panel12.Name = "panel12";
     this.panel12.Size = new System.Drawing.Size(70, 60);
     this.panel12.TabIndex = 128;
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(7, 68);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(0, 16);
     this.label47.TabIndex = 2;
     //
     // pbHoanTat
     //
     this.pbHoanTat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbHoanTat.Location = new System.Drawing.Point(10, 10);
     this.pbHoanTat.Name = "pbHoanTat";
     this.pbHoanTat.Size = new System.Drawing.Size(50, 39);
     this.pbHoanTat.TabIndex = 1;
     this.pbHoanTat.TabStop = false;
     this.pbHoanTat.Click += new System.EventHandler(this.pbHoanTat_Click);
     this.pbHoanTat.MouseEnter += new System.EventHandler(this.pbHoanTat_MouseEnter);
     this.pbHoanTat.MouseLeave += new System.EventHandler(this.pbHoanTat_MouseLeave);
     //
     // pnTitle
     //
     this.pnTitle.Controls.Add(this.lbSelect);
     this.pnTitle.Controls.Add(this.lbTitle);
     this.pnTitle.Controls.Add(this.pbTitle);
     this.pnTitle.Location = new System.Drawing.Point(381, 3);
     this.pnTitle.Name = "pnTitle";
     this.pnTitle.Size = new System.Drawing.Size(249, 38);
     this.pnTitle.TabIndex = 55;
     //
     // lbSelect
     //
     this.lbSelect.AutoSize = true;
     this.lbSelect.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbSelect.ForeColor = System.Drawing.Color.Orange;
     this.lbSelect.Location = new System.Drawing.Point(50, 8);
     this.lbSelect.Name = "lbSelect";
     this.lbSelect.Size = new System.Drawing.Size(122, 22);
     this.lbSelect.TabIndex = 1;
     this.lbSelect.Text = "NHẬP HÀNG";
     //
     // lbTitle
     //
     this.lbTitle.AutoSize = true;
     this.lbTitle.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTitle.ForeColor = System.Drawing.Color.Gray;
     this.lbTitle.Location = new System.Drawing.Point(118, 8);
     this.lbTitle.Name = "lbTitle";
     this.lbTitle.Size = new System.Drawing.Size(112, 22);
     this.lbTitle.TabIndex = 2;
     this.lbTitle.Text = "KHO HÀNG";
     this.lbTitle.TextAlign = System.Drawing.ContentAlignment.TopRight;
     this.lbTitle.Visible = false;
     //
     // pbTitle
     //
     this.pbTitle.Cursor = System.Windows.Forms.Cursors.Default;
     this.pbTitle.Location = new System.Drawing.Point(10, 0);
     this.pbTitle.Name = "pbTitle";
     this.pbTitle.Size = new System.Drawing.Size(36, 36);
     this.pbTitle.TabIndex = 1;
     this.pbTitle.TabStop = false;
     //
     // pnDetail
     //
     this.pnDetail.Controls.Add(this.groupBox1);
     this.pnDetail.ForeColor = System.Drawing.Color.Black;
     this.pnDetail.Location = new System.Drawing.Point(20, 369);
     this.pnDetail.Name = "pnDetail";
     this.pnDetail.Size = new System.Drawing.Size(950, 190);
     this.pnDetail.TabIndex = 57;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.tbMa);
     this.groupBox1.Controls.Add(this.label14);
     this.groupBox1.Controls.Add(this.tbTong);
     this.groupBox1.Controls.Add(this.label10);
     this.groupBox1.Controls.Add(this.tbGhiChu);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.panel12);
     this.groupBox1.ForeColor = System.Drawing.Color.Orange;
     this.groupBox1.Location = new System.Drawing.Point(7, 7);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(940, 170);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Chi tiết";
     //
     // tbMa
     //
     this.tbMa.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbMa.Location = new System.Drawing.Point(87, 30);
     this.tbMa.MaxLength = 10;
     this.tbMa.Name = "tbMa";
     this.tbMa.ReadOnly = true;
     this.tbMa.Size = new System.Drawing.Size(73, 26);
     this.tbMa.TabIndex = 4;
     this.tbMa.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.ForeColor = System.Drawing.Color.Black;
     this.label14.Location = new System.Drawing.Point(50, 35);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(31, 16);
     this.label14.TabIndex = 4;
     this.label14.Text = "Mã:";
     //
     // tbTong
     //
     this.tbTong.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbTong.Location = new System.Drawing.Point(87, 70);
     this.tbTong.MaxLength = 11;
     this.tbTong.Name = "tbTong";
     this.tbTong.ReadOnly = true;
     this.tbTong.Size = new System.Drawing.Size(127, 26);
     this.tbTong.TabIndex = 6;
     this.tbTong.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.ForeColor = System.Drawing.Color.Black;
     this.label10.Location = new System.Drawing.Point(36, 75);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(45, 16);
     this.label10.TabIndex = 106;
     this.label10.Text = "Tổng:";
     //
     // ttDetail
     //
     this.ttDetail.AutoPopDelay = 10000;
     this.ttDetail.InitialDelay = 500;
     this.ttDetail.ReshowDelay = 100;
     //
     // dtpFilter
     //
     this.dtpFilter.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpFilter.Location = new System.Drawing.Point(236, 13);
     this.dtpFilter.Name = "dtpFilter";
     this.dtpFilter.Size = new System.Drawing.Size(150, 23);
     this.dtpFilter.TabIndex = 141;
     this.dtpFilter.Visible = false;
     //
     // colId
     //
     this.colId.Frozen = true;
     this.colId.HeaderText = "Id";
     this.colId.Name = "colId";
     this.colId.ReadOnly = true;
     this.colId.Visible = false;
     this.colId.Width = 5;
     //
     // colIdSanPham
     //
     this.colIdSanPham.Frozen = true;
     this.colIdSanPham.HeaderText = "IdSanPham";
     this.colIdSanPham.Name = "colIdSanPham";
     this.colIdSanPham.ReadOnly = true;
     this.colIdSanPham.Visible = false;
     this.colIdSanPham.Width = 5;
     //
     // colSanPham
     //
     this.colSanPham.Frozen = true;
     this.colSanPham.HeaderText = "Sản phẩm";
     this.colSanPham.MaxInputLength = 50;
     this.colSanPham.MinimumWidth = 300;
     this.colSanPham.Name = "colSanPham";
     this.colSanPham.ReadOnly = true;
     this.colSanPham.Width = 300;
     //
     // colGia
     //
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle1.Format = "N0";
     dataGridViewCellStyle1.NullValue = "0";
     this.colGia.DefaultCellStyle = dataGridViewCellStyle1;
     this.colGia.HeaderText = "Giá";
     this.colGia.MaxInputLength = 11;
     this.colGia.MinimumWidth = 120;
     this.colGia.Name = "colGia";
     this.colGia.ReadOnly = true;
     this.colGia.Width = 120;
     //
     // colSoLuong
     //
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.Format = "N0";
     dataGridViewCellStyle2.NullValue = "0";
     this.colSoLuong.DefaultCellStyle = dataGridViewCellStyle2;
     this.colSoLuong.HeaderText = "Số lượng";
     this.colSoLuong.MaxInputLength = 3;
     this.colSoLuong.MinimumWidth = 100;
     this.colSoLuong.Name = "colSoLuong";
     this.colSoLuong.ReadOnly = true;
     //
     // colThanhTien
     //
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle3.Format = "N0";
     dataGridViewCellStyle3.NullValue = "0";
     this.colThanhTien.DefaultCellStyle = dataGridViewCellStyle3;
     this.colThanhTien.HeaderText = "Thành tiền";
     this.colThanhTien.MaxInputLength = 11;
     this.colThanhTien.MinimumWidth = 120;
     this.colThanhTien.Name = "colThanhTien";
     this.colThanhTien.ReadOnly = true;
     this.colThanhTien.Width = 120;
     //
     // UcDetail
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.dtpFilter);
     this.Controls.Add(this.pnTitle);
     this.Controls.Add(this.lbNgayGio);
     this.Controls.Add(this.pnInfo);
     this.Controls.Add(this.pnDetail);
     this.Controls.Add(this.label1);
     this.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "UcDetail";
     this.Size = new System.Drawing.Size(1000, 600);
     this.Load += new System.EventHandler(this.UcDetail_Load);
     this.pnInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvThongTin)).EndInit();
     this.panel12.ResumeLayout(false);
     this.panel12.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbHoanTat)).EndInit();
     this.pnTitle.ResumeLayout(false);
     this.pnTitle.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbTitle)).EndInit();
     this.pnDetail.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Find");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("InExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Edit");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UpSap");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Edit");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UpSap");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Find");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("InExcel");
     Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量数据", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRODUCTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAPSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_AUDITOR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_HEADER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UPLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ACCOUNTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_STOVENO", 0, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_STOVENO", 0, true);
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_NETWEIGHT", 9, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_NETWEIGHT", 9, true);
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.uToolBar = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ugpData = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.pnlHint = new System.Windows.Forms.Panel();
     this.lstHint2 = new System.Windows.Forms.ListBox();
     this.lstHint1 = new System.Windows.Forms.ListBox();
     this.pnlData = new System.Windows.Forms.Panel();
     this.pnlDataRight = new System.Windows.Forms.Panel();
     this.label9 = new System.Windows.Forms.Label();
     this.cmbHead = new System.Windows.Forms.ComboBox();
     this.label8 = new System.Windows.Forms.Label();
     this.txtZl = new System.Windows.Forms.TextBox();
     this.txtKcd = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.txtGc = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtWlmc = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txtWlbh = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtHxmh = new System.Windows.Forms.TextBox();
     this.txtScdd = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtLh = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.dteJzrq = new System.Windows.Forms.DateTimePicker();
     this.label1 = new System.Windows.Forms.Label();
     this.pnlDataLeft = new System.Windows.Forms.Panel();
     this.btnDel = new System.Windows.Forms.Button();
     this.qTxtZzh = new System.Windows.Forms.TextBox();
     this.qDteEnd = new System.Windows.Forms.DateTimePicker();
     this.label26 = new System.Windows.Forms.Label();
     this.lblScr = new System.Windows.Forms.Label();
     this.qDteBegin = new System.Windows.Forms.DateTimePicker();
     this.label25 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.qTxtScdd = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.panel5 = new System.Windows.Forms.Panel();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.textBox11 = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.textBox12 = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.textBox13 = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox14 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.textBox15 = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.textBox16 = new System.Windows.Forms.TextBox();
     this.textBox17 = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.textBox18 = new System.Windows.Forms.TextBox();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.label20 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.label22 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.uGridData = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uToolBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ugpData)).BeginInit();
     this.ugpData.SuspendLayout();
     this.ultraExpandableGroupBoxPanel1.SuspendLayout();
     this.pnlHint.SuspendLayout();
     this.pnlData.SuspendLayout();
     this.pnlDataRight.SuspendLayout();
     this.pnlDataLeft.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uGridData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(992, 26);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1_Fill_Panel, null);
     this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 26);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(992, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // _panel1_Toolbars_Dock_Area_Left
     //
     this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Left, null);
     this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 26);
     this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
     this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Left, null);
     //
     // uToolBar
     //
     this.uToolBar.DesignerFlags = 1;
     this.uToolBar.DockWithinContainer = this.panel1;
     this.uToolBar.ShowFullMenusDelay = 500;
     this.uToolBar.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     buttonTool11.InstanceProps.IsFirstInGroup = true;
     buttonTool4.InstanceProps.IsFirstInGroup = true;
     buttonTool5.InstanceProps.IsFirstInGroup = true;
     buttonTool6.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool7,
     buttonTool11,
     buttonTool4,
     buttonTool5,
     buttonTool6});
     ultraToolbar1.Text = "UltraToolbar1";
     this.uToolBar.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     buttonTool1.SharedPropsInternal.Caption = "确认修改";
     buttonTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool2.SharedPropsInternal.Caption = "上传SAP";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool3.SharedPropsInternal.Caption = "导出";
     buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool8.SharedPropsInternal.Caption = "查询";
     buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool12.SharedPropsInternal.Caption = "导入";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.uToolBar.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool1,
     buttonTool2,
     buttonTool3,
     buttonTool8,
     buttonTool12});
     this.uToolBar.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.uToolBar_ToolClick);
     //
     // _panel1_Toolbars_Dock_Area_Right
     //
     this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Right, null);
     this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 26);
     this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
     this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Right, null);
     //
     // _panel1_Toolbars_Dock_Area_Top
     //
     this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Top, null);
     this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
     this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 26);
     this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Top, null);
     //
     // _panel1_Toolbars_Dock_Area_Bottom
     //
     this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Bottom, null);
     this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 26);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // ugpData
     //
     this.ugpData.Controls.Add(this.ultraExpandableGroupBoxPanel1);
     this.coreBind.SetDatabasecommand(this.ugpData, null);
     this.ugpData.Dock = System.Windows.Forms.DockStyle.Top;
     this.ugpData.ExpandedSize = new System.Drawing.Size(992, 226);
     this.ugpData.Location = new System.Drawing.Point(0, 26);
     this.ugpData.Name = "ugpData";
     this.ugpData.Size = new System.Drawing.Size(992, 226);
     this.ugpData.TabIndex = 1;
     this.ugpData.Text = "详细信息";
     this.coreBind.SetVerification(this.ugpData, null);
     this.ugpData.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2003;
     //
     // ultraExpandableGroupBoxPanel1
     //
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.pnlHint);
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.pnlData);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel1, null);
     this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 22);
     this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
     this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(988, 202);
     this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel1, null);
     //
     // pnlHint
     //
     this.pnlHint.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlHint.Controls.Add(this.lstHint2);
     this.pnlHint.Controls.Add(this.lstHint1);
     this.coreBind.SetDatabasecommand(this.pnlHint, null);
     this.pnlHint.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlHint.Location = new System.Drawing.Point(0, 121);
     this.pnlHint.Name = "pnlHint";
     this.pnlHint.Size = new System.Drawing.Size(988, 81);
     this.pnlHint.TabIndex = 4;
     this.coreBind.SetVerification(this.pnlHint, null);
     //
     // lstHint2
     //
     this.coreBind.SetDatabasecommand(this.lstHint2, null);
     this.lstHint2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lstHint2.FormattingEnabled = true;
     this.lstHint2.ItemHeight = 12;
     this.lstHint2.Location = new System.Drawing.Point(355, 0);
     this.lstHint2.Name = "lstHint2";
     this.lstHint2.ScrollAlwaysVisible = true;
     this.lstHint2.Size = new System.Drawing.Size(633, 76);
     this.lstHint2.TabIndex = 5;
     this.coreBind.SetVerification(this.lstHint2, null);
     //
     // lstHint1
     //
     this.coreBind.SetDatabasecommand(this.lstHint1, null);
     this.lstHint1.Dock = System.Windows.Forms.DockStyle.Left;
     this.lstHint1.FormattingEnabled = true;
     this.lstHint1.ItemHeight = 12;
     this.lstHint1.Location = new System.Drawing.Point(0, 0);
     this.lstHint1.Name = "lstHint1";
     this.lstHint1.ScrollAlwaysVisible = true;
     this.lstHint1.Size = new System.Drawing.Size(355, 76);
     this.lstHint1.TabIndex = 4;
     this.coreBind.SetVerification(this.lstHint1, null);
     //
     // pnlData
     //
     this.pnlData.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlData.Controls.Add(this.pnlDataRight);
     this.pnlData.Controls.Add(this.pnlDataLeft);
     this.coreBind.SetDatabasecommand(this.pnlData, null);
     this.pnlData.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlData.Location = new System.Drawing.Point(0, 0);
     this.pnlData.Name = "pnlData";
     this.pnlData.Size = new System.Drawing.Size(988, 121);
     this.pnlData.TabIndex = 2;
     this.coreBind.SetVerification(this.pnlData, null);
     //
     // pnlDataRight
     //
     this.pnlDataRight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlDataRight.Controls.Add(this.label9);
     this.pnlDataRight.Controls.Add(this.cmbHead);
     this.pnlDataRight.Controls.Add(this.label8);
     this.pnlDataRight.Controls.Add(this.txtZl);
     this.pnlDataRight.Controls.Add(this.txtKcd);
     this.pnlDataRight.Controls.Add(this.label7);
     this.pnlDataRight.Controls.Add(this.txtGc);
     this.pnlDataRight.Controls.Add(this.label6);
     this.pnlDataRight.Controls.Add(this.txtWlmc);
     this.pnlDataRight.Controls.Add(this.label5);
     this.pnlDataRight.Controls.Add(this.txtWlbh);
     this.pnlDataRight.Controls.Add(this.label4);
     this.pnlDataRight.Controls.Add(this.txtHxmh);
     this.pnlDataRight.Controls.Add(this.txtScdd);
     this.pnlDataRight.Controls.Add(this.label11);
     this.pnlDataRight.Controls.Add(this.txtLh);
     this.pnlDataRight.Controls.Add(this.label3);
     this.pnlDataRight.Controls.Add(this.label2);
     this.pnlDataRight.Controls.Add(this.dteJzrq);
     this.pnlDataRight.Controls.Add(this.label1);
     this.coreBind.SetDatabasecommand(this.pnlDataRight, null);
     this.pnlDataRight.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlDataRight.Location = new System.Drawing.Point(355, 0);
     this.pnlDataRight.Name = "pnlDataRight";
     this.pnlDataRight.Size = new System.Drawing.Size(633, 121);
     this.pnlDataRight.TabIndex = 4;
     this.coreBind.SetVerification(this.pnlDataRight, null);
     //
     // label9
     //
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.ForeColor = System.Drawing.Color.Black;
     this.label9.Location = new System.Drawing.Point(512, 51);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(34, 24);
     this.label9.TabIndex = 629;
     this.label9.Text = "重量";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label9, null);
     //
     // cmbHead
     //
     this.coreBind.SetDatabasecommand(this.cmbHead, null);
     this.cmbHead.FormattingEnabled = true;
     this.cmbHead.Items.AddRange(new object[] {
     "甲夜",
     "甲早",
     "甲中",
     "乙夜",
     "乙早",
     "乙中",
     "丙夜",
     "丙早",
     "丙中",
     "丁夜",
     "丁早",
     "丁中"});
     this.cmbHead.Location = new System.Drawing.Point(412, 21);
     this.cmbHead.Name = "cmbHead";
     this.cmbHead.Size = new System.Drawing.Size(121, 20);
     this.cmbHead.TabIndex = 628;
     this.coreBind.SetVerification(this.cmbHead, null);
     //
     // label8
     //
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.ForeColor = System.Drawing.Color.Red;
     this.label8.Location = new System.Drawing.Point(361, 17);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(45, 24);
     this.label8.TabIndex = 627;
     this.label8.Text = "头文本";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label8, null);
     //
     // txtZl
     //
     this.txtZl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.txtZl, null);
     this.txtZl.Location = new System.Drawing.Point(546, 53);
     this.txtZl.Name = "txtZl";
     this.txtZl.ReadOnly = true;
     this.txtZl.Size = new System.Drawing.Size(73, 21);
     this.txtZl.TabIndex = 625;
     this.coreBind.SetVerification(this.txtZl, null);
     //
     // txtKcd
     //
     this.coreBind.SetDatabasecommand(this.txtKcd, null);
     this.txtKcd.Location = new System.Drawing.Point(424, 52);
     this.txtKcd.Name = "txtKcd";
     this.txtKcd.Size = new System.Drawing.Size(63, 21);
     this.txtKcd.TabIndex = 207;
     this.coreBind.SetVerification(this.txtKcd, null);
     this.txtKcd.Leave += new System.EventHandler(this.txtKcd_Leave);
     //
     // label7
     //
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.ForeColor = System.Drawing.Color.Red;
     this.label7.Location = new System.Drawing.Point(379, 50);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(50, 24);
     this.label7.TabIndex = 618;
     this.label7.Text = "库存地";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label7, null);
     //
     // txtGc
     //
     this.coreBind.SetDatabasecommand(this.txtGc, null);
     this.txtGc.Location = new System.Drawing.Point(276, 53);
     this.txtGc.Name = "txtGc";
     this.txtGc.Size = new System.Drawing.Size(66, 21);
     this.txtGc.TabIndex = 206;
     this.coreBind.SetVerification(this.txtGc, null);
     this.txtGc.Leave += new System.EventHandler(this.txtGc_Leave);
     //
     // label6
     //
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.ForeColor = System.Drawing.Color.Red;
     this.label6.Location = new System.Drawing.Point(230, 50);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(45, 24);
     this.label6.TabIndex = 616;
     this.label6.Text = "工  厂";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label6, null);
     //
     // txtWlmc
     //
     this.txtWlmc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.txtWlmc, null);
     this.txtWlmc.Location = new System.Drawing.Point(405, 89);
     this.txtWlmc.Name = "txtWlmc";
     this.txtWlmc.ReadOnly = true;
     this.txtWlmc.Size = new System.Drawing.Size(215, 21);
     this.txtWlmc.TabIndex = 615;
     this.coreBind.SetVerification(this.txtWlmc, null);
     //
     // label5
     //
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(350, 86);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(54, 24);
     this.label5.TabIndex = 614;
     this.label5.Text = "物料描述";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label5, null);
     //
     // txtWlbh
     //
     this.txtWlbh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.txtWlbh, null);
     this.txtWlbh.Location = new System.Drawing.Point(237, 89);
     this.txtWlbh.Name = "txtWlbh";
     this.txtWlbh.ReadOnly = true;
     this.txtWlbh.Size = new System.Drawing.Size(107, 21);
     this.txtWlbh.TabIndex = 613;
     this.coreBind.SetVerification(this.txtWlbh, null);
     //
     // label4
     //
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(179, 87);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(62, 24);
     this.label4.TabIndex = 612;
     this.label4.Text = "物料编码";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label4, null);
     //
     // txtHxmh
     //
     this.txtHxmh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.txtHxmh, null);
     this.txtHxmh.Location = new System.Drawing.Point(100, 89);
     this.txtHxmh.Name = "txtHxmh";
     this.txtHxmh.ReadOnly = true;
     this.txtHxmh.Size = new System.Drawing.Size(73, 21);
     this.txtHxmh.TabIndex = 611;
     this.coreBind.SetVerification(this.txtHxmh, null);
     //
     // txtScdd
     //
     this.coreBind.SetDatabasecommand(this.txtScdd, null);
     this.txtScdd.Location = new System.Drawing.Point(64, 53);
     this.txtScdd.Name = "txtScdd";
     this.txtScdd.Size = new System.Drawing.Size(113, 21);
     this.txtScdd.TabIndex = 205;
     this.coreBind.SetVerification(this.txtScdd, null);
     this.txtScdd.Leave += new System.EventHandler(this.txtScdd_Leave);
     //
     // label11
     //
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.ForeColor = System.Drawing.Color.Red;
     this.label11.Location = new System.Drawing.Point(9, 51);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 24);
     this.label11.TabIndex = 609;
     this.label11.Text = "生产订单";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label11, null);
     //
     // txtLh
     //
     this.coreBind.SetDatabasecommand(this.txtLh, null);
     this.txtLh.Location = new System.Drawing.Point(237, 19);
     this.txtLh.Name = "txtLh";
     this.txtLh.Size = new System.Drawing.Size(96, 21);
     this.txtLh.TabIndex = 204;
     this.coreBind.SetVerification(this.txtLh, null);
     this.txtLh.Leave += new System.EventHandler(this.txtLh_Leave);
     //
     // label3
     //
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(6, 87);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(96, 24);
     this.label3.TabIndex = 605;
     this.label3.Text = "生产订单行项目";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label3, null);
     //
     // label2
     //
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(188, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(41, 24);
     this.label2.TabIndex = 604;
     this.label2.Text = "炉 号";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label2, null);
     //
     // dteJzrq
     //
     this.coreBind.SetDatabasecommand(this.dteJzrq, null);
     this.dteJzrq.Location = new System.Drawing.Point(64, 16);
     this.dteJzrq.Name = "dteJzrq";
     this.dteJzrq.Size = new System.Drawing.Size(113, 21);
     this.dteJzrq.TabIndex = 201;
     this.coreBind.SetVerification(this.dteJzrq, null);
     //
     // label1
     //
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.ForeColor = System.Drawing.Color.Red;
     this.label1.Location = new System.Drawing.Point(7, 14);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(58, 24);
     this.label1.TabIndex = 602;
     this.label1.Text = "记账日期";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label1, null);
     //
     // pnlDataLeft
     //
     this.pnlDataLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlDataLeft.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnlDataLeft.Controls.Add(this.btnDel);
     this.pnlDataLeft.Controls.Add(this.qTxtZzh);
     this.pnlDataLeft.Controls.Add(this.qDteEnd);
     this.pnlDataLeft.Controls.Add(this.label26);
     this.pnlDataLeft.Controls.Add(this.lblScr);
     this.pnlDataLeft.Controls.Add(this.qDteBegin);
     this.pnlDataLeft.Controls.Add(this.label25);
     this.pnlDataLeft.Controls.Add(this.label24);
     this.pnlDataLeft.Controls.Add(this.qTxtScdd);
     this.pnlDataLeft.Controls.Add(this.label23);
     this.pnlDataLeft.Controls.Add(this.panel5);
     this.coreBind.SetDatabasecommand(this.pnlDataLeft, null);
     this.pnlDataLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.pnlDataLeft.Location = new System.Drawing.Point(0, 0);
     this.pnlDataLeft.Name = "pnlDataLeft";
     this.pnlDataLeft.Size = new System.Drawing.Size(355, 121);
     this.pnlDataLeft.TabIndex = 3;
     this.coreBind.SetVerification(this.pnlDataLeft, null);
     //
     // btnDel
     //
     this.coreBind.SetDatabasecommand(this.btnDel, null);
     this.btnDel.Location = new System.Drawing.Point(279, 49);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(68, 23);
     this.btnDel.TabIndex = 637;
     this.btnDel.Text = "删除";
     this.btnDel.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnDel, null);
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // qTxtZzh
     //
     this.qTxtZzh.AcceptsReturn = true;
     this.coreBind.SetDatabasecommand(this.qTxtZzh, null);
     this.qTxtZzh.Location = new System.Drawing.Point(200, 50);
     this.qTxtZzh.Name = "qTxtZzh";
     this.qTxtZzh.Size = new System.Drawing.Size(69, 21);
     this.qTxtZzh.TabIndex = 636;
     this.coreBind.SetVerification(this.qTxtZzh, null);
     //
     // qDteEnd
     //
     this.coreBind.SetDatabasecommand(this.qDteEnd, null);
     this.qDteEnd.Location = new System.Drawing.Point(235, 15);
     this.qDteEnd.Name = "qDteEnd";
     this.qDteEnd.Size = new System.Drawing.Size(113, 21);
     this.qDteEnd.TabIndex = 633;
     this.coreBind.SetVerification(this.qDteEnd, null);
     //
     // label26
     //
     this.coreBind.SetDatabasecommand(this.label26, null);
     this.label26.ForeColor = System.Drawing.Color.Black;
     this.label26.Location = new System.Drawing.Point(178, 13);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(61, 24);
     this.label26.TabIndex = 632;
     this.label26.Text = "结束日期";
     this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label26, null);
     //
     // lblScr
     //
     this.coreBind.SetDatabasecommand(this.lblScr, null);
     this.lblScr.ForeColor = System.Drawing.Color.Black;
     this.lblScr.Location = new System.Drawing.Point(14, 92);
     this.lblScr.Name = "lblScr";
     this.lblScr.Size = new System.Drawing.Size(301, 24);
     this.lblScr.TabIndex = 631;
     this.lblScr.Text = "操作人员:";
     this.lblScr.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.coreBind.SetVerification(this.lblScr, null);
     //
     // qDteBegin
     //
     this.coreBind.SetDatabasecommand(this.qDteBegin, null);
     this.qDteBegin.Location = new System.Drawing.Point(58, 14);
     this.qDteBegin.Name = "qDteBegin";
     this.qDteBegin.Size = new System.Drawing.Size(113, 21);
     this.qDteBegin.TabIndex = 630;
     this.coreBind.SetVerification(this.qDteBegin, null);
     //
     // label25
     //
     this.coreBind.SetDatabasecommand(this.label25, null);
     this.label25.ForeColor = System.Drawing.Color.Black;
     this.label25.Location = new System.Drawing.Point(3, 12);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(58, 24);
     this.label25.TabIndex = 629;
     this.label25.Text = "开始日期";
     this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label25, null);
     //
     // label24
     //
     this.coreBind.SetDatabasecommand(this.label24, null);
     this.label24.ForeColor = System.Drawing.Color.Black;
     this.label24.Location = new System.Drawing.Point(145, 48);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(59, 24);
     this.label24.TabIndex = 627;
     this.label24.Text = "轧制编号";
     this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label24, null);
     //
     // qTxtScdd
     //
     this.coreBind.SetDatabasecommand(this.qTxtScdd, null);
     this.qTxtScdd.Location = new System.Drawing.Point(58, 50);
     this.qTxtScdd.Name = "qTxtScdd";
     this.qTxtScdd.Size = new System.Drawing.Size(84, 21);
     this.qTxtScdd.TabIndex = 612;
     this.coreBind.SetVerification(this.qTxtScdd, null);
     this.qTxtScdd.Leave += new System.EventHandler(this.qTxtScdd_Leave);
     //
     // label23
     //
     this.coreBind.SetDatabasecommand(this.label23, null);
     this.label23.ForeColor = System.Drawing.Color.Black;
     this.label23.Location = new System.Drawing.Point(5, 48);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(56, 24);
     this.label23.TabIndex = 611;
     this.label23.Text = "生产订单";
     this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label23, null);
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panel5.Controls.Add(this.comboBox1);
     this.panel5.Controls.Add(this.textBox8);
     this.panel5.Controls.Add(this.label12);
     this.panel5.Controls.Add(this.textBox11);
     this.panel5.Controls.Add(this.label13);
     this.panel5.Controls.Add(this.label14);
     this.panel5.Controls.Add(this.textBox12);
     this.panel5.Controls.Add(this.label15);
     this.panel5.Controls.Add(this.textBox13);
     this.panel5.Controls.Add(this.label16);
     this.panel5.Controls.Add(this.textBox14);
     this.panel5.Controls.Add(this.label17);
     this.panel5.Controls.Add(this.textBox15);
     this.panel5.Controls.Add(this.label18);
     this.panel5.Controls.Add(this.textBox16);
     this.panel5.Controls.Add(this.textBox17);
     this.panel5.Controls.Add(this.label19);
     this.panel5.Controls.Add(this.textBox18);
     this.panel5.Controls.Add(this.checkBox2);
     this.panel5.Controls.Add(this.label20);
     this.panel5.Controls.Add(this.label21);
     this.panel5.Controls.Add(this.dateTimePicker2);
     this.panel5.Controls.Add(this.label22);
     this.coreBind.SetDatabasecommand(this.panel5, null);
     this.panel5.Location = new System.Drawing.Point(361, 3);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(617, 121);
     this.panel5.TabIndex = 1;
     this.coreBind.SetVerification(this.panel5, null);
     //
     // comboBox1
     //
     this.coreBind.SetDatabasecommand(this.comboBox1, null);
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "2",
     "3",
     "4",
     "5",
     "6"});
     this.comboBox1.Location = new System.Drawing.Point(377, 3);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(52, 20);
     this.comboBox1.TabIndex = 626;
     this.coreBind.SetVerification(this.comboBox1, null);
     //
     // textBox8
     //
     this.textBox8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.textBox8, null);
     this.textBox8.Location = new System.Drawing.Point(497, 76);
     this.textBox8.Name = "textBox8";
     this.textBox8.ReadOnly = true;
     this.textBox8.Size = new System.Drawing.Size(93, 21);
     this.textBox8.TabIndex = 625;
     this.coreBind.SetVerification(this.textBox8, null);
     //
     // label12
     //
     this.coreBind.SetDatabasecommand(this.label12, null);
     this.label12.ForeColor = System.Drawing.Color.Black;
     this.label12.Location = new System.Drawing.Point(423, 74);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(70, 24);
     this.label12.TabIndex = 624;
     this.label12.Text = "收货数量";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label12, null);
     //
     // textBox11
     //
     this.coreBind.SetDatabasecommand(this.textBox11, null);
     this.textBox11.Location = new System.Drawing.Point(242, 2);
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new System.Drawing.Size(79, 21);
     this.textBox11.TabIndex = 623;
     this.coreBind.SetVerification(this.textBox11, null);
     //
     // label13
     //
     this.coreBind.SetDatabasecommand(this.label13, null);
     this.label13.ForeColor = System.Drawing.Color.Red;
     this.label13.Location = new System.Drawing.Point(204, 1);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(32, 24);
     this.label13.TabIndex = 622;
     this.label13.Text = "罐号";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label13, null);
     //
     // label14
     //
     this.coreBind.SetDatabasecommand(this.label14, null);
     this.label14.ForeColor = System.Drawing.Color.Red;
     this.label14.Location = new System.Drawing.Point(327, 3);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(44, 24);
     this.label14.TabIndex = 620;
     this.label14.Text = "炉座号";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label14, null);
     //
     // textBox12
     //
     this.coreBind.SetDatabasecommand(this.textBox12, null);
     this.textBox12.Location = new System.Drawing.Point(527, 27);
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new System.Drawing.Size(63, 21);
     this.textBox12.TabIndex = 619;
     this.coreBind.SetVerification(this.textBox12, null);
     //
     // label15
     //
     this.coreBind.SetDatabasecommand(this.label15, null);
     this.label15.ForeColor = System.Drawing.Color.Red;
     this.label15.Location = new System.Drawing.Point(481, 25);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(50, 24);
     this.label15.TabIndex = 618;
     this.label15.Text = "库存地";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label15, null);
     //
     // textBox13
     //
     this.coreBind.SetDatabasecommand(this.textBox13, null);
     this.textBox13.Location = new System.Drawing.Point(404, 26);
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new System.Drawing.Size(66, 21);
     this.textBox13.TabIndex = 617;
     this.coreBind.SetVerification(this.textBox13, null);
     //
     // label16
     //
     this.coreBind.SetDatabasecommand(this.label16, null);
     this.label16.ForeColor = System.Drawing.Color.Red;
     this.label16.Location = new System.Drawing.Point(353, 24);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(45, 24);
     this.label16.TabIndex = 616;
     this.label16.Text = "工  厂";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label16, null);
     //
     // textBox14
     //
     this.textBox14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.textBox14, null);
     this.textBox14.Location = new System.Drawing.Point(437, 49);
     this.textBox14.Name = "textBox14";
     this.textBox14.ReadOnly = true;
     this.textBox14.Size = new System.Drawing.Size(167, 21);
     this.textBox14.TabIndex = 615;
     this.coreBind.SetVerification(this.textBox14, null);
     //
     // label17
     //
     this.coreBind.SetDatabasecommand(this.label17, null);
     this.label17.ForeColor = System.Drawing.Color.Black;
     this.label17.Location = new System.Drawing.Point(375, 50);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(70, 24);
     this.label17.TabIndex = 614;
     this.label17.Text = "物料描述";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label17, null);
     //
     // textBox15
     //
     this.textBox15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.textBox15, null);
     this.textBox15.Location = new System.Drawing.Point(264, 48);
     this.textBox15.Name = "textBox15";
     this.textBox15.ReadOnly = true;
     this.textBox15.Size = new System.Drawing.Size(107, 21);
     this.textBox15.TabIndex = 613;
     this.coreBind.SetVerification(this.textBox15, null);
     //
     // label18
     //
     this.coreBind.SetDatabasecommand(this.label18, null);
     this.label18.ForeColor = System.Drawing.Color.Black;
     this.label18.Location = new System.Drawing.Point(188, 46);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(70, 24);
     this.label18.TabIndex = 612;
     this.label18.Text = "物料编码";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label18, null);
     //
     // textBox16
     //
     this.textBox16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.textBox16, null);
     this.textBox16.Location = new System.Drawing.Point(96, 50);
     this.textBox16.Name = "textBox16";
     this.textBox16.ReadOnly = true;
     this.textBox16.Size = new System.Drawing.Size(102, 21);
     this.textBox16.TabIndex = 611;
     this.coreBind.SetVerification(this.textBox16, null);
     //
     // textBox17
     //
     this.coreBind.SetDatabasecommand(this.textBox17, null);
     this.textBox17.Location = new System.Drawing.Point(85, 26);
     this.textBox17.Name = "textBox17";
     this.textBox17.Size = new System.Drawing.Size(198, 21);
     this.textBox17.TabIndex = 610;
     this.coreBind.SetVerification(this.textBox17, null);
     //
     // label19
     //
     this.coreBind.SetDatabasecommand(this.label19, null);
     this.label19.ForeColor = System.Drawing.Color.Red;
     this.label19.Location = new System.Drawing.Point(22, 24);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(56, 24);
     this.label19.TabIndex = 609;
     this.label19.Text = "生产订单";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label19, null);
     //
     // textBox18
     //
     this.coreBind.SetDatabasecommand(this.textBox18, null);
     this.textBox18.Location = new System.Drawing.Point(476, 3);
     this.textBox18.Name = "textBox18";
     this.textBox18.Size = new System.Drawing.Size(71, 21);
     this.textBox18.TabIndex = 607;
     this.coreBind.SetVerification(this.textBox18, null);
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.checkBox2, null);
     this.checkBox2.ForeColor = System.Drawing.Color.Red;
     this.checkBox2.Location = new System.Drawing.Point(553, 5);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(72, 16);
     this.checkBox2.TabIndex = 606;
     this.checkBox2.Text = "可以上传";
     this.checkBox2.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.checkBox2, null);
     //
     // label20
     //
     this.coreBind.SetDatabasecommand(this.label20, null);
     this.label20.ForeColor = System.Drawing.Color.Black;
     this.label20.Location = new System.Drawing.Point(-6, 48);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(96, 24);
     this.label20.TabIndex = 605;
     this.label20.Text = "生产订单行项目";
     this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label20, null);
     //
     // label21
     //
     this.coreBind.SetDatabasecommand(this.label21, null);
     this.label21.ForeColor = System.Drawing.Color.Red;
     this.label21.Location = new System.Drawing.Point(436, 1);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(34, 24);
     this.label21.TabIndex = 604;
     this.label21.Text = "炉号";
     this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label21, null);
     //
     // dateTimePicker2
     //
     this.coreBind.SetDatabasecommand(this.dateTimePicker2, null);
     this.dateTimePicker2.Location = new System.Drawing.Point(85, 1);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(113, 21);
     this.dateTimePicker2.TabIndex = 603;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // label22
     //
     this.coreBind.SetDatabasecommand(this.label22, null);
     this.label22.ForeColor = System.Drawing.Color.Red;
     this.label22.Location = new System.Drawing.Point(31, -1);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(58, 24);
     this.label22.TabIndex = 602;
     this.label22.Text = "记账日期";
     this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label22, null);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.uGridData);
     this.coreBind.SetDatabasecommand(this.panel2, null);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 252);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(992, 402);
     this.panel2.TabIndex = 4;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // uGridData
     //
     this.coreBind.SetDatabasecommand(this.uGridData, null);
     this.uGridData.DataMember = "计量数据";
     this.uGridData.DataSource = this.dataSet1;
     appearance37.BackColor = System.Drawing.Color.White;
     appearance37.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance37.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.uGridData.DisplayLayout.Appearance = appearance37;
     ultraGridColumn1.Header.VisiblePosition = 3;
     ultraGridColumn1.Width = 89;
     ultraGridColumn2.Header.VisiblePosition = 0;
     ultraGridColumn2.Width = 98;
     ultraGridColumn3.Header.VisiblePosition = 6;
     ultraGridColumn3.Width = 62;
     ultraGridColumn4.Header.VisiblePosition = 7;
     ultraGridColumn4.Width = 78;
     ultraGridColumn5.Header.VisiblePosition = 9;
     ultraGridColumn5.Width = 65;
     ultraGridColumn6.Header.VisiblePosition = 8;
     ultraGridColumn6.Width = 46;
     ultraGridColumn7.Header.VisiblePosition = 11;
     ultraGridColumn7.Hidden = true;
     ultraGridColumn8.Header.VisiblePosition = 10;
     ultraGridColumn8.Hidden = true;
     ultraGridColumn9.Header.VisiblePosition = 5;
     ultraGridColumn9.Width = 75;
     ultraGridColumn10.Header.VisiblePosition = 4;
     ultraGridColumn10.Width = 66;
     ultraGridColumn11.Header.VisiblePosition = 2;
     ultraGridColumn11.Hidden = true;
     ultraGridColumn11.Width = 214;
     ultraGridColumn12.Header.Caption = "物料编号";
     ultraGridColumn12.Header.VisiblePosition = 1;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12});
     summarySettings1.DisplayFormat = "{0}块";
     summarySettings1.GroupBySummaryValueAppearance = appearance3;
     summarySettings2.DisplayFormat = "{0}吨";
     summarySettings2.GroupBySummaryValueAppearance = appearance4;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2});
     this.uGridData.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.uGridData.DisplayLayout.InterBandSpacing = 10;
     appearance38.BackColor = System.Drawing.Color.Transparent;
     this.uGridData.DisplayLayout.Override.CardAreaAppearance = appearance38;
     this.uGridData.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance39.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance39.ForeColor = System.Drawing.Color.White;
     appearance39.TextHAlignAsString = "Center";
     appearance39.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.uGridData.DisplayLayout.Override.HeaderAppearance = appearance39;
     appearance40.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.uGridData.DisplayLayout.Override.RowAppearance = appearance40;
     appearance41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance41.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance41.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.uGridData.DisplayLayout.Override.RowSelectorAppearance = appearance41;
     this.uGridData.DisplayLayout.Override.RowSelectorWidth = 12;
     this.uGridData.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance42.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance42.ForeColor = System.Drawing.Color.Black;
     this.uGridData.DisplayLayout.Override.SelectedRowAppearance = appearance42;
     this.uGridData.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.uGridData.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.uGridData.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.uGridData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uGridData.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.uGridData.Location = new System.Drawing.Point(0, 0);
     this.uGridData.Name = "uGridData";
     this.uGridData.Size = new System.Drawing.Size(992, 402);
     this.uGridData.TabIndex = 14;
     this.coreBind.SetVerification(this.uGridData, null);
     this.uGridData.DoubleClickCell += new Infragistics.Win.UltraWinGrid.DoubleClickCellEventHandler(this.uGridData_DoubleClickCell);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn7,
     this.dataColumn12,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn20,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn3});
     this.dataTable1.TableName = "计量数据";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "炉号";
     this.dataColumn1.ColumnName = "FS_STOVENO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "生产订单号";
     this.dataColumn2.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "工厂";
     this.dataColumn7.ColumnName = "FS_PLANT";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "库存地";
     this.dataColumn12.ColumnName = "FS_SAPSTORE";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "上传人员";
     this.dataColumn15.ColumnName = "FS_AUDITOR";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "头文本";
     this.dataColumn16.ColumnName = "FS_HEADER";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "FS_WEIGHTNO";
     this.dataColumn17.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "上传";
     this.dataColumn18.ColumnName = "FS_UPLOADFLAG";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "记帐日期";
     this.dataColumn20.ColumnName = "FS_ACCOUNTDATE";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "重量";
     this.dataColumn9.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "物料名称";
     this.dataColumn10.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FS_MATERIAL";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn11,
     this.dataColumn8});
     this.dataTable2.TableName = "生产订单信息";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "生产订单号";
     this.dataColumn4.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "行项目号";
     this.dataColumn5.ColumnName = "FS_ITEMNO";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "物料号";
     this.dataColumn6.ColumnName = "FS_MATERIAL";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "物资名称";
     this.dataColumn11.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "工厂";
     this.dataColumn8.ColumnName = "FS_FACTORY";
     //
     // GxSapFl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 654);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.ugpData);
     this.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this, null);
     this.KeyPreview = true;
     this.Name = "GxSapFl";
     this.Text = "高线发料数据上传SAP";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.PySapFl_Load);
     this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.UpSap_KeyPress);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uToolBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ugpData)).EndInit();
     this.ugpData.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
     this.pnlHint.ResumeLayout(false);
     this.pnlData.ResumeLayout(false);
     this.pnlDataRight.ResumeLayout(false);
     this.pnlDataRight.PerformLayout();
     this.pnlDataLeft.ResumeLayout(false);
     this.pnlDataLeft.PerformLayout();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uGridData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.Data.SortDescriptor sortDescriptor2 = new Telerik.WinControls.Data.SortDescriptor();
     this.gridViewTemplate1 = new Telerik.WinControls.UI.GridViewTemplate();
     this.panel_batary_stock = new System.Windows.Forms.Panel();
     this.chk_brandd = new Telerik.WinControls.UI.RadCheckBox();
     this.com_amp = new Telerik.WinControls.UI.RadComboBox();
     this.chk_amp = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_din_battery = new Telerik.WinControls.UI.RadCheckBox();
     this.radGridView5 = new Telerik.WinControls.UI.RadGridView();
     this.txt_search_size = new Telerik.WinControls.UI.RadTextBox();
     this.grdBattry = new Telerik.WinControls.UI.RadGridView();
     this.radButton4 = new Telerik.WinControls.UI.RadButton();
     this.radButton5 = new Telerik.WinControls.UI.RadButton();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.rad_MF = new System.Windows.Forms.RadioButton();
     this.rad_M = new System.Windows.Forms.RadioButton();
     this.com_search_brand = new Telerik.WinControls.UI.RadComboBox();
     this.chk_type = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_size_batery = new Telerik.WinControls.UI.RadCheckBox();
     this.lblInvoice = new Telerik.WinControls.UI.RadLabel();
     this.aquaTheme2 = new Telerik.WinControls.Themes.AquaTheme();
     this.DesktopAlertQty = new Telerik.WinControls.UI.RadDesktopAlert(this.components);
     this.breezeTheme1 = new Telerik.WinControls.Themes.BreezeTheme();
     this.miscellaneousTheme1 = new Telerik.WinControls.Themes.MiscellaneousTheme();
     this.btnBattrySearch = new Telerik.WinControls.UI.RadButton();
     this.btnTyreSearch = new Telerik.WinControls.UI.RadButton();
     this.btnOtherSearch = new Telerik.WinControls.UI.RadButton();
     this.panel_other_search = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.grdOther = new Telerik.WinControls.UI.RadGridView();
     this.btnRefreshOher = new Telerik.WinControls.UI.RadButton();
     this.btnSearch = new Telerik.WinControls.UI.RadButton();
     this.cmdSearchCat = new Telerik.WinControls.UI.RadComboBox();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.check_rear = new Telerik.WinControls.UI.RadCheckBox();
     this.check_front = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.panal_cycle = new Telerik.WinControls.UI.RadPanel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.radio_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_non_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.com_brand = new Telerik.WinControls.UI.RadComboBox();
     this.chk_size = new Telerik.WinControls.UI.RadCheckBox();
     this.com_ply_rate = new Telerik.WinControls.UI.RadComboBox();
     this.chk_t_pattern = new Telerik.WinControls.UI.RadCheckBox();
     this.com_t_pattern = new Telerik.WinControls.UI.RadComboBox();
     this.chk_make = new Telerik.WinControls.UI.RadCheckBox();
     this.com_made = new Telerik.WinControls.UI.RadComboBox();
     this.chk_ply_rate = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.chk_brand = new Telerik.WinControls.UI.RadCheckBox();
     this.grp_tyre_type = new System.Windows.Forms.GroupBox();
     this.radio_canvas = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_radial = new Telerik.WinControls.UI.RadRadioButton();
     this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
     this.radGridView3 = new Telerik.WinControls.UI.RadGridView();
     this.txt_size = new Telerik.WinControls.UI.RadTextBox();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.chk_cycle_search = new Telerik.WinControls.UI.RadCheckBox();
     this.radThemeManager1 = new Telerik.WinControls.RadThemeManager();
     this.pnlTyre = new System.Windows.Forms.Panel();
     this.btnTubeSearch = new Telerik.WinControls.UI.RadButton();
     this.grdInvoice = new Telerik.WinControls.UI.RadGridView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.txtInvoiceNo = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
     this.txtInvoiceNote = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel14 = new Telerik.WinControls.UI.RadLabel();
     this.txtVehicleNo = new Telerik.WinControls.UI.RadTextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnPrintInvoice = new Telerik.WinControls.UI.RadButton();
     this.btnClear = new Telerik.WinControls.UI.RadButton();
     this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
     this.txtCustomerName = new Telerik.WinControls.UI.RadTextBox();
     this.grdFillCustomer = new System.Windows.Forms.DataGridView();
     this.com_customer_id = new System.Windows.Forms.ComboBox();
     this.radLabel16 = new Telerik.WinControls.UI.RadLabel();
     this.btnAddPayment = new Telerik.WinControls.UI.RadButton();
     this.txtTotal = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.pnlTube = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.txt_barcode = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.grdTubeSize = new Telerik.WinControls.UI.RadGridView();
     this.txtTubeSize = new System.Windows.Forms.TextBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.chk_din_tube = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeBrand = new Telerik.WinControls.UI.RadCheckBox();
     this.comTubeMake = new Telerik.WinControls.UI.RadComboBox();
     this.chkTubeSize = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeMake = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeType = new Telerik.WinControls.UI.RadCheckBox();
     this.comTubeBrand = new Telerik.WinControls.UI.RadComboBox();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.rad_tube_c = new System.Windows.Forms.RadioButton();
     this.rad_tube_v = new System.Windows.Forms.RadioButton();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.radButton7 = new Telerik.WinControls.UI.RadButton();
     this.grdTubesearch = new Telerik.WinControls.UI.RadGridView();
     this.dtpInvoiceDate = new System.Windows.Forms.DateTimePicker();
     this.txt_ReceivedBy = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).BeginInit();
     this.panel_batary_stock.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brandd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBattry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size_batery)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblInvoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattrySearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnTyreSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnOtherSearch)).BeginInit();
     this.panel_other_search.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOther)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefreshOher)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdSearchCat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).BeginInit();
     this.panal_cycle.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).BeginInit();
     this.grp_tyre_type.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).BeginInit();
     this.pnlTyre.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnTubeSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdInvoice)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNote)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVehicleNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrintInvoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdFillCustomer)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddPayment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     this.pnlTube.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubeSize)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_tube)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeBrand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeMake)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeSize)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeMake)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeBrand)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubesearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ReceivedBy)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewTemplate1
     //
     this.gridViewTemplate1.EnableAlternatingRowColor = true;
     //
     // panel_batary_stock
     //
     this.panel_batary_stock.BackColor = System.Drawing.Color.Transparent;
     this.panel_batary_stock.Controls.Add(this.chk_brandd);
     this.panel_batary_stock.Controls.Add(this.com_amp);
     this.panel_batary_stock.Controls.Add(this.chk_amp);
     this.panel_batary_stock.Controls.Add(this.chk_din_battery);
     this.panel_batary_stock.Controls.Add(this.radGridView5);
     this.panel_batary_stock.Controls.Add(this.txt_search_size);
     this.panel_batary_stock.Controls.Add(this.grdBattry);
     this.panel_batary_stock.Controls.Add(this.radButton4);
     this.panel_batary_stock.Controls.Add(this.radButton5);
     this.panel_batary_stock.Controls.Add(this.groupBox3);
     this.panel_batary_stock.Controls.Add(this.com_search_brand);
     this.panel_batary_stock.Controls.Add(this.chk_type);
     this.panel_batary_stock.Controls.Add(this.chk_size_batery);
     this.panel_batary_stock.ForeColor = System.Drawing.Color.Black;
     this.panel_batary_stock.Location = new System.Drawing.Point(28, 58);
     this.panel_batary_stock.Name = "panel_batary_stock";
     this.panel_batary_stock.Size = new System.Drawing.Size(1031, 341);
     this.panel_batary_stock.TabIndex = 110;
     this.panel_batary_stock.Click += new System.EventHandler(this.panel_batary_stock_Click);
     //
     // chk_brandd
     //
     this.chk_brandd.BackColor = System.Drawing.Color.Transparent;
     this.chk_brandd.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brandd.ForeColor = System.Drawing.Color.White;
     this.chk_brandd.Location = new System.Drawing.Point(4, 10);
     this.chk_brandd.Name = "chk_brandd";
     //
     //
     //
     this.chk_brandd.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_brandd.Size = new System.Drawing.Size(55, 21);
     this.chk_brandd.TabIndex = 79;
     this.chk_brandd.Text = "Brand";
     this.chk_brandd.Click += new System.EventHandler(this.chk_brandd_Click_1);
     //
     // com_amp
     //
     this.com_amp.Location = new System.Drawing.Point(64, 50);
     this.com_amp.Name = "com_amp";
     //
     //
     //
     this.com_amp.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_amp.Size = new System.Drawing.Size(136, 20);
     this.com_amp.TabIndex = 78;
     this.com_amp.TabStop = false;
     //
     // chk_amp
     //
     this.chk_amp.BackColor = System.Drawing.Color.Transparent;
     this.chk_amp.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_amp.ForeColor = System.Drawing.Color.White;
     this.chk_amp.Location = new System.Drawing.Point(3, 49);
     this.chk_amp.Name = "chk_amp";
     //
     //
     //
     this.chk_amp.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_amp.Size = new System.Drawing.Size(49, 21);
     this.chk_amp.TabIndex = 77;
     this.chk_amp.Text = "AMP";
     this.chk_amp.Click += new System.EventHandler(this.chk_amp_Click_1);
     //
     // chk_din_battery
     //
     this.chk_din_battery.BackColor = System.Drawing.Color.Transparent;
     this.chk_din_battery.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_din_battery.ForeColor = System.Drawing.Color.White;
     this.chk_din_battery.Location = new System.Drawing.Point(3, 83);
     this.chk_din_battery.Name = "chk_din_battery";
     //
     //
     //
     this.chk_din_battery.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_din_battery.Size = new System.Drawing.Size(44, 21);
     this.chk_din_battery.TabIndex = 65;
     this.chk_din_battery.Text = "DIN";
     this.chk_din_battery.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chk_din_battery_ToggleStateChanged);
     this.chk_din_battery.Click += new System.EventHandler(this.chk_din_battery_Click);
     //
     // radGridView5
     //
     this.radGridView5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView5.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView5.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridView5.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView5.Location = new System.Drawing.Point(302, 33);
     //
     // radGridView5
     //
     this.radGridView5.MasterTemplate.AllowAddNewRow = false;
     this.radGridView5.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView5.MasterTemplate.EnableGrouping = false;
     this.radGridView5.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView5.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView5.Name = "radGridView5";
     this.radGridView5.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ReadOnly = true;
     this.radGridView5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView5.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ShowGroupPanel = false;
     this.radGridView5.Size = new System.Drawing.Size(136, 72);
     this.radGridView5.TabIndex = 72;
     this.radGridView5.Text = "radGridView5";
     this.radGridView5.SelectionChanged += new System.EventHandler(this.radGridView5_SelectionChanged);
     this.radGridView5.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView5_CellClick);
     //
     // txt_search_size
     //
     this.txt_search_size.Location = new System.Drawing.Point(302, 12);
     this.txt_search_size.Name = "txt_search_size";
     this.txt_search_size.Size = new System.Drawing.Size(136, 20);
     this.txt_search_size.TabIndex = 71;
     this.txt_search_size.TabStop = false;
     this.txt_search_size.Click += new System.EventHandler(this.txt_search_size_Click);
     this.txt_search_size.Enter += new System.EventHandler(this.txt_search_size_Enter);
     //
     // grdBattry
     //
     this.grdBattry.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdBattry.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdBattry.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdBattry.ForeColor = System.Drawing.Color.Black;
     this.grdBattry.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdBattry.Location = new System.Drawing.Point(3, 111);
     //
     // grdBattry
     //
     this.grdBattry.MasterTemplate.AllowAddNewRow = false;
     this.grdBattry.MasterTemplate.AllowColumnChooser = false;
     this.grdBattry.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdBattry.Name = "grdBattry";
     this.grdBattry.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBattry.ReadOnly = true;
     this.grdBattry.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdBattry.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdBattry.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBattry.Size = new System.Drawing.Size(1015, 220);
     this.grdBattry.TabIndex = 70;
     this.grdBattry.Text = "grdBattry";
     this.grdBattry.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView4_CellClick);
     //
     // radButton4
     //
     this.radButton4.Location = new System.Drawing.Point(961, 88);
     this.radButton4.Name = "radButton4";
     this.radButton4.Size = new System.Drawing.Size(57, 20);
     this.radButton4.TabIndex = 69;
     this.radButton4.Text = "Refresh";
     this.radButton4.ThemeName = "Breeze";
     this.radButton4.Click += new System.EventHandler(this.radButton4_Click);
     //
     // radButton5
     //
     this.radButton5.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton5.Location = new System.Drawing.Point(553, 58);
     this.radButton5.Name = "radButton5";
     this.radButton5.Size = new System.Drawing.Size(115, 50);
     this.radButton5.TabIndex = 68;
     this.radButton5.Text = "Search";
     this.radButton5.ThemeName = "Breeze";
     this.radButton5.Click += new System.EventHandler(this.radButton5_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.rad_MF);
     this.groupBox3.Controls.Add(this.rad_M);
     this.groupBox3.Location = new System.Drawing.Point(553, 4);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(124, 27);
     this.groupBox3.TabIndex = 67;
     this.groupBox3.TabStop = false;
     //
     // rad_MF
     //
     this.rad_MF.AutoSize = true;
     this.rad_MF.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_MF.ForeColor = System.Drawing.Color.White;
     this.rad_MF.Location = new System.Drawing.Point(63, 8);
     this.rad_MF.Name = "rad_MF";
     this.rad_MF.Size = new System.Drawing.Size(42, 17);
     this.rad_MF.TabIndex = 1;
     this.rad_MF.TabStop = true;
     this.rad_MF.Text = "MF";
     this.rad_MF.UseVisualStyleBackColor = true;
     this.rad_MF.CheckedChanged += new System.EventHandler(this.rad_MF_CheckedChanged);
     //
     // rad_M
     //
     this.rad_M.AutoSize = true;
     this.rad_M.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_M.ForeColor = System.Drawing.Color.White;
     this.rad_M.Location = new System.Drawing.Point(6, 8);
     this.rad_M.Name = "rad_M";
     this.rad_M.Size = new System.Drawing.Size(35, 17);
     this.rad_M.TabIndex = 0;
     this.rad_M.TabStop = true;
     this.rad_M.Text = "M";
     this.rad_M.UseVisualStyleBackColor = true;
     this.rad_M.CheckedChanged += new System.EventHandler(this.rad_M_CheckedChanged);
     //
     // com_search_brand
     //
     this.com_search_brand.Location = new System.Drawing.Point(64, 10);
     this.com_search_brand.Name = "com_search_brand";
     //
     //
     //
     this.com_search_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_search_brand.Size = new System.Drawing.Size(136, 20);
     this.com_search_brand.TabIndex = 65;
     this.com_search_brand.TabStop = false;
     //
     // chk_type
     //
     this.chk_type.BackColor = System.Drawing.Color.Transparent;
     this.chk_type.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_type.ForeColor = System.Drawing.Color.White;
     this.chk_type.Location = new System.Drawing.Point(489, 11);
     this.chk_type.Name = "chk_type";
     //
     //
     //
     this.chk_type.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_type.Size = new System.Drawing.Size(49, 21);
     this.chk_type.TabIndex = 64;
     this.chk_type.Text = "Type";
     this.chk_type.Click += new System.EventHandler(this.chk_type_Click);
     //
     // chk_size_batery
     //
     this.chk_size_batery.BackColor = System.Drawing.Color.Transparent;
     this.chk_size_batery.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size_batery.ForeColor = System.Drawing.Color.White;
     this.chk_size_batery.Location = new System.Drawing.Point(242, 10);
     this.chk_size_batery.Name = "chk_size_batery";
     //
     //
     //
     this.chk_size_batery.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_size_batery.Size = new System.Drawing.Size(44, 21);
     this.chk_size_batery.TabIndex = 62;
     this.chk_size_batery.Text = "Size";
     this.chk_size_batery.Click += new System.EventHandler(this.chk_size_batery_Click);
     //
     // lblInvoice
     //
     this.lblInvoice.BackColor = System.Drawing.Color.Transparent;
     this.lblInvoice.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Bold);
     this.lblInvoice.ForeColor = System.Drawing.Color.Gold;
     this.lblInvoice.Location = new System.Drawing.Point(28, 12);
     this.lblInvoice.Name = "lblInvoice";
     //
     //
     //
     this.lblInvoice.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.lblInvoice.Size = new System.Drawing.Size(104, 41);
     this.lblInvoice.TabIndex = 68;
     this.lblInvoice.Text = "Invoice";
     this.lblInvoice.Click += new System.EventHandler(this.lblTyreSearch_Click);
     //
     // DesktopAlertQty
     //
     this.DesktopAlertQty.ContentImage = null;
     this.DesktopAlertQty.PlaySound = false;
     this.DesktopAlertQty.SoundToPlay = null;
     this.DesktopAlertQty.ThemeName = null;
     //
     // btnBattrySearch
     //
     this.btnBattrySearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBattrySearch.Location = new System.Drawing.Point(676, 25);
     this.btnBattrySearch.Name = "btnBattrySearch";
     this.btnBattrySearch.Size = new System.Drawing.Size(120, 28);
     this.btnBattrySearch.TabIndex = 111;
     this.btnBattrySearch.Text = "Batery Search";
     this.btnBattrySearch.Click += new System.EventHandler(this.btnBattrySearch_Click_1);
     //
     // btnTyreSearch
     //
     this.btnTyreSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTyreSearch.Location = new System.Drawing.Point(550, 25);
     this.btnTyreSearch.Name = "btnTyreSearch";
     this.btnTyreSearch.Size = new System.Drawing.Size(120, 28);
     this.btnTyreSearch.TabIndex = 112;
     this.btnTyreSearch.Text = "Tyre Search";
     this.btnTyreSearch.Click += new System.EventHandler(this.btnTyreSearch_Click);
     //
     // btnOtherSearch
     //
     this.btnOtherSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOtherSearch.Location = new System.Drawing.Point(928, 25);
     this.btnOtherSearch.Name = "btnOtherSearch";
     this.btnOtherSearch.Size = new System.Drawing.Size(120, 28);
     this.btnOtherSearch.TabIndex = 113;
     this.btnOtherSearch.Text = "Other Search";
     this.btnOtherSearch.Click += new System.EventHandler(this.radButton7_Click);
     //
     // panel_other_search
     //
     this.panel_other_search.BackColor = System.Drawing.Color.Transparent;
     this.panel_other_search.Controls.Add(this.label11);
     this.panel_other_search.Controls.Add(this.label7);
     this.panel_other_search.Controls.Add(this.grdOther);
     this.panel_other_search.Controls.Add(this.btnRefreshOher);
     this.panel_other_search.Controls.Add(this.btnSearch);
     this.panel_other_search.Controls.Add(this.cmdSearchCat);
     this.panel_other_search.Location = new System.Drawing.Point(28, 58);
     this.panel_other_search.Name = "panel_other_search";
     this.panel_other_search.Size = new System.Drawing.Size(1031, 341);
     this.panel_other_search.TabIndex = 81;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(0, 18);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(84, 14);
     this.label11.TabIndex = 77;
     this.label11.Text = "Item Catagory";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(647, 346);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(0, 13);
     this.label7.TabIndex = 76;
     //
     // grdOther
     //
     this.grdOther.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdOther.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdOther.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdOther.ForeColor = System.Drawing.Color.Black;
     this.grdOther.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdOther.Location = new System.Drawing.Point(3, 81);
     //
     // grdOther
     //
     this.grdOther.MasterTemplate.AllowAddNewRow = false;
     this.grdOther.MasterTemplate.AllowColumnChooser = false;
     this.grdOther.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdOther.Name = "grdOther";
     this.grdOther.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdOther.ReadOnly = true;
     this.grdOther.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdOther.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdOther.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdOther.Size = new System.Drawing.Size(1015, 217);
     this.grdOther.TabIndex = 70;
     this.grdOther.Text = "radGridView1";
     this.grdOther.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdOther_CellClick);
     //
     // btnRefreshOher
     //
     this.btnRefreshOher.Location = new System.Drawing.Point(961, 58);
     this.btnRefreshOher.Name = "btnRefreshOher";
     this.btnRefreshOher.Size = new System.Drawing.Size(57, 20);
     this.btnRefreshOher.TabIndex = 69;
     this.btnRefreshOher.Text = "Refresh";
     this.btnRefreshOher.ThemeName = "Breeze";
     //
     // btnSearch
     //
     this.btnSearch.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearch.ForeColor = System.Drawing.Color.White;
     this.btnSearch.Location = new System.Drawing.Point(259, 16);
     this.btnSearch.Name = "btnSearch";
     //
     //
     //
     this.btnSearch.RootElement.ForeColor = System.Drawing.Color.White;
     this.btnSearch.Size = new System.Drawing.Size(110, 50);
     this.btnSearch.TabIndex = 68;
     this.btnSearch.Text = "Search";
     this.btnSearch.ThemeName = "Breeze";
     //
     // cmdSearchCat
     //
     this.cmdSearchCat.Location = new System.Drawing.Point(97, 16);
     this.cmdSearchCat.Name = "cmdSearchCat";
     //
     //
     //
     this.cmdSearchCat.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.cmdSearchCat.Size = new System.Drawing.Size(136, 20);
     this.cmdSearchCat.TabIndex = 65;
     this.cmdSearchCat.TabStop = false;
     //
     // radGridView1
     //
     this.radGridView1.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.Location = new System.Drawing.Point(3, 172);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView1.Name = "radGridView1";
     this.radGridView1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.ReadOnly = true;
     //
     //
     //
     this.radGridView1.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.Size = new System.Drawing.Size(1015, 159);
     this.radGridView1.TabIndex = 56;
     this.radGridView1.Text = "radGridView1";
     this.radGridView1.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     //
     // radGridView2
     //
     this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView2.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView2.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridView2.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView2.Location = new System.Drawing.Point(3, 172);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow = false;
     this.radGridView2.MasterTemplate.AllowColumnChooser = false;
     this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView2.Name = "radGridView2";
     this.radGridView2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ReadOnly = true;
     this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.Size = new System.Drawing.Size(1015, 159);
     this.radGridView2.TabIndex = 57;
     this.radGridView2.Text = "radGridView2";
     this.radGridView2.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellClick);
     //
     // radButton1
     //
     this.radButton1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.Location = new System.Drawing.Point(678, 119);
     this.radButton1.Name = "radButton1";
     this.radButton1.Size = new System.Drawing.Size(115, 50);
     this.radButton1.TabIndex = 29;
     this.radButton1.Text = "Search";
     this.radButton1.ThemeName = "Breeze";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.check_rear);
     this.groupBox1.Controls.Add(this.check_front);
     this.groupBox1.ForeColor = System.Drawing.Color.White;
     this.groupBox1.Location = new System.Drawing.Point(132, 2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(156, 36);
     this.groupBox1.TabIndex = 54;
     this.groupBox1.TabStop = false;
     //
     // check_rear
     //
     this.check_rear.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.check_rear.ForeColor = System.Drawing.Color.White;
     this.check_rear.Location = new System.Drawing.Point(82, 12);
     this.check_rear.Name = "check_rear";
     //
     //
     //
     this.check_rear.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_rear.RootElement.StretchHorizontally = true;
     this.check_rear.RootElement.StretchVertically = true;
     this.check_rear.Size = new System.Drawing.Size(45, 19);
     this.check_rear.TabIndex = 65;
     this.check_rear.Text = "Rear";
     //
     // check_front
     //
     this.check_front.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.check_front.ForeColor = System.Drawing.Color.White;
     this.check_front.Location = new System.Drawing.Point(15, 12);
     this.check_front.Name = "check_front";
     //
     //
     //
     this.check_front.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_front.RootElement.StretchHorizontally = true;
     this.check_front.RootElement.StretchVertically = true;
     this.check_front.Size = new System.Drawing.Size(49, 19);
     this.check_front.TabIndex = 64;
     this.check_front.Text = "Front";
     //
     // radLabel2
     //
     this.radLabel2.BackColor = System.Drawing.Color.Transparent;
     this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel2.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Location = new System.Drawing.Point(40, 15);
     this.radLabel2.Name = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Size = new System.Drawing.Size(71, 21);
     this.radLabel2.TabIndex = 31;
     this.radLabel2.Text = "Front/Rear";
     //
     // panal_cycle
     //
     this.panal_cycle.BackColor = System.Drawing.Color.Transparent;
     this.panal_cycle.Controls.Add(this.groupBox2);
     this.panal_cycle.Controls.Add(this.radLabel3);
     this.panal_cycle.Controls.Add(this.radLabel2);
     this.panal_cycle.Controls.Add(this.groupBox1);
     this.panal_cycle.Location = new System.Drawing.Point(678, 27);
     this.panal_cycle.Name = "panal_cycle";
     //
     //
     //
     this.panal_cycle.RootElement.Opacity = 5D;
     this.panal_cycle.Size = new System.Drawing.Size(340, 84);
     this.panal_cycle.TabIndex = 59;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.radio_trial);
     this.groupBox2.Controls.Add(this.radio_non_trial);
     this.groupBox2.ForeColor = System.Drawing.Color.White;
     this.groupBox2.Location = new System.Drawing.Point(132, 38);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(156, 36);
     this.groupBox2.TabIndex = 82;
     this.groupBox2.TabStop = false;
     //
     // radio_trial
     //
     this.radio_trial.BackColor = System.Drawing.Color.Transparent;
     this.radio_trial.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.radio_trial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trial.Location = new System.Drawing.Point(16, 12);
     this.radio_trial.Name = "radio_trial";
     //
     //
     //
     this.radio_trial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trial.Size = new System.Drawing.Size(61, 18);
     this.radio_trial.TabIndex = 28;
     this.radio_trial.Text = "Trail";
     //
     // radio_non_trial
     //
     this.radio_non_trial.BackColor = System.Drawing.Color.Transparent;
     this.radio_non_trial.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.radio_non_trial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trial.Location = new System.Drawing.Point(83, 9);
     this.radio_non_trial.Name = "radio_non_trial";
     //
     //
     //
     this.radio_non_trial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trial.Size = new System.Drawing.Size(72, 23);
     this.radio_non_trial.TabIndex = 14;
     this.radio_non_trial.Text = "Nontrail";
     //
     // radLabel3
     //
     this.radLabel3.BackColor = System.Drawing.Color.Transparent;
     this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Location = new System.Drawing.Point(40, 48);
     this.radLabel3.Name = "radLabel3";
     //
     //
     //
     this.radLabel3.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Size = new System.Drawing.Size(85, 21);
     this.radLabel3.TabIndex = 56;
     this.radLabel3.Text = "Trail/Nontrail";
     //
     // com_brand
     //
     this.com_brand.Enabled = false;
     this.com_brand.Location = new System.Drawing.Point(95, 8);
     this.com_brand.Name = "com_brand";
     //
     //
     //
     this.com_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand.RootElement.StretchVertically = true;
     this.com_brand.Size = new System.Drawing.Size(158, 20);
     this.com_brand.TabIndex = 57;
     this.com_brand.TabStop = false;
     this.com_brand.SelectedIndexChanged += new System.EventHandler(this.com_brand_SelectedIndexChanged);
     //
     // chk_size
     //
     this.chk_size.BackColor = System.Drawing.Color.Transparent;
     this.chk_size.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size.ForeColor = System.Drawing.Color.White;
     this.chk_size.Location = new System.Drawing.Point(20, 34);
     this.chk_size.Name = "chk_size";
     //
     //
     //
     this.chk_size.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_size.RootElement.StretchHorizontally = true;
     this.chk_size.RootElement.StretchVertically = true;
     this.chk_size.Size = new System.Drawing.Size(44, 21);
     this.chk_size.TabIndex = 19;
     this.chk_size.Text = "Size";
     this.chk_size.Click += new System.EventHandler(this.chk_size_Click);
     //
     // com_ply_rate
     //
     this.com_ply_rate.Location = new System.Drawing.Point(95, 61);
     this.com_ply_rate.Name = "com_ply_rate";
     //
     //
     //
     this.com_ply_rate.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_ply_rate.RootElement.StretchVertically = true;
     this.com_ply_rate.Size = new System.Drawing.Size(158, 20);
     this.com_ply_rate.TabIndex = 58;
     this.com_ply_rate.TabStop = false;
     //
     // chk_t_pattern
     //
     this.chk_t_pattern.BackColor = System.Drawing.Color.Transparent;
     this.chk_t_pattern.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_t_pattern.ForeColor = System.Drawing.Color.White;
     this.chk_t_pattern.Location = new System.Drawing.Point(292, 8);
     this.chk_t_pattern.Name = "chk_t_pattern";
     //
     //
     //
     this.chk_t_pattern.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_t_pattern.RootElement.StretchHorizontally = true;
     this.chk_t_pattern.RootElement.StretchVertically = true;
     this.chk_t_pattern.Size = new System.Drawing.Size(108, 21);
     this.chk_t_pattern.TabIndex = 26;
     this.chk_t_pattern.Text = "Thread Pattern";
     this.chk_t_pattern.Click += new System.EventHandler(this.chk_t_pattern_Click);
     //
     // com_t_pattern
     //
     this.com_t_pattern.Location = new System.Drawing.Point(414, 7);
     this.com_t_pattern.Name = "com_t_pattern";
     //
     //
     //
     this.com_t_pattern.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_t_pattern.RootElement.StretchVertically = true;
     this.com_t_pattern.Size = new System.Drawing.Size(155, 20);
     this.com_t_pattern.TabIndex = 58;
     this.com_t_pattern.TabStop = false;
     //
     // chk_make
     //
     this.chk_make.BackColor = System.Drawing.Color.Transparent;
     this.chk_make.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_make.ForeColor = System.Drawing.Color.White;
     this.chk_make.Location = new System.Drawing.Point(293, 33);
     this.chk_make.Name = "chk_make";
     //
     //
     //
     this.chk_make.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_make.RootElement.StretchHorizontally = true;
     this.chk_make.RootElement.StretchVertically = true;
     this.chk_make.Size = new System.Drawing.Size(53, 21);
     this.chk_make.TabIndex = 24;
     this.chk_make.Text = "Make";
     this.chk_make.Click += new System.EventHandler(this.chk_make_Click);
     //
     // com_made
     //
     this.com_made.Location = new System.Drawing.Point(414, 33);
     this.com_made.Name = "com_made";
     //
     //
     //
     this.com_made.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_made.RootElement.StretchVertically = true;
     this.com_made.Size = new System.Drawing.Size(155, 20);
     this.com_made.TabIndex = 58;
     this.com_made.TabStop = false;
     //
     // chk_ply_rate
     //
     this.chk_ply_rate.BackColor = System.Drawing.Color.Transparent;
     this.chk_ply_rate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_ply_rate.ForeColor = System.Drawing.Color.White;
     this.chk_ply_rate.Location = new System.Drawing.Point(20, 61);
     this.chk_ply_rate.Name = "chk_ply_rate";
     //
     //
     //
     this.chk_ply_rate.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_ply_rate.RootElement.StretchHorizontally = true;
     this.chk_ply_rate.RootElement.StretchVertically = true;
     this.chk_ply_rate.Size = new System.Drawing.Size(68, 21);
     this.chk_ply_rate.TabIndex = 22;
     this.chk_ply_rate.Text = "Ply Rate";
     this.chk_ply_rate.Click += new System.EventHandler(this.chk_ply_rate_Click);
     //
     // radLabel4
     //
     this.radLabel4.BackColor = System.Drawing.Color.Transparent;
     this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Location = new System.Drawing.Point(293, 67);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Size = new System.Drawing.Size(64, 21);
     this.radLabel4.TabIndex = 61;
     this.radLabel4.Text = "Tyre Type";
     //
     // chk_brand
     //
     this.chk_brand.BackColor = System.Drawing.Color.Transparent;
     this.chk_brand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brand.ForeColor = System.Drawing.Color.White;
     this.chk_brand.Location = new System.Drawing.Point(21, 7);
     this.chk_brand.Name = "chk_brand";
     //
     //
     //
     this.chk_brand.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_brand.RootElement.StretchHorizontally = true;
     this.chk_brand.RootElement.StretchVertically = true;
     this.chk_brand.Size = new System.Drawing.Size(55, 21);
     this.chk_brand.TabIndex = 20;
     this.chk_brand.Text = "Brand";
     this.chk_brand.Click += new System.EventHandler(this.radCheckBox2_Click);
     //
     // grp_tyre_type
     //
     this.grp_tyre_type.BackColor = System.Drawing.Color.Transparent;
     this.grp_tyre_type.Controls.Add(this.radio_canvas);
     this.grp_tyre_type.Controls.Add(this.radio_radial);
     this.grp_tyre_type.Location = new System.Drawing.Point(413, 58);
     this.grp_tyre_type.Name = "grp_tyre_type";
     this.grp_tyre_type.Size = new System.Drawing.Size(156, 36);
     this.grp_tyre_type.TabIndex = 62;
     this.grp_tyre_type.TabStop = false;
     //
     // radio_canvas
     //
     this.radio_canvas.BackColor = System.Drawing.Color.Transparent;
     this.radio_canvas.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_canvas.ForeColor = System.Drawing.Color.White;
     this.radio_canvas.Location = new System.Drawing.Point(77, 0);
     this.radio_canvas.Name = "radio_canvas";
     //
     //
     //
     this.radio_canvas.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_canvas.Size = new System.Drawing.Size(63, 40);
     this.radio_canvas.TabIndex = 14;
     this.radio_canvas.Text = "Canvas";
     //
     // radio_radial
     //
     this.radio_radial.BackColor = System.Drawing.Color.Transparent;
     this.radio_radial.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_radial.ForeColor = System.Drawing.Color.White;
     this.radio_radial.Location = new System.Drawing.Point(10, 10);
     this.radio_radial.Name = "radio_radial";
     //
     //
     //
     this.radio_radial.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_radial.Size = new System.Drawing.Size(61, 18);
     this.radio_radial.TabIndex = 28;
     this.radio_radial.Text = "Radial";
     //
     // radPanel2
     //
     this.radPanel2.BackColor = System.Drawing.Color.Transparent;
     this.radPanel2.Controls.Add(this.radGridView3);
     this.radPanel2.Controls.Add(this.grp_tyre_type);
     this.radPanel2.Controls.Add(this.txt_size);
     this.radPanel2.Controls.Add(this.chk_brand);
     this.radPanel2.Controls.Add(this.radLabel4);
     this.radPanel2.Controls.Add(this.chk_ply_rate);
     this.radPanel2.Controls.Add(this.com_made);
     this.radPanel2.Controls.Add(this.chk_make);
     this.radPanel2.Controls.Add(this.com_t_pattern);
     this.radPanel2.Controls.Add(this.chk_t_pattern);
     this.radPanel2.Controls.Add(this.com_ply_rate);
     this.radPanel2.Controls.Add(this.chk_size);
     this.radPanel2.Controls.Add(this.com_brand);
     this.radPanel2.ForeColor = System.Drawing.Color.White;
     this.radPanel2.Location = new System.Drawing.Point(3, 20);
     this.radPanel2.Name = "radPanel2";
     //
     //
     //
     this.radPanel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radPanel2.Size = new System.Drawing.Size(601, 150);
     this.radPanel2.TabIndex = 60;
     this.radPanel2.Click += new System.EventHandler(this.radPanel2_Click);
     //
     // radGridView3
     //
     this.radGridView3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView3.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView3.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridView3.ForeColor = System.Drawing.Color.Black;
     this.radGridView3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView3.Location = new System.Drawing.Point(95, 55);
     //
     // radGridView3
     //
     this.radGridView3.MasterTemplate.AllowAddNewRow = false;
     this.radGridView3.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView3.MasterTemplate.EnableGrouping = false;
     this.radGridView3.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView3.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView3.Name = "radGridView3";
     this.radGridView3.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ReadOnly = true;
     this.radGridView3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView3.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView3.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ShowGroupPanel = false;
     this.radGridView3.Size = new System.Drawing.Size(158, 81);
     this.radGridView3.TabIndex = 65;
     this.radGridView3.Text = "radGridView3";
     this.radGridView3.SelectionChanged += new System.EventHandler(this.radGridView3_SelectionChanged);
     this.radGridView3.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView3_CellClick);
     //
     // txt_size
     //
     this.txt_size.Enabled = false;
     this.txt_size.Location = new System.Drawing.Point(95, 35);
     this.txt_size.Name = "txt_size";
     this.txt_size.Size = new System.Drawing.Size(158, 20);
     this.txt_size.TabIndex = 64;
     this.txt_size.TabStop = false;
     this.txt_size.TextChanged += new System.EventHandler(this.txt_size_TextChanged);
     this.txt_size.Click += new System.EventHandler(this.txt_size_Click);
     this.txt_size.Enter += new System.EventHandler(this.txt_size_Enter);
     //
     // radButton2
     //
     this.radButton2.Location = new System.Drawing.Point(961, 149);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(57, 20);
     this.radButton2.TabIndex = 30;
     this.radButton2.Tag = " ";
     this.radButton2.Text = "Refresh";
     this.radButton2.ThemeName = "Breeze";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
     //
     // chk_cycle_search
     //
     this.chk_cycle_search.BackColor = System.Drawing.Color.Transparent;
     this.chk_cycle_search.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.chk_cycle_search.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Location = new System.Drawing.Point(678, 5);
     this.chk_cycle_search.Name = "chk_cycle_search";
     //
     //
     //
     this.chk_cycle_search.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Size = new System.Drawing.Size(85, 18);
     this.chk_cycle_search.TabIndex = 61;
     this.chk_cycle_search.Text = "Motor Cycle";
     this.chk_cycle_search.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chk_cycle_search_ToggleStateChanged);
     this.chk_cycle_search.Click += new System.EventHandler(this.chk_cycle_search_Click);
     //
     // pnlTyre
     //
     this.pnlTyre.BackColor = System.Drawing.Color.Transparent;
     this.pnlTyre.Controls.Add(this.radPanel2);
     this.pnlTyre.Controls.Add(this.chk_cycle_search);
     this.pnlTyre.Controls.Add(this.radButton1);
     this.pnlTyre.Controls.Add(this.panal_cycle);
     this.pnlTyre.Controls.Add(this.radButton2);
     this.pnlTyre.Controls.Add(this.radGridView1);
     this.pnlTyre.Controls.Add(this.radGridView2);
     this.pnlTyre.Location = new System.Drawing.Point(28, 58);
     this.pnlTyre.Name = "pnlTyre";
     this.pnlTyre.Size = new System.Drawing.Size(1031, 341);
     this.pnlTyre.TabIndex = 114;
     this.pnlTyre.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlTyre_Paint);
     //
     // btnTubeSearch
     //
     this.btnTubeSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTubeSearch.Location = new System.Drawing.Point(802, 25);
     this.btnTubeSearch.Name = "btnTubeSearch";
     this.btnTubeSearch.Size = new System.Drawing.Size(120, 28);
     this.btnTubeSearch.TabIndex = 114;
     this.btnTubeSearch.Text = "Tube Search";
     this.btnTubeSearch.Click += new System.EventHandler(this.radButton6_Click_1);
     //
     // grdInvoice
     //
     this.grdInvoice.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdInvoice.ContextMenuStrip = this.contextMenuStrip1;
     this.grdInvoice.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdInvoice.EnableHotTracking = false;
     this.grdInvoice.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdInvoice.ForeColor = System.Drawing.Color.Black;
     this.grdInvoice.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdInvoice.Location = new System.Drawing.Point(347, 445);
     //
     // grdInvoice
     //
     this.grdInvoice.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.grdInvoice.MasterTemplate.AllowAddNewRow = false;
     this.grdInvoice.MasterTemplate.AllowColumnReorder = false;
     this.grdInvoice.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn8.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn8.HeaderText = "Item No";
     gridViewTextBoxColumn8.Name = "itemNo";
     gridViewTextBoxColumn8.ReadOnly = true;
     gridViewTextBoxColumn8.Width = 95;
     gridViewTextBoxColumn9.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn9.HeaderText = "Item Name";
     gridViewTextBoxColumn9.Name = "Item Name";
     gridViewTextBoxColumn9.Width = 176;
     gridViewTextBoxColumn10.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn10.HeaderText = "Quntity";
     gridViewTextBoxColumn10.Name = "Qty";
     gridViewTextBoxColumn10.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn10.Width = 103;
     gridViewTextBoxColumn11.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn11.HeaderText = "Unit Price( Rs )";
     gridViewTextBoxColumn11.Name = "unitPrice";
     gridViewTextBoxColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn11.Width = 103;
     gridViewTextBoxColumn12.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn12.HeaderText = "Price( Rs )";
     gridViewTextBoxColumn12.Name = "Price";
     gridViewTextBoxColumn12.ReadOnly = true;
     gridViewTextBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn12.Width = 102;
     gridViewTextBoxColumn13.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn13.HeaderText = "Discount( % )";
     gridViewTextBoxColumn13.Name = "Discount";
     gridViewTextBoxColumn13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTextBoxColumn13.Width = 75;
     gridViewTextBoxColumn14.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn14.HeaderText = "ItemCat";
     gridViewTextBoxColumn14.Name = "ItemCat";
     gridViewTextBoxColumn14.ReadOnly = true;
     gridViewTextBoxColumn14.Width = 48;
     this.grdInvoice.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn8,
     gridViewTextBoxColumn9,
     gridViewTextBoxColumn10,
     gridViewTextBoxColumn11,
     gridViewTextBoxColumn12,
     gridViewTextBoxColumn13,
     gridViewTextBoxColumn14});
     this.grdInvoice.MasterTemplate.EnableGrouping = false;
     this.grdInvoice.MasterTemplate.EnableSorting = false;
     this.grdInvoice.MasterTemplate.ShowRowHeaderColumn = false;
     sortDescriptor2.PropertyName = "itemNo";
     this.grdInvoice.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
     sortDescriptor2});
     this.grdInvoice.Name = "grdInvoice";
     this.grdInvoice.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdInvoice.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdInvoice.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdInvoice.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdInvoice.ShowGroupPanel = false;
     this.grdInvoice.Size = new System.Drawing.Size(699, 146);
     this.grdInvoice.TabIndex = 73;
     this.grdInvoice.Text = "radGridView4";
     this.grdInvoice.CellEndEdit += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdInvoice_CellEndEdit);
     this.grdInvoice.UserDeletedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.grdInvoice_UserDeletedRow);
     this.grdInvoice.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdInvoice_CellClick);
     this.grdInvoice.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdInvoice_CellDoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(150, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(149, 22);
     this.toolStripMenuItem1.Text = "Add New Row";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // radLabel8
     //
     this.radLabel8.BackColor = System.Drawing.Color.Transparent;
     this.radLabel8.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.ForeColor = System.Drawing.Color.Gold;
     this.radLabel8.Location = new System.Drawing.Point(347, 406);
     this.radLabel8.Name = "radLabel8";
     //
     //
     //
     this.radLabel8.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel8.Size = new System.Drawing.Size(75, 30);
     this.radLabel8.TabIndex = 82;
     this.radLabel8.Text = "Invoice";
     //
     // radLabel9
     //
     this.radLabel9.BackColor = System.Drawing.Color.Transparent;
     this.radLabel9.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel9.ForeColor = System.Drawing.Color.White;
     this.radLabel9.Location = new System.Drawing.Point(28, 445);
     this.radLabel9.Name = "radLabel9";
     //
     //
     //
     this.radLabel9.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel9.Size = new System.Drawing.Size(103, 21);
     this.radLabel9.TabIndex = 83;
     this.radLabel9.Text = "Customer Name";
     //
     // radLabel10
     //
     this.radLabel10.BackColor = System.Drawing.Color.Transparent;
     this.radLabel10.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.ForeColor = System.Drawing.Color.Gold;
     this.radLabel10.Location = new System.Drawing.Point(28, 406);
     this.radLabel10.Name = "radLabel10";
     //
     //
     //
     this.radLabel10.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel10.Size = new System.Drawing.Size(164, 30);
     this.radLabel10.TabIndex = 83;
     this.radLabel10.Text = "Search Customer";
     //
     // radLabel11
     //
     this.radLabel11.BackColor = System.Drawing.Color.Transparent;
     this.radLabel11.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel11.ForeColor = System.Drawing.Color.White;
     this.radLabel11.Location = new System.Drawing.Point(28, 498);
     this.radLabel11.Name = "radLabel11";
     //
     //
     //
     this.radLabel11.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel11.Size = new System.Drawing.Size(70, 21);
     this.radLabel11.TabIndex = 98;
     this.radLabel11.Text = "Invoice No";
     //
     // txtInvoiceNo
     //
     this.txtInvoiceNo.Enabled = false;
     this.txtInvoiceNo.Location = new System.Drawing.Point(141, 498);
     this.txtInvoiceNo.Name = "txtInvoiceNo";
     this.txtInvoiceNo.Size = new System.Drawing.Size(192, 20);
     this.txtInvoiceNo.TabIndex = 100;
     this.txtInvoiceNo.TabStop = false;
     //
     // radLabel12
     //
     this.radLabel12.BackColor = System.Drawing.Color.Transparent;
     this.radLabel12.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel12.ForeColor = System.Drawing.Color.White;
     this.radLabel12.Location = new System.Drawing.Point(28, 552);
     this.radLabel12.Name = "radLabel12";
     //
     //
     //
     this.radLabel12.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel12.Size = new System.Drawing.Size(80, 21);
     this.radLabel12.TabIndex = 99;
     this.radLabel12.Text = "Invoice Date";
     //
     // radLabel13
     //
     this.radLabel13.BackColor = System.Drawing.Color.Transparent;
     this.radLabel13.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel13.ForeColor = System.Drawing.Color.White;
     this.radLabel13.Location = new System.Drawing.Point(28, 525);
     this.radLabel13.Name = "radLabel13";
     //
     //
     //
     this.radLabel13.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel13.Size = new System.Drawing.Size(99, 21);
     this.radLabel13.TabIndex = 103;
     this.radLabel13.Text = "Invoice Ref No";
     //
     // txtInvoiceNote
     //
     this.txtInvoiceNote.Location = new System.Drawing.Point(141, 524);
     this.txtInvoiceNote.Multiline = true;
     this.txtInvoiceNote.Name = "txtInvoiceNote";
     //
     //
     //
     this.txtInvoiceNote.RootElement.StretchVertically = true;
     this.txtInvoiceNote.Size = new System.Drawing.Size(192, 21);
     this.txtInvoiceNote.TabIndex = 104;
     this.txtInvoiceNote.TabStop = false;
     //
     // radLabel14
     //
     this.radLabel14.BackColor = System.Drawing.Color.Transparent;
     this.radLabel14.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel14.ForeColor = System.Drawing.Color.White;
     this.radLabel14.Location = new System.Drawing.Point(28, 601);
     this.radLabel14.Name = "radLabel14";
     //
     //
     //
     this.radLabel14.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel14.Size = new System.Drawing.Size(71, 21);
     this.radLabel14.TabIndex = 105;
     this.radLabel14.Text = "Vehicle No";
     //
     // txtVehicleNo
     //
     this.txtVehicleNo.Location = new System.Drawing.Point(141, 603);
     this.txtVehicleNo.Name = "txtVehicleNo";
     this.txtVehicleNo.Size = new System.Drawing.Size(192, 20);
     this.txtVehicleNo.TabIndex = 101;
     this.txtVehicleNo.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(563, 706);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(0, 13);
     this.label4.TabIndex = 106;
     //
     // btnAdd
     //
     this.btnAdd.Font = new System.Drawing.Font("Arial", 9F);
     this.btnAdd.Location = new System.Drawing.Point(601, 601);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(104, 37);
     this.btnAdd.TabIndex = 107;
     this.btnAdd.Text = "Add";
     this.btnAdd.ThemeName = "Breeze";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnPrintInvoice
     //
     this.btnPrintInvoice.Font = new System.Drawing.Font("Arial", 9F);
     this.btnPrintInvoice.Location = new System.Drawing.Point(476, 601);
     this.btnPrintInvoice.Name = "btnPrintInvoice";
     this.btnPrintInvoice.Size = new System.Drawing.Size(104, 37);
     this.btnPrintInvoice.TabIndex = 108;
     this.btnPrintInvoice.Text = "Print Invoice";
     this.btnPrintInvoice.ThemeName = "Breeze";
     this.btnPrintInvoice.Click += new System.EventHandler(this.btnPrintInvoice_Click);
     //
     // btnClear
     //
     this.btnClear.Font = new System.Drawing.Font("Arial", 9F);
     this.btnClear.Location = new System.Drawing.Point(347, 602);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(104, 36);
     this.btnClear.TabIndex = 108;
     this.btnClear.Text = "Clear";
     this.btnClear.ThemeName = "Breeze";
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // radPanel1
     //
     this.radPanel1.BackColor = System.Drawing.Color.White;
     this.radPanel1.Location = new System.Drawing.Point(28, 402);
     this.radPanel1.Name = "radPanel1";
     this.radPanel1.Size = new System.Drawing.Size(1031, 2);
     this.radPanel1.TabIndex = 115;
     //
     // txtCustomerName
     //
     this.txtCustomerName.Location = new System.Drawing.Point(141, 445);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Size = new System.Drawing.Size(192, 20);
     this.txtCustomerName.TabIndex = 102;
     this.txtCustomerName.TabStop = false;
     this.txtCustomerName.TextChanged += new System.EventHandler(this.radTextBox1_TextChanged);
     this.txtCustomerName.Click += new System.EventHandler(this.txtCustomerName_Click);
     this.txtCustomerName.Enter += new System.EventHandler(this.txtCustomerName_Enter);
     //
     // grdFillCustomer
     //
     this.grdFillCustomer.AllowUserToAddRows = false;
     this.grdFillCustomer.AllowUserToDeleteRows = false;
     this.grdFillCustomer.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.grdFillCustomer.BackgroundColor = System.Drawing.Color.White;
     this.grdFillCustomer.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.grdFillCustomer.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.grdFillCustomer.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdFillCustomer.ColumnHeadersVisible = false;
     this.grdFillCustomer.Location = new System.Drawing.Point(141, 466);
     this.grdFillCustomer.Name = "grdFillCustomer";
     this.grdFillCustomer.ReadOnly = true;
     this.grdFillCustomer.RowHeadersVisible = false;
     this.grdFillCustomer.Size = new System.Drawing.Size(192, 90);
     this.grdFillCustomer.TabIndex = 118;
     this.grdFillCustomer.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdFillCustomer_CellClick);
     //
     // com_customer_id
     //
     this.com_customer_id.FormattingEnabled = true;
     this.com_customer_id.Location = new System.Drawing.Point(141, 471);
     this.com_customer_id.Name = "com_customer_id";
     this.com_customer_id.Size = new System.Drawing.Size(192, 21);
     this.com_customer_id.TabIndex = 119;
     this.com_customer_id.SelectedIndexChanged += new System.EventHandler(this.com_customer_id_SelectedIndexChanged);
     //
     // radLabel16
     //
     this.radLabel16.BackColor = System.Drawing.Color.Transparent;
     this.radLabel16.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel16.ForeColor = System.Drawing.Color.White;
     this.radLabel16.Location = new System.Drawing.Point(28, 471);
     this.radLabel16.Name = "radLabel16";
     //
     //
     //
     this.radLabel16.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel16.Size = new System.Drawing.Size(85, 21);
     this.radLabel16.TabIndex = 99;
     this.radLabel16.Text = "Customer No";
     //
     // btnAddPayment
     //
     this.btnAddPayment.Location = new System.Drawing.Point(759, 726);
     this.btnAddPayment.Name = "btnAddPayment";
     this.btnAddPayment.Size = new System.Drawing.Size(104, 37);
     this.btnAddPayment.TabIndex = 121;
     this.btnAddPayment.Text = "Add Payment";
     this.btnAddPayment.ThemeName = "Breeze";
     this.btnAddPayment.Click += new System.EventHandler(this.btnAddPayment_Click);
     //
     // txtTotal
     //
     this.txtTotal.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTotal.ForeColor = System.Drawing.Color.DodgerBlue;
     this.txtTotal.Location = new System.Drawing.Point(909, 608);
     this.txtTotal.Name = "txtTotal";
     //
     //
     //
     this.txtTotal.RootElement.ForeColor = System.Drawing.Color.DodgerBlue;
     this.txtTotal.Size = new System.Drawing.Size(137, 27);
     this.txtTotal.TabIndex = 80;
     this.txtTotal.TabStop = false;
     this.txtTotal.Text = "0.00";
     this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // radLabel5
     //
     this.radLabel5.BackColor = System.Drawing.Color.Transparent;
     this.radLabel5.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
     this.radLabel5.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Location = new System.Drawing.Point(792, 614);
     this.radLabel5.Name = "radLabel5";
     //
     //
     //
     this.radLabel5.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Size = new System.Drawing.Size(101, 21);
     this.radLabel5.TabIndex = 79;
     this.radLabel5.Text = "Total Price(Rs)";
     //
     // pnlTube
     //
     this.pnlTube.BackColor = System.Drawing.Color.Transparent;
     this.pnlTube.Controls.Add(this.label1);
     this.pnlTube.Controls.Add(this.txt_barcode);
     this.pnlTube.Controls.Add(this.panel2);
     this.pnlTube.Controls.Add(this.radButton3);
     this.pnlTube.Controls.Add(this.radButton7);
     this.pnlTube.Controls.Add(this.grdTubesearch);
     this.pnlTube.Location = new System.Drawing.Point(28, 58);
     this.pnlTube.Name = "pnlTube";
     this.pnlTube.Size = new System.Drawing.Size(1031, 341);
     this.pnlTube.TabIndex = 122;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Lime;
     this.label1.Location = new System.Drawing.Point(0, 13);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 13);
     this.label1.TabIndex = 81;
     this.label1.Text = "BARCODE";
     //
     // txt_barcode
     //
     this.txt_barcode.Location = new System.Drawing.Point(77, 10);
     this.txt_barcode.Name = "txt_barcode";
     this.txt_barcode.Size = new System.Drawing.Size(181, 20);
     this.txt_barcode.TabIndex = 83;
     this.txt_barcode.TextChanged += new System.EventHandler(this.txt_barcode_TextChanged);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.grdTubeSize);
     this.panel2.Controls.Add(this.txtTubeSize);
     this.panel2.Controls.Add(this.groupBox4);
     this.panel2.Controls.Add(this.chkTubeBrand);
     this.panel2.Controls.Add(this.comTubeMake);
     this.panel2.Controls.Add(this.chkTubeSize);
     this.panel2.Controls.Add(this.chkTubeMake);
     this.panel2.Controls.Add(this.chkTubeType);
     this.panel2.Controls.Add(this.comTubeBrand);
     this.panel2.Controls.Add(this.groupBox5);
     this.panel2.Location = new System.Drawing.Point(0, 45);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(858, 121);
     this.panel2.TabIndex = 82;
     this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);
     //
     // grdTubeSize
     //
     this.grdTubeSize.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdTubeSize.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdTubeSize.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdTubeSize.ForeColor = System.Drawing.Color.Black;
     this.grdTubeSize.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdTubeSize.Location = new System.Drawing.Point(364, 37);
     //
     // grdTubeSize
     //
     this.grdTubeSize.MasterTemplate.AllowAddNewRow = false;
     this.grdTubeSize.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdTubeSize.MasterTemplate.EnableGrouping = false;
     this.grdTubeSize.MasterTemplate.ShowColumnHeaders = false;
     this.grdTubeSize.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdTubeSize.Name = "grdTubeSize";
     this.grdTubeSize.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubeSize.ReadOnly = true;
     this.grdTubeSize.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdTubeSize.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdTubeSize.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubeSize.ShowGroupPanel = false;
     this.grdTubeSize.Size = new System.Drawing.Size(187, 72);
     this.grdTubeSize.TabIndex = 82;
     this.grdTubeSize.Text = "radGridView4";
     this.grdTubeSize.SelectionChanged += new System.EventHandler(this.grdTubeSize_SelectionChanged_1);
     this.grdTubeSize.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdTubeSize_CellClick_3);
     //
     // txtTubeSize
     //
     this.txtTubeSize.Enabled = false;
     this.txtTubeSize.Location = new System.Drawing.Point(364, 16);
     this.txtTubeSize.Name = "txtTubeSize";
     this.txtTubeSize.Size = new System.Drawing.Size(187, 20);
     this.txtTubeSize.TabIndex = 80;
     this.txtTubeSize.Click += new System.EventHandler(this.txtTubeSize_Click_1);
     this.txtTubeSize.TextChanged += new System.EventHandler(this.txtTubeSize_TextChanged_1);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.chk_din_tube);
     this.groupBox4.Location = new System.Drawing.Point(744, 88);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(79, 37);
     this.groupBox4.TabIndex = 79;
     this.groupBox4.TabStop = false;
     this.groupBox4.Visible = false;
     //
     // chk_din_tube
     //
     this.chk_din_tube.BackColor = System.Drawing.Color.Transparent;
     this.chk_din_tube.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_din_tube.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_tube.Location = new System.Drawing.Point(19, 15);
     this.chk_din_tube.Name = "chk_din_tube";
     //
     //
     //
     this.chk_din_tube.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_tube.Size = new System.Drawing.Size(44, 21);
     this.chk_din_tube.TabIndex = 65;
     this.chk_din_tube.Text = "DIN";
     //
     // chkTubeBrand
     //
     this.chkTubeBrand.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeBrand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeBrand.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeBrand.Location = new System.Drawing.Point(15, 15);
     this.chkTubeBrand.Name = "chkTubeBrand";
     //
     //
     //
     this.chkTubeBrand.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeBrand.Size = new System.Drawing.Size(55, 21);
     this.chkTubeBrand.TabIndex = 63;
     this.chkTubeBrand.Text = "Brand";
     this.chkTubeBrand.Click += new System.EventHandler(this.radCheckBox1_Click);
     //
     // comTubeMake
     //
     this.comTubeMake.Enabled = false;
     this.comTubeMake.Location = new System.Drawing.Point(76, 56);
     this.comTubeMake.Name = "comTubeMake";
     //
     //
     //
     this.comTubeMake.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.comTubeMake.Size = new System.Drawing.Size(181, 20);
     this.comTubeMake.TabIndex = 78;
     this.comTubeMake.TabStop = false;
     //
     // chkTubeSize
     //
     this.chkTubeSize.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeSize.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeSize.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeSize.Location = new System.Drawing.Point(315, 15);
     this.chkTubeSize.Name = "chkTubeSize";
     //
     //
     //
     this.chkTubeSize.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeSize.Size = new System.Drawing.Size(44, 21);
     this.chkTubeSize.TabIndex = 62;
     this.chkTubeSize.Text = "Size";
     this.chkTubeSize.Click += new System.EventHandler(this.radCheckBox2_Click_1);
     //
     // chkTubeMake
     //
     this.chkTubeMake.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeMake.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeMake.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeMake.Location = new System.Drawing.Point(15, 55);
     this.chkTubeMake.Name = "chkTubeMake";
     //
     //
     //
     this.chkTubeMake.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeMake.Size = new System.Drawing.Size(53, 21);
     this.chkTubeMake.TabIndex = 77;
     this.chkTubeMake.Text = "Make";
     this.chkTubeMake.Click += new System.EventHandler(this.radCheckBox3_Click);
     //
     // chkTubeType
     //
     this.chkTubeType.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeType.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeType.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeType.Location = new System.Drawing.Point(611, 15);
     this.chkTubeType.Name = "chkTubeType";
     //
     //
     //
     this.chkTubeType.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeType.Size = new System.Drawing.Size(49, 21);
     this.chkTubeType.TabIndex = 64;
     this.chkTubeType.Text = "Type";
     this.chkTubeType.Click += new System.EventHandler(this.radCheckBox4_Click);
     //
     // comTubeBrand
     //
     this.comTubeBrand.Enabled = false;
     this.comTubeBrand.Location = new System.Drawing.Point(76, 16);
     this.comTubeBrand.Name = "comTubeBrand";
     //
     //
     //
     this.comTubeBrand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.comTubeBrand.Size = new System.Drawing.Size(181, 20);
     this.comTubeBrand.TabIndex = 65;
     this.comTubeBrand.TabStop = false;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.rad_tube_c);
     this.groupBox5.Controls.Add(this.rad_tube_v);
     this.groupBox5.Enabled = false;
     this.groupBox5.Location = new System.Drawing.Point(675, 8);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(148, 27);
     this.groupBox5.TabIndex = 67;
     this.groupBox5.TabStop = false;
     //
     // rad_tube_c
     //
     this.rad_tube_c.AutoSize = true;
     this.rad_tube_c.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_tube_c.ForeColor = System.Drawing.Color.White;
     this.rad_tube_c.Location = new System.Drawing.Point(80, 8);
     this.rad_tube_c.Name = "rad_tube_c";
     this.rad_tube_c.Size = new System.Drawing.Size(56, 17);
     this.rad_tube_c.TabIndex = 1;
     this.rad_tube_c.TabStop = true;
     this.rad_tube_c.Text = "Cycle";
     this.rad_tube_c.UseVisualStyleBackColor = true;
     this.rad_tube_c.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // rad_tube_v
     //
     this.rad_tube_v.AutoSize = true;
     this.rad_tube_v.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_tube_v.ForeColor = System.Drawing.Color.White;
     this.rad_tube_v.Location = new System.Drawing.Point(6, 8);
     this.rad_tube_v.Name = "rad_tube_v";
     this.rad_tube_v.Size = new System.Drawing.Size(67, 17);
     this.rad_tube_v.TabIndex = 0;
     this.rad_tube_v.TabStop = true;
     this.rad_tube_v.Text = "Vehicle";
     this.rad_tube_v.UseVisualStyleBackColor = true;
     this.rad_tube_v.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // radButton3
     //
     this.radButton3.Location = new System.Drawing.Point(961, 152);
     this.radButton3.Name = "radButton3";
     this.radButton3.Size = new System.Drawing.Size(57, 20);
     this.radButton3.TabIndex = 79;
     this.radButton3.Text = "Refresh";
     this.radButton3.ThemeName = "Breeze";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click_2);
     //
     // radButton7
     //
     this.radButton7.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton7.Location = new System.Drawing.Point(913, 35);
     this.radButton7.Name = "radButton7";
     this.radButton7.Size = new System.Drawing.Size(107, 52);
     this.radButton7.TabIndex = 78;
     this.radButton7.Text = "Search";
     this.radButton7.ThemeName = "Breeze";
     this.radButton7.Click += new System.EventHandler(this.radButton7_Click_1);
     //
     // grdTubesearch
     //
     this.grdTubesearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdTubesearch.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdTubesearch.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdTubesearch.ForeColor = System.Drawing.Color.Black;
     this.grdTubesearch.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdTubesearch.Location = new System.Drawing.Point(0, 177);
     //
     // grdTubesearch
     //
     this.grdTubesearch.MasterTemplate.AllowAddNewRow = false;
     this.grdTubesearch.MasterTemplate.AllowColumnChooser = false;
     this.grdTubesearch.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdTubesearch.Name = "grdTubesearch";
     this.grdTubesearch.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubesearch.ReadOnly = true;
     this.grdTubesearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdTubesearch.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdTubesearch.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubesearch.Size = new System.Drawing.Size(1018, 154);
     this.grdTubesearch.TabIndex = 80;
     this.grdTubesearch.Text = "radGridView6";
     this.grdTubesearch.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdTubesearch_CellClick);
     //
     // dtpInvoiceDate
     //
     this.dtpInvoiceDate.Location = new System.Drawing.Point(141, 551);
     this.dtpInvoiceDate.Name = "dtpInvoiceDate";
     this.dtpInvoiceDate.Size = new System.Drawing.Size(192, 20);
     this.dtpInvoiceDate.TabIndex = 123;
     //
     // txt_ReceivedBy
     //
     this.txt_ReceivedBy.Location = new System.Drawing.Point(141, 577);
     this.txt_ReceivedBy.Name = "txt_ReceivedBy";
     this.txt_ReceivedBy.Size = new System.Drawing.Size(192, 20);
     this.txt_ReceivedBy.TabIndex = 124;
     this.txt_ReceivedBy.TabStop = false;
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Location = new System.Drawing.Point(28, 579);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Size = new System.Drawing.Size(77, 21);
     this.radLabel1.TabIndex = 125;
     this.radLabel1.Text = "Received By";
     //
     // Invoice
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(1386, 788);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.txt_ReceivedBy);
     this.Controls.Add(this.radLabel5);
     this.Controls.Add(this.btnOtherSearch);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.btnAddPayment);
     this.Controls.Add(this.grdFillCustomer);
     this.Controls.Add(this.com_customer_id);
     this.Controls.Add(this.radLabel16);
     this.Controls.Add(this.txtCustomerName);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.btnTubeSearch);
     this.Controls.Add(this.btnTyreSearch);
     this.Controls.Add(this.btnBattrySearch);
     this.Controls.Add(this.btnClear);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.btnPrintInvoice);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.txtInvoiceNote);
     this.Controls.Add(this.txtVehicleNo);
     this.Controls.Add(this.radLabel13);
     this.Controls.Add(this.txtInvoiceNo);
     this.Controls.Add(this.radLabel14);
     this.Controls.Add(this.radLabel11);
     this.Controls.Add(this.radLabel12);
     this.Controls.Add(this.radLabel10);
     this.Controls.Add(this.radLabel8);
     this.Controls.Add(this.grdInvoice);
     this.Controls.Add(this.radLabel9);
     this.Controls.Add(this.lblInvoice);
     this.Controls.Add(this.pnlTube);
     this.Controls.Add(this.pnlTyre);
     this.Controls.Add(this.panel_batary_stock);
     this.Controls.Add(this.dtpInvoiceDate);
     this.Controls.Add(this.panel_other_search);
     this.ForeColor = System.Drawing.Color.DimGray;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Location = new System.Drawing.Point(150, 50);
     this.MaximizeBox = false;
     this.Name = "Invoice";
     this.Opacity = 0.95D;
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.RootElement.ForeColor = System.Drawing.Color.DimGray;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Advanced Search";
     this.ThemeName = "ControlDefault";
     this.Load += new System.EventHandler(this.AdvancedSearch_Load);
     this.EnabledChanged += new System.EventHandler(this.AdvancedSearch_EnabledChanged);
     this.Click += new System.EventHandler(this.AdvancedSearch_Click);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseMove);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).EndInit();
     this.panel_batary_stock.ResumeLayout(false);
     this.panel_batary_stock.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brandd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBattry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size_batery)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblInvoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattrySearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnTyreSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnOtherSearch)).EndInit();
     this.panel_other_search.ResumeLayout(false);
     this.panel_other_search.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOther)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefreshOher)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdSearchCat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).EndInit();
     this.panal_cycle.ResumeLayout(false);
     this.panal_cycle.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).EndInit();
     this.grp_tyre_type.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     this.radPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).EndInit();
     this.pnlTyre.ResumeLayout(false);
     this.pnlTyre.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnTubeSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdInvoice)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNote)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVehicleNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrintInvoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdFillCustomer)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddPayment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     this.pnlTube.ResumeLayout(false);
     this.pnlTube.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubeSize)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_tube)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeBrand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeMake)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeSize)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeMake)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeBrand)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubesearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ReceivedBy)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxPurchaseOrderId = new System.Windows.Forms.TextBox();
            uxPurchaseOrderIdLabel = new System.Windows.Forms.Label();
            this.uxRevisionNumber  = new System.Windows.Forms.TextBox();
            uxRevisionNumberLabel  = new System.Windows.Forms.Label();
            this.uxStatus          = new System.Windows.Forms.TextBox();
            uxStatusLabel          = new System.Windows.Forms.Label();
            this.uxEmployeeId      = new System.Windows.Forms.ComboBox();
            uxEmployeeIdLabel      = new System.Windows.Forms.Label();
            this.uxVendorId        = new System.Windows.Forms.ComboBox();
            uxVendorIdLabel        = new System.Windows.Forms.Label();
            this.uxShipMethodId    = new System.Windows.Forms.ComboBox();
            uxShipMethodIdLabel    = new System.Windows.Forms.Label();
            this.uxOrderDate       = new System.Windows.Forms.DateTimePicker();
            uxOrderDateLabel       = new System.Windows.Forms.Label();
            this.uxShipDate        = new System.Windows.Forms.DateTimePicker();
            uxShipDateLabel        = new System.Windows.Forms.Label();
            this.uxSubTotal        = new System.Windows.Forms.TextBox();
            uxSubTotalLabel        = new System.Windows.Forms.Label();
            this.uxTaxAmt          = new System.Windows.Forms.TextBox();
            uxTaxAmtLabel          = new System.Windows.Forms.Label();
            this.uxFreight         = new System.Windows.Forms.TextBox();
            uxFreightLabel         = new System.Windows.Forms.Label();
            this.uxTotalDue        = new System.Windows.Forms.TextBox();
            uxTotalDueLabel        = new System.Windows.Forms.Label();
            this.uxModifiedDate    = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel    = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxPurchaseOrderIdLabel
            //
            this.uxPurchaseOrderIdLabel.Name     = "uxPurchaseOrderIdLabel";
            this.uxPurchaseOrderIdLabel.Text     = "Purchase Order Id:";
            this.uxPurchaseOrderIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxPurchaseOrderIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxPurchaseOrderIdLabel);
            //
            // uxPurchaseOrderId
            //
            this.uxPurchaseOrderId.Name     = "uxPurchaseOrderId";
            this.uxPurchaseOrderId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxPurchaseOrderId);
            this.uxPurchaseOrderId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxPurchaseOrderId);
            //
            // uxRevisionNumberLabel
            //
            this.uxRevisionNumberLabel.Name     = "uxRevisionNumberLabel";
            this.uxRevisionNumberLabel.Text     = "Revision Number:";
            this.uxRevisionNumberLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxRevisionNumberLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxRevisionNumberLabel);
            //
            // uxRevisionNumber
            //
            this.uxRevisionNumber.Name = "uxRevisionNumber";
            //this.uxTableLayoutPanel.Controls.Add(this.uxRevisionNumber);
            this.uxRevisionNumber.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxRevisionNumber);
            //
            // uxStatusLabel
            //
            this.uxStatusLabel.Name     = "uxStatusLabel";
            this.uxStatusLabel.Text     = "Status:";
            this.uxStatusLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxStatusLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxStatusLabel);
            //
            // uxStatus
            //
            this.uxStatus.Name = "uxStatus";
            //this.uxTableLayoutPanel.Controls.Add(this.uxStatus);
            this.uxStatus.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxStatus);
            //
            // uxEmployeeIdLabel
            //
            this.uxEmployeeIdLabel.Name     = "uxEmployeeIdLabel";
            this.uxEmployeeIdLabel.Text     = "Employee Id:";
            this.uxEmployeeIdLabel.Location = new System.Drawing.Point(3, 78);
            this.Controls.Add(this.uxEmployeeIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxEmployeeIdLabel);
            //
            // uxEmployeeId
            //
            this.uxEmployeeId.Name = "uxEmployeeId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxEmployeeId);
            this.uxEmployeeId.Location = new System.Drawing.Point(160, 78);
            this.Controls.Add(this.uxEmployeeId);
            //
            // uxVendorIdLabel
            //
            this.uxVendorIdLabel.Name     = "uxVendorIdLabel";
            this.uxVendorIdLabel.Text     = "Vendor Id:";
            this.uxVendorIdLabel.Location = new System.Drawing.Point(3, 104);
            this.Controls.Add(this.uxVendorIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxVendorIdLabel);
            //
            // uxVendorId
            //
            this.uxVendorId.Name = "uxVendorId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxVendorId);
            this.uxVendorId.Location = new System.Drawing.Point(160, 104);
            this.Controls.Add(this.uxVendorId);
            //
            // uxShipMethodIdLabel
            //
            this.uxShipMethodIdLabel.Name     = "uxShipMethodIdLabel";
            this.uxShipMethodIdLabel.Text     = "Ship Method Id:";
            this.uxShipMethodIdLabel.Location = new System.Drawing.Point(3, 130);
            this.Controls.Add(this.uxShipMethodIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxShipMethodIdLabel);
            //
            // uxShipMethodId
            //
            this.uxShipMethodId.Name = "uxShipMethodId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxShipMethodId);
            this.uxShipMethodId.Location = new System.Drawing.Point(160, 130);
            this.Controls.Add(this.uxShipMethodId);
            //
            // uxOrderDateLabel
            //
            this.uxOrderDateLabel.Name     = "uxOrderDateLabel";
            this.uxOrderDateLabel.Text     = "Order Date:";
            this.uxOrderDateLabel.Location = new System.Drawing.Point(3, 156);
            this.Controls.Add(this.uxOrderDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxOrderDateLabel);
            //
            // uxOrderDate
            //
            this.uxOrderDate.Name = "uxOrderDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxOrderDate);
            this.uxOrderDate.Location = new System.Drawing.Point(160, 156);
            this.Controls.Add(this.uxOrderDate);
            //
            // uxShipDateLabel
            //
            this.uxShipDateLabel.Name     = "uxShipDateLabel";
            this.uxShipDateLabel.Text     = "Ship Date:";
            this.uxShipDateLabel.Location = new System.Drawing.Point(3, 182);
            this.Controls.Add(this.uxShipDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxShipDateLabel);
            //
            // uxShipDate
            //
            this.uxShipDate.Name = "uxShipDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxShipDate);
            this.uxShipDate.Location = new System.Drawing.Point(160, 182);
            this.Controls.Add(this.uxShipDate);
            //
            // uxSubTotalLabel
            //
            this.uxSubTotalLabel.Name     = "uxSubTotalLabel";
            this.uxSubTotalLabel.Text     = "Sub Total:";
            this.uxSubTotalLabel.Location = new System.Drawing.Point(3, 208);
            this.Controls.Add(this.uxSubTotalLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxSubTotalLabel);
            //
            // uxSubTotal
            //
            this.uxSubTotal.Name = "uxSubTotal";
            //this.uxTableLayoutPanel.Controls.Add(this.uxSubTotal);
            this.uxSubTotal.Location = new System.Drawing.Point(160, 208);
            this.Controls.Add(this.uxSubTotal);
            //
            // uxTaxAmtLabel
            //
            this.uxTaxAmtLabel.Name     = "uxTaxAmtLabel";
            this.uxTaxAmtLabel.Text     = "Tax Amt:";
            this.uxTaxAmtLabel.Location = new System.Drawing.Point(3, 234);
            this.Controls.Add(this.uxTaxAmtLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxTaxAmtLabel);
            //
            // uxTaxAmt
            //
            this.uxTaxAmt.Name = "uxTaxAmt";
            //this.uxTableLayoutPanel.Controls.Add(this.uxTaxAmt);
            this.uxTaxAmt.Location = new System.Drawing.Point(160, 234);
            this.Controls.Add(this.uxTaxAmt);
            //
            // uxFreightLabel
            //
            this.uxFreightLabel.Name     = "uxFreightLabel";
            this.uxFreightLabel.Text     = "Freight:";
            this.uxFreightLabel.Location = new System.Drawing.Point(3, 260);
            this.Controls.Add(this.uxFreightLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxFreightLabel);
            //
            // uxFreight
            //
            this.uxFreight.Name = "uxFreight";
            //this.uxTableLayoutPanel.Controls.Add(this.uxFreight);
            this.uxFreight.Location = new System.Drawing.Point(160, 260);
            this.Controls.Add(this.uxFreight);
            //
            // uxTotalDueLabel
            //
            this.uxTotalDueLabel.Name     = "uxTotalDueLabel";
            this.uxTotalDueLabel.Text     = "Total Due:";
            this.uxTotalDueLabel.Location = new System.Drawing.Point(3, 286);
            this.Controls.Add(this.uxTotalDueLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxTotalDueLabel);
            //
            // uxTotalDue
            //
            this.uxTotalDue.Name     = "uxTotalDue";
            this.uxTotalDue.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxTotalDue);
            this.uxTotalDue.Location = new System.Drawing.Point(160, 286);
            this.Controls.Add(this.uxTotalDue);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 312);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 312);
            this.Controls.Add(this.uxModifiedDate);
            //
            // uxEmployeeId
            //
            this.uxEmployeeId.DisplayMember = "NationalIdNumber";
            this.uxEmployeeId.ValueMember   = "EmployeeId";
            //
            // uxShipMethodId
            //
            this.uxShipMethodId.DisplayMember = "Name";
            this.uxShipMethodId.ValueMember   = "ShipMethodId";
            //
            // uxVendorId
            //
            this.uxVendorId.DisplayMember = "AccountNumber";
            this.uxVendorId.ValueMember   = "VendorId";
            //
            // PurchaseOrderHeaderEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "PurchaseOrderHeaderEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.cboFecFin = new System.Windows.Forms.DateTimePicker();
     this.cboFecIni = new System.Windows.Forms.DateTimePicker();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.lblFecFin = new System.Windows.Forms.Label();
     this.lblFecIni = new System.Windows.Forms.Label();
     this.btnGenerarRA = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // cboFecFin
     //
     this.cboFecFin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.cboFecFin.Location = new System.Drawing.Point(149, 74);
     this.cboFecFin.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cboFecFin.Name = "cboFecFin";
     this.cboFecFin.Size = new System.Drawing.Size(129, 20);
     this.cboFecFin.TabIndex = 27;
     //
     // cboFecIni
     //
     this.cboFecIni.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.cboFecIni.Location = new System.Drawing.Point(149, 19);
     this.cboFecIni.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cboFecIni.Name = "cboFecIni";
     this.cboFecIni.Size = new System.Drawing.Size(129, 20);
     this.cboFecIni.TabIndex = 28;
     //
     // btnCancelar
     //
     this.btnCancelar.Location = new System.Drawing.Point(179, 118);
     this.btnCancelar.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(86, 24);
     this.btnCancelar.TabIndex = 23;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // lblFecFin
     //
     this.lblFecFin.AutoSize = true;
     this.lblFecFin.Location = new System.Drawing.Point(30, 74);
     this.lblFecFin.Name = "lblFecFin";
     this.lblFecFin.Size = new System.Drawing.Size(54, 13);
     this.lblFecFin.TabIndex = 25;
     this.lblFecFin.Text = "Fecha Fin";
     //
     // lblFecIni
     //
     this.lblFecIni.AutoSize = true;
     this.lblFecIni.Location = new System.Drawing.Point(30, 25);
     this.lblFecIni.Name = "lblFecIni";
     this.lblFecIni.Size = new System.Drawing.Size(65, 13);
     this.lblFecIni.TabIndex = 24;
     this.lblFecIni.Text = "Fecha Inicio";
     //
     // btnGenerarRA
     //
     this.btnGenerarRA.Location = new System.Drawing.Point(63, 118);
     this.btnGenerarRA.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnGenerarRA.Name = "btnGenerarRA";
     this.btnGenerarRA.Size = new System.Drawing.Size(88, 24);
     this.btnGenerarRA.TabIndex = 26;
     this.btnGenerarRA.Text = "Generar";
     this.btnGenerarRA.UseVisualStyleBackColor = true;
     this.btnGenerarRA.Click += new System.EventHandler(this.btnGenerarRA_Click);
     //
     // frmReporteAsistencia
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(317, 186);
     this.Controls.Add(this.cboFecFin);
     this.Controls.Add(this.cboFecIni);
     this.Controls.Add(this.btnCancelar);
     this.Controls.Add(this.lblFecFin);
     this.Controls.Add(this.lblFecIni);
     this.Controls.Add(this.btnGenerarRA);
     this.Name = "frmReporteAsistencia";
     this.Text = "Reporte de Asistencia";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_ventas));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btn_del = new System.Windows.Forms.Button();
     this.btn_add = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.telef = new System.Windows.Forms.TextBox();
     this.vendpername = new System.Windows.Forms.TextBox();
     this.vendperid = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.txtvuelto = new System.Windows.Forms.TextBox();
     this.txtefectivo = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.valventa = new System.Windows.Forms.TextBox();
     this.dctoTda = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lbl_valor = new System.Windows.Forms.Label();
     this.totimporte = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.totimpto = new System.Windows.Forms.TextBox();
     this.txt_valor = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dctoTotal = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.dctoTarj = new System.Windows.Forms.TextBox();
     this.totdscto1 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.bruto = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.totpzas = new System.Windows.Forms.TextBox();
     this.txt_stock = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.itemsT = new System.Windows.Forms.TextBox();
     this.shapeContainer3 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape4 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.griddetallemov = new System.Windows.Forms.DataGridView();
     this.nostock = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.item = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rollo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.unmed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Ubicacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costoultimo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costopromed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precioanterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtotimpto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importfac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dalmacaccionid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidadcta = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.direc = new System.Windows.Forms.TextBox();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.nmruc = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btn_refresh_tcamb = new DevExpress.XtraEditors.SimpleButton();
     this.chkfijar = new DevExpress.XtraEditors.CheckEdit();
     this.cbo_incprec = new System.Windows.Forms.ComboBox();
     this.label20 = new System.Windows.Forms.Label();
     this.lbltitulo = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.tipimptotasa = new System.Windows.Forms.ComboBox();
     this.fechdoc = new System.Windows.Forms.DateTimePicker();
     this.moneda = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.numdoc = new System.Windows.Forms.TextBox();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.tipodoc = new System.Windows.Forms.ComboBox();
     this.serdoc = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.btnImprimirNoval = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_detanadir = new System.Windows.Forms.ToolStripButton();
     this.btn_deteliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_Calculadora = new System.Windows.Forms.ToolStripButton();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_upload = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.btn_information = new System.Windows.Forms.ToolStripButton();
     this.tipoclieprov = new System.Windows.Forms.Label();
     this.lblruc = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.pdtimagen = new System.Windows.Forms.PictureBox();
     this.lstListaprec = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.btnextraersunat = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.canticombo = new DevExpress.XtraEditors.SpinEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.preccombo = new System.Windows.Forms.TextBox();
     this.princombo = new System.Windows.Forms.CheckBox();
     this.glosa = new System.Windows.Forms.TextBox();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.label23 = new System.Windows.Forms.Label();
     this.importtarj = new System.Windows.Forms.TextBox();
     this.lstTarjGroup = new System.Windows.Forms.ListBox();
     this.dgbtarjetas = new System.Windows.Forms.DataGridView();
     this._tarjetalogo = new System.Windows.Forms.DataGridViewImageColumn();
     this._tarjetaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetanum = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaimpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._ddnni = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.numnotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.sernotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipnotac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.numguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipguia = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.numfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipfac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.recep_fecha = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.recep_dni = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.recep_name = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.chkNC = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkGR = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkFA = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.fechnotac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechguia = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechfac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).BeginInit();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).BeginInit();
     this.SuspendLayout();
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_del.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_del.Location = new System.Drawing.Point(226, 34);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(21, 21);
     this.btn_del.TabIndex = 99;
     this.toolTip1.SetToolTip(this.btn_del, "Quitar");
     this.btn_del.UseVisualStyleBackColor = true;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_add.Image = global::BapFormulariosNet.Properties.Resources.go_add1;
     this.btn_add.Location = new System.Drawing.Point(226, 12);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(21, 21);
     this.btn_add.TabIndex = 98;
     this.toolTip1.SetToolTip(this.btn_add, "Agregar");
     this.btn_add.UseVisualStyleBackColor = true;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(302, 128);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 13);
     this.label12.TabIndex = 92;
     this.label12.Text = "Telef:";
     //
     // telef
     //
     this.telef.Location = new System.Drawing.Point(338, 125);
     this.telef.MaxLength = 100;
     this.telef.Name = "telef";
     this.telef.Size = new System.Drawing.Size(86, 21);
     this.telef.TabIndex = 83;
     //
     // vendpername
     //
     this.vendpername.Location = new System.Drawing.Point(100, 183);
     this.vendpername.Name = "vendpername";
     this.vendpername.Size = new System.Drawing.Size(351, 21);
     this.vendpername.TabIndex = 81;
     //
     // vendperid
     //
     this.vendperid.Location = new System.Drawing.Point(64, 183);
     this.vendperid.MaxLength = 8;
     this.vendperid.Name = "vendperid";
     this.vendperid.Size = new System.Drawing.Size(35, 21);
     this.vendperid.TabIndex = 80;
     this.vendperid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.vendperid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.vendperid_KeyDown);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(3, 186);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 13);
     this.label11.TabIndex = 78;
     this.label11.Text = "Vendedor:";
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(64, 83);
     this.ctacte.MaxLength = 7;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(53, 21);
     this.ctacte.TabIndex = 11;
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.txtvuelto);
     this.panel2.Controls.Add(this.txtefectivo);
     this.panel2.Controls.Add(this.label19);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.valventa);
     this.panel2.Controls.Add(this.dctoTda);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.lbl_valor);
     this.panel2.Controls.Add(this.totimporte);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.totimpto);
     this.panel2.Controls.Add(this.txt_valor);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.dctoTotal);
     this.panel2.Controls.Add(this.label39);
     this.panel2.Controls.Add(this.dctoTarj);
     this.panel2.Controls.Add(this.totdscto1);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.bruto);
     this.panel2.Controls.Add(this.label40);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.totpzas);
     this.panel2.Controls.Add(this.txt_stock);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.itemsT);
     this.panel2.Controls.Add(this.shapeContainer3);
     this.panel2.Location = new System.Drawing.Point(0, 480);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(989, 80);
     this.panel2.TabIndex = 73;
     //
     // txtvuelto
     //
     this.txtvuelto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtvuelto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtvuelto.Location = new System.Drawing.Point(905, 52);
     this.txtvuelto.Name = "txtvuelto";
     this.txtvuelto.Size = new System.Drawing.Size(75, 20);
     this.txtvuelto.TabIndex = 101;
     this.txtvuelto.Text = "00.00";
     this.txtvuelto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtefectivo
     //
     this.txtefectivo.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtefectivo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtefectivo.Location = new System.Drawing.Point(904, 29);
     this.txtefectivo.Name = "txtefectivo";
     this.txtefectivo.Size = new System.Drawing.Size(75, 20);
     this.txtefectivo.TabIndex = 100;
     this.txtefectivo.Text = "00.00";
     this.txtefectivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtefectivo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtefectivo_KeyDown);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.White;
     this.label19.Location = new System.Drawing.Point(849, 56);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 99;
     this.label19.Text = "Vuelto :";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(838, 33);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(62, 13);
     this.label18.TabIndex = 98;
     this.label18.Text = "Efectivo :";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(669, 13);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 13);
     this.label5.TabIndex = 81;
     this.label5.Text = "Val. Venta :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.White;
     this.label9.Location = new System.Drawing.Point(508, 12);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(68, 13);
     this.label9.TabIndex = 92;
     this.label9.Text = "Dcto.Tda :";
     //
     // valventa
     //
     this.valventa.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.valventa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valventa.Location = new System.Drawing.Point(747, 8);
     this.valventa.Name = "valventa";
     this.valventa.Size = new System.Drawing.Size(75, 20);
     this.valventa.TabIndex = 80;
     this.valventa.Text = "100,000.00";
     this.valventa.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // dctoTda
     //
     this.dctoTda.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTda.Location = new System.Drawing.Point(577, 8);
     this.dctoTda.Name = "dctoTda";
     this.dctoTda.Size = new System.Drawing.Size(75, 20);
     this.dctoTda.TabIndex = 91;
     this.dctoTda.Text = "00.00";
     this.dctoTda.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(677, 33);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 13);
     this.label4.TabIndex = 83;
     this.label4.Text = "Impuesto :";
     //
     // lbl_valor
     //
     this.lbl_valor.AutoSize = true;
     this.lbl_valor.BackColor = System.Drawing.Color.Transparent;
     this.lbl_valor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_valor.ForeColor = System.Drawing.Color.White;
     this.lbl_valor.Location = new System.Drawing.Point(173, 53);
     this.lbl_valor.Name = "lbl_valor";
     this.lbl_valor.Size = new System.Drawing.Size(72, 13);
     this.lbl_valor.TabIndex = 87;
     this.lbl_valor.Text = "Cost.Prom :";
     //
     // totimporte
     //
     this.totimporte.BackColor = System.Drawing.Color.YellowGreen;
     this.totimporte.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimporte.Location = new System.Drawing.Point(747, 50);
     this.totimporte.Name = "totimporte";
     this.totimporte.Size = new System.Drawing.Size(75, 21);
     this.totimporte.TabIndex = 84;
     this.totimporte.Text = "100,000.00";
     this.totimporte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(508, 32);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(68, 13);
     this.label14.TabIndex = 94;
     this.label14.Text = "Dcto.Tarj :";
     //
     // totimpto
     //
     this.totimpto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.totimpto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimpto.Location = new System.Drawing.Point(747, 29);
     this.totimpto.Name = "totimpto";
     this.totimpto.Size = new System.Drawing.Size(75, 20);
     this.totimpto.TabIndex = 82;
     this.totimpto.Text = "100,000.00";
     this.totimpto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_valor
     //
     this.txt_valor.Enabled = false;
     this.txt_valor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_valor.Location = new System.Drawing.Point(246, 49);
     this.txt_valor.Name = "txt_valor";
     this.txt_valor.Size = new System.Drawing.Size(75, 21);
     this.txt_valor.TabIndex = 86;
     this.txt_valor.Text = "100,000.00";
     this.txt_valor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(699, 54);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 85;
     this.label3.Text = "Total :";
     //
     // dctoTotal
     //
     this.dctoTotal.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTotal.Location = new System.Drawing.Point(577, 50);
     this.dctoTotal.Name = "dctoTotal";
     this.dctoTotal.Size = new System.Drawing.Size(75, 21);
     this.dctoTotal.TabIndex = 95;
     this.dctoTotal.Text = "00.00";
     this.dctoTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.BackColor = System.Drawing.Color.Transparent;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.ForeColor = System.Drawing.Color.White;
     this.label39.Location = new System.Drawing.Point(170, 31);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(76, 13);
     this.label39.TabIndex = 79;
     this.label39.Text = "Descuento :";
     //
     // dctoTarj
     //
     this.dctoTarj.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTarj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTarj.Location = new System.Drawing.Point(577, 29);
     this.dctoTarj.Name = "dctoTarj";
     this.dctoTarj.Size = new System.Drawing.Size(75, 20);
     this.dctoTarj.TabIndex = 93;
     this.dctoTarj.Text = "00.00";
     this.dctoTarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // totdscto1
     //
     this.totdscto1.Location = new System.Drawing.Point(246, 28);
     this.totdscto1.Name = "totdscto1";
     this.totdscto1.Size = new System.Drawing.Size(75, 21);
     this.totdscto1.TabIndex = 78;
     this.totdscto1.Text = "100,000.00";
     this.totdscto1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location = new System.Drawing.Point(501, 53);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(75, 13);
     this.label17.TabIndex = 96;
     this.label17.Text = "Descto.TT :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.White;
     this.label10.Location = new System.Drawing.Point(3, 51);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(71, 13);
     this.label10.TabIndex = 77;
     this.label10.Text = "Val. Bruto :";
     //
     // bruto
     //
     this.bruto.Location = new System.Drawing.Point(76, 48);
     this.bruto.Name = "bruto";
     this.bruto.Size = new System.Drawing.Size(75, 21);
     this.bruto.TabIndex = 76;
     this.bruto.Text = "100,000.00";
     this.bruto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.BackColor = System.Drawing.Color.Transparent;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.White;
     this.label40.Location = new System.Drawing.Point(344, 52);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 89;
     this.label40.Text = "Stock :";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(6, 29);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 13);
     this.label7.TabIndex = 75;
     this.label7.Text = "T. Piezas :";
     //
     // totpzas
     //
     this.totpzas.Location = new System.Drawing.Point(76, 26);
     this.totpzas.Name = "totpzas";
     this.totpzas.Size = new System.Drawing.Size(75, 21);
     this.totpzas.TabIndex = 74;
     this.totpzas.Text = "10,000";
     this.totpzas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_stock
     //
     this.txt_stock.Enabled = false;
     this.txt_stock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_stock.Location = new System.Drawing.Point(392, 48);
     this.txt_stock.Name = "txt_stock";
     this.txt_stock.Size = new System.Drawing.Size(75, 21);
     this.txt_stock.TabIndex = 88;
     this.txt_stock.Text = "100,000.00";
     this.txt_stock.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(29, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(45, 13);
     this.label1.TabIndex = 73;
     this.label1.Text = "Items :";
     //
     // itemsT
     //
     this.itemsT.Location = new System.Drawing.Point(77, 4);
     this.itemsT.Name = "itemsT";
     this.itemsT.Size = new System.Drawing.Size(51, 21);
     this.itemsT.TabIndex = 72;
     this.itemsT.Text = "999";
     this.itemsT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // shapeContainer3
     //
     this.shapeContainer3.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer3.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer3.Name = "shapeContainer3";
     this.shapeContainer3.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape4,
     this.lineShape3});
     this.shapeContainer3.Size = new System.Drawing.Size(989, 80);
     this.shapeContainer3.TabIndex = 97;
     this.shapeContainer3.TabStop = false;
     //
     // lineShape4
     //
     this.lineShape4.BorderWidth = 2;
     this.lineShape4.Name = "lineShape4";
     this.lineShape4.X1 = 482;
     this.lineShape4.X2 = 482;
     this.lineShape4.Y1 = 10;
     this.lineShape4.Y2 = 71;
     //
     // lineShape3
     //
     this.lineShape3.BorderWidth = 2;
     this.lineShape3.Name = "lineShape3";
     this.lineShape3.X1 = 665;
     this.lineShape3.X2 = 665;
     this.lineShape3.Y1 = 10;
     this.lineShape3.Y2 = 71;
     //
     // griddetallemov
     //
     this.griddetallemov.AllowUserToAddRows = false;
     this.griddetallemov.AllowUserToDeleteRows = false;
     this.griddetallemov.AllowUserToResizeColumns = false;
     this.griddetallemov.AllowUserToResizeRows = false;
     this.griddetallemov.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.griddetallemov.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.griddetallemov.ColumnHeadersHeight = 20;
     this.griddetallemov.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nostock,
     this.item,
     this.productid,
     this.productname,
     this.rollo,
     this.unmed,
     this.Ubicacion,
     this.stock_old,
     this.stock,
     this.precventa,
     this.costoultimo,
     this.costopromed,
     this.cantidad,
     this.cantidad_old,
     this.precioanterior,
     this.precunit,
     this.valor,
     this.dtotimpto,
     this.importe,
     this.importfac,
     this.dalmacaccionid,
     this.cantidadcta});
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle8.NullValue = null;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.griddetallemov.DefaultCellStyle = dataGridViewCellStyle8;
     this.griddetallemov.Location = new System.Drawing.Point(1, 214);
     this.griddetallemov.MultiSelect = false;
     this.griddetallemov.Name = "griddetallemov";
     this.griddetallemov.RowHeadersVisible = false;
     this.griddetallemov.RowHeadersWidth = 10;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.NullValue = null;
     this.griddetallemov.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.griddetallemov.RowTemplate.DefaultCellStyle.NullValue = null;
     this.griddetallemov.RowTemplate.Height = 20;
     this.griddetallemov.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.griddetallemov.Size = new System.Drawing.Size(989, 266);
     this.griddetallemov.TabIndex = 71;
     this.griddetallemov.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEndEdit);
     this.griddetallemov.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEnter);
     this.griddetallemov.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellLeave);
     this.griddetallemov.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.griddetallemov_EditingControlShowing);
     this.griddetallemov.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyDown);
     this.griddetallemov.KeyUp += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyUp);
     //
     // nostock
     //
     this.nostock.DataPropertyName = "nostock";
     this.nostock.FalseValue = "false";
     this.nostock.Frozen = true;
     this.nostock.HeaderText = "Aft";
     this.nostock.Name = "nostock";
     this.nostock.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.nostock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.nostock.TrueValue = "true";
     this.nostock.Width = 20;
     //
     // item
     //
     this.item.DataPropertyName = "items";
     this.item.Frozen = true;
     this.item.HeaderText = "Items";
     this.item.Name = "item";
     this.item.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.item.Width = 40;
     //
     // productid
     //
     this.productid.DataPropertyName = "productid";
     this.productid.Frozen = true;
     this.productid.HeaderText = "Codigo";
     this.productid.Name = "productid";
     this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // productname
     //
     this.productname.DataPropertyName = "productname";
     this.productname.Frozen = true;
     this.productname.HeaderText = "Producto";
     this.productname.Name = "productname";
     this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.productname.Width = 400;
     //
     // rollo
     //
     this.rollo.DataPropertyName = "rollo";
     this.rollo.Frozen = true;
     this.rollo.HeaderText = "Rollo";
     this.rollo.MaxInputLength = 10;
     this.rollo.Name = "rollo";
     this.rollo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.rollo.Visible = false;
     this.rollo.Width = 80;
     //
     // unmed
     //
     this.unmed.DataPropertyName = "unmed";
     this.unmed.Frozen = true;
     this.unmed.HeaderText = "UnMed";
     this.unmed.Name = "unmed";
     this.unmed.Width = 48;
     //
     // Ubicacion
     //
     this.Ubicacion.DataPropertyName = "ubicacion";
     dataGridViewCellStyle2.NullValue = null;
     this.Ubicacion.DefaultCellStyle = dataGridViewCellStyle2;
     this.Ubicacion.Frozen = true;
     this.Ubicacion.HeaderText = "Ubicacion";
     this.Ubicacion.MaxInputLength = 4;
     this.Ubicacion.Name = "Ubicacion";
     this.Ubicacion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Ubicacion.Visible = false;
     //
     // stock_old
     //
     this.stock_old.DataPropertyName = "stock_old";
     this.stock_old.Frozen = true;
     this.stock_old.HeaderText = "stock_old";
     this.stock_old.Name = "stock_old";
     this.stock_old.Visible = false;
     //
     // stock
     //
     this.stock.DataPropertyName = "stock";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle3.NullValue = null;
     this.stock.DefaultCellStyle = dataGridViewCellStyle3;
     this.stock.Frozen = true;
     this.stock.HeaderText = "Stock";
     this.stock.Name = "stock";
     this.stock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // precventa
     //
     this.precventa.DataPropertyName = "precventa";
     this.precventa.Frozen = true;
     this.precventa.HeaderText = "precventa";
     this.precventa.Name = "precventa";
     this.precventa.Visible = false;
     //
     // costoultimo
     //
     this.costoultimo.DataPropertyName = "costoultimo";
     this.costoultimo.Frozen = true;
     this.costoultimo.HeaderText = "costoultimo";
     this.costoultimo.Name = "costoultimo";
     this.costoultimo.Visible = false;
     //
     // costopromed
     //
     this.costopromed.DataPropertyName = "costopromed";
     this.costopromed.Frozen = true;
     this.costopromed.HeaderText = "costopromed";
     this.costopromed.Name = "costopromed";
     this.costopromed.Visible = false;
     //
     // cantidad
     //
     this.cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.NullValue = null;
     this.cantidad.DefaultCellStyle = dataGridViewCellStyle4;
     this.cantidad.Frozen = true;
     this.cantidad.HeaderText = "Cantidad";
     this.cantidad.Name = "cantidad";
     this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cantidad.Width = 80;
     //
     // cantidad_old
     //
     this.cantidad_old.DataPropertyName = "cantidad_old";
     this.cantidad_old.Frozen = true;
     this.cantidad_old.HeaderText = "cantidad_old";
     this.cantidad_old.Name = "cantidad_old";
     this.cantidad_old.Visible = false;
     //
     // precioanterior
     //
     this.precioanterior.DataPropertyName = "precioanterior";
     this.precioanterior.Frozen = true;
     this.precioanterior.HeaderText = "precioanterior";
     this.precioanterior.Name = "precioanterior";
     this.precioanterior.Visible = false;
     //
     // precunit
     //
     this.precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = null;
     this.precunit.DefaultCellStyle = dataGridViewCellStyle5;
     this.precunit.Frozen = true;
     this.precunit.HeaderText = "Precio";
     this.precunit.Name = "precunit";
     this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.precunit.Width = 90;
     //
     // valor
     //
     this.valor.DataPropertyName = "valor";
     this.valor.HeaderText = "valor";
     this.valor.Name = "valor";
     this.valor.Visible = false;
     //
     // dtotimpto
     //
     this.dtotimpto.DataPropertyName = "totimpto";
     this.dtotimpto.HeaderText = "totimpto";
     this.dtotimpto.Name = "dtotimpto";
     this.dtotimpto.Visible = false;
     //
     // importe
     //
     this.importe.DataPropertyName = "importe";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N4";
     dataGridViewCellStyle6.NullValue = null;
     this.importe.DefaultCellStyle = dataGridViewCellStyle6;
     this.importe.HeaderText = "Importe";
     this.importe.Name = "importe";
     this.importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.importe.Visible = false;
     //
     // importfac
     //
     this.importfac.DataPropertyName = "importfac";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this.importfac.DefaultCellStyle = dataGridViewCellStyle7;
     this.importfac.HeaderText = "Importe";
     this.importfac.Name = "importfac";
     this.importfac.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dalmacaccionid
     //
     this.dalmacaccionid.DataPropertyName = "almacaccionid";
     this.dalmacaccionid.HeaderText = "almacaccionid";
     this.dalmacaccionid.Name = "dalmacaccionid";
     this.dalmacaccionid.Visible = false;
     //
     // cantidadcta
     //
     this.cantidadcta.DataPropertyName = "cantidadcta";
     this.cantidadcta.HeaderText = "cantidadcta";
     this.cantidadcta.Name = "cantidadcta";
     this.cantidadcta.Visible = false;
     //
     // direc
     //
     this.direc.Location = new System.Drawing.Point(64, 125);
     this.direc.Name = "direc";
     this.direc.Size = new System.Drawing.Size(233, 21);
     this.direc.TabIndex = 23;
     //
     // ctactename
     //
     this.ctactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactename.Location = new System.Drawing.Point(64, 104);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(387, 21);
     this.ctactename.TabIndex = 21;
     //
     // nmruc
     //
     this.nmruc.Location = new System.Drawing.Point(160, 82);
     this.nmruc.MaxLength = 11;
     this.nmruc.Name = "nmruc";
     this.nmruc.Size = new System.Drawing.Size(90, 21);
     this.nmruc.TabIndex = 12;
     this.nmruc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nmruc_KeyDown);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.btn_refresh_tcamb);
     this.panel1.Controls.Add(this.chkfijar);
     this.panel1.Controls.Add(this.cbo_incprec);
     this.panel1.Controls.Add(this.label20);
     this.panel1.Controls.Add(this.lbltitulo);
     this.panel1.Controls.Add(this.label41);
     this.panel1.Controls.Add(this.tipimptotasa);
     this.panel1.Controls.Add(this.fechdoc);
     this.panel1.Controls.Add(this.moneda);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.numdoc);
     this.panel1.Controls.Add(this.tcamb);
     this.panel1.Controls.Add(this.tipodoc);
     this.panel1.Controls.Add(this.serdoc);
     this.panel1.Controls.Add(this.label21);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Location = new System.Drawing.Point(0, 29);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(993, 45);
     this.panel1.TabIndex = 2;
     //
     // btn_refresh_tcamb
     //
     this.btn_refresh_tcamb.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_refresh_tcamb.Image = ((System.Drawing.Image)(resources.GetObject("btn_refresh_tcamb.Image")));
     this.btn_refresh_tcamb.Location = new System.Drawing.Point(643, 19);
     this.btn_refresh_tcamb.Name = "btn_refresh_tcamb";
     this.btn_refresh_tcamb.Size = new System.Drawing.Size(22, 22);
     this.btn_refresh_tcamb.TabIndex = 23;
     this.btn_refresh_tcamb.ToolTip = "Refrescar Tipo de Cambio";
     this.btn_refresh_tcamb.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_refresh_tcamb.Click += new System.EventHandler(this.btn_refresh_tcamb_Click);
     //
     // chkfijar
     //
     this.chkfijar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chkfijar.Location = new System.Drawing.Point(137, 21);
     this.chkfijar.Name = "chkfijar";
     this.chkfijar.Properties.Caption = "Fijar";
     this.chkfijar.Size = new System.Drawing.Size(51, 19);
     this.chkfijar.TabIndex = 22;
     this.chkfijar.CheckedChanged += new System.EventHandler(this.chkfijar_CheckedChanged);
     //
     // cbo_incprec
     //
     this.cbo_incprec.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.cbo_incprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_incprec.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbo_incprec.FormattingEnabled = true;
     this.cbo_incprec.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.cbo_incprec.Items.AddRange(new object[] {
     "SI",
     "NO"});
     this.cbo_incprec.Location = new System.Drawing.Point(946, 20);
     this.cbo_incprec.Name = "cbo_incprec";
     this.cbo_incprec.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cbo_incprec.Size = new System.Drawing.Size(40, 21);
     this.cbo_incprec.TabIndex = 21;
     this.cbo_incprec.SelectedIndexChanged += new System.EventHandler(this.cbo_incprec_SelectedIndexChanged);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.White;
     this.label20.Location = new System.Drawing.Point(947, 5);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 20;
     this.label20.Text = "Inclu.";
     //
     // lbltitulo
     //
     this.lbltitulo.AutoSize = true;
     this.lbltitulo.BackColor = System.Drawing.Color.Transparent;
     this.lbltitulo.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbltitulo.ForeColor = System.Drawing.Color.White;
     this.lbltitulo.Location = new System.Drawing.Point(422, 9);
     this.lbltitulo.Name = "lbltitulo";
     this.lbltitulo.Size = new System.Drawing.Size(151, 31);
     this.lbltitulo.TabIndex = 19;
     this.lbltitulo.Text = "FACTURA";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.BackColor = System.Drawing.Color.Transparent;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.ForeColor = System.Drawing.Color.White;
     this.label41.Location = new System.Drawing.Point(928, 22);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(21, 17);
     this.label41.TabIndex = 18;
     this.label41.Text = "%";
     //
     // tipimptotasa
     //
     this.tipimptotasa.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.tipimptotasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipimptotasa.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.tipimptotasa.FormattingEnabled = true;
     this.tipimptotasa.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.tipimptotasa.Location = new System.Drawing.Point(887, 20);
     this.tipimptotasa.Name = "tipimptotasa";
     this.tipimptotasa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tipimptotasa.Size = new System.Drawing.Size(40, 21);
     this.tipimptotasa.TabIndex = 17;
     this.tipimptotasa.SelectedIndexChanged += new System.EventHandler(this.tipimptotasa_SelectedIndexChanged);
     //
     // fechdoc
     //
     this.fechdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdoc.Location = new System.Drawing.Point(669, 21);
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.Size = new System.Drawing.Size(84, 20);
     this.fechdoc.TabIndex = 7;
     this.fechdoc.Value = new System.DateTime(2014, 4, 14, 0, 0, 0, 0);
     this.fechdoc.ValueChanged += new System.EventHandler(this.fechdoc_ValueChanged);
     //
     // moneda
     //
     this.moneda.AutoCompleteCustomSource.AddRange(new string[] {
     "FA"});
     this.moneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.moneda.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.moneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moneda.FormattingEnabled = true;
     this.moneda.Location = new System.Drawing.Point(756, 20);
     this.moneda.Name = "moneda";
     this.moneda.Size = new System.Drawing.Size(70, 21);
     this.moneda.TabIndex = 8;
     this.moneda.SelectedIndexChanged += new System.EventHandler(this.moneda_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(16, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Tipo Documento";
     //
     // numdoc
     //
     this.numdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numdoc.Location = new System.Drawing.Point(231, 20);
     this.numdoc.MaxLength = 10;
     this.numdoc.Name = "numdoc";
     this.numdoc.Size = new System.Drawing.Size(87, 21);
     this.numdoc.TabIndex = 8;
     this.numdoc.Text = "000000001";
     this.numdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numdoc_KeyDown);
     this.numdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numdoc_KeyPress);
     //
     // tcamb
     //
     this.tcamb.Location = new System.Drawing.Point(828, 20);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(56, 21);
     this.tcamb.TabIndex = 9;
     this.tcamb.Text = "3.420";
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // tipodoc
     //
     this.tipodoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipodoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)), true);
     this.tipodoc.FormattingEnabled = true;
     this.tipodoc.Location = new System.Drawing.Point(7, 20);
     this.tipodoc.Name = "tipodoc";
     this.tipodoc.Size = new System.Drawing.Size(128, 20);
     this.tipodoc.TabIndex = 4;
     this.tipodoc.SelectedIndexChanged += new System.EventHandler(this.tipodoc_SelectedIndexChanged);
     //
     // serdoc
     //
     this.serdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.serdoc.Location = new System.Drawing.Point(189, 20);
     this.serdoc.MaxLength = 5;
     this.serdoc.Name = "serdoc";
     this.serdoc.Size = new System.Drawing.Size(40, 21);
     this.serdoc.TabIndex = 4;
     this.serdoc.Text = "2014";
     this.serdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serdoc_KeyPress);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(761, 5);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 12;
     this.label21.Text = "Moneda";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(193, 5);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(36, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Serie";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(883, 5);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(58, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Impuesto";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(247, 5);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 7;
     this.label8.Text = "Número";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(826, 5);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(60, 13);
     this.label15.TabIndex = 14;
     this.label15.Text = "T Cambio";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(688, 5);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 10;
     this.label16.Text = "Fecha";
     //
     // Botonera
     //
     this.Botonera.BackColor = System.Drawing.SystemColors.Control;
     this.Botonera.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnImprimirNoval,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_detanadir,
     this.btn_deteliminar,
     this.toolStripSeparator3,
     this.btn_Calculadora,
     this.btn_clave,
     this.btn_log,
     this.btn_upload,
     this.btn_salir,
     this.btn_information});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(993, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     this.Botonera.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Botonera_ItemClicked);
     //
     // btn_nuevo
     //
     this.btn_nuevo.BackColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Image")));
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = global::BapFormulariosNet.Properties.Resources.btn_eliminar20;
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Image")));
     this.btn_imprimir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(24, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.ToolTipText = "Impresion Valorizada";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // btnImprimirNoval
     //
     this.btnImprimirNoval.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnImprimirNoval.Image = global::BapFormulariosNet.Properties.Resources.agt_print;
     this.btnImprimirNoval.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnImprimirNoval.Name = "btnImprimirNoval";
     this.btnImprimirNoval.Size = new System.Drawing.Size(26, 26);
     this.btnImprimirNoval.ToolTipText = "Impresion No Valorizada";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_detanadir
     //
     this.btn_detanadir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_detanadir.Image = global::BapFormulariosNet.Properties.Resources.go_add;
     this.btn_detanadir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_detanadir.Name = "btn_detanadir";
     this.btn_detanadir.Size = new System.Drawing.Size(26, 26);
     this.btn_detanadir.Text = "Añadir";
     this.btn_detanadir.Click += new System.EventHandler(this.btn_detanadir_Click);
     //
     // btn_deteliminar
     //
     this.btn_deteliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_deteliminar.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_deteliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_deteliminar.Name = "btn_deteliminar";
     this.btn_deteliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_deteliminar.Text = "Quitar";
     this.btn_deteliminar.Click += new System.EventHandler(this.btn_deteliminar_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 29);
     //
     // btn_Calculadora
     //
     this.btn_Calculadora.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Calculadora.Image = global::BapFormulariosNet.Properties.Resources.go_calc2;
     this.btn_Calculadora.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Calculadora.Name = "btn_Calculadora";
     this.btn_Calculadora.Size = new System.Drawing.Size(26, 26);
     this.btn_Calculadora.Text = "Calculadora";
     this.btn_Calculadora.Click += new System.EventHandler(this.btn_Calculadora_Click);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "Auditoria";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_upload
     //
     this.btn_upload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_upload.Image = global::BapFormulariosNet.Properties.Resources.btn_barcode;
     this.btn_upload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_upload.Name = "btn_upload";
     this.btn_upload.Size = new System.Drawing.Size(26, 26);
     this.btn_upload.Text = "Leer Codigo Barras";
     this.btn_upload.ToolTipText = "Cargar";
     this.btn_upload.Click += new System.EventHandler(this.btn_upload_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // btn_information
     //
     this.btn_information.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_information.Image = global::BapFormulariosNet.Properties.Resources.go_information;
     this.btn_information.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_information.Name = "btn_information";
     this.btn_information.Size = new System.Drawing.Size(26, 26);
     this.btn_information.Text = "Informacion";
     this.btn_information.Click += new System.EventHandler(this.btn_information_Click);
     //
     // tipoclieprov
     //
     this.tipoclieprov.AutoSize = true;
     this.tipoclieprov.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tipoclieprov.Location = new System.Drawing.Point(6, 86);
     this.tipoclieprov.Name = "tipoclieprov";
     this.tipoclieprov.Size = new System.Drawing.Size(42, 13);
     this.tipoclieprov.TabIndex = 18;
     this.tipoclieprov.Text = "Cliente:";
     //
     // lblruc
     //
     this.lblruc.AutoSize = true;
     this.lblruc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblruc.Location = new System.Drawing.Point(123, 85);
     this.lblruc.Name = "lblruc";
     this.lblruc.Size = new System.Drawing.Size(33, 13);
     this.lblruc.TabIndex = 75;
     this.lblruc.Text = "RUC:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(6, 128);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(55, 13);
     this.label24.TabIndex = 22;
     this.label24.Text = "Dirección:";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2});
     this.shapeContainer1.Size = new System.Drawing.Size(993, 560);
     this.shapeContainer1.TabIndex = 82;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderWidth = 2;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.SelectionColor = System.Drawing.SystemColors.HotTrack;
     this.lineShape2.X1 = 2;
     this.lineShape2.X2 = 453;
     this.lineShape2.Y1 = 176;
     this.lineShape2.Y2 = 176;
     //
     // pdtimagen
     //
     this.pdtimagen.BackColor = System.Drawing.Color.Transparent;
     this.pdtimagen.Image = global::BapFormulariosNet.Properties.Resources.anulado;
     this.pdtimagen.Location = new System.Drawing.Point(378, 286);
     this.pdtimagen.Name = "pdtimagen";
     this.pdtimagen.Size = new System.Drawing.Size(262, 135);
     this.pdtimagen.TabIndex = 96;
     this.pdtimagen.TabStop = false;
     //
     // lstListaprec
     //
     this.lstListaprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.lstListaprec.FormattingEnabled = true;
     this.lstListaprec.Location = new System.Drawing.Point(873, 99);
     this.lstListaprec.Name = "lstListaprec";
     this.lstListaprec.Size = new System.Drawing.Size(113, 21);
     this.lstListaprec.TabIndex = 98;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(870, 78);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(85, 13);
     this.label22.TabIndex = 99;
     this.label22.Text = "Lista de Precios:";
     //
     // btnextraersunat
     //
     this.btnextraersunat.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnextraersunat.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnextraersunat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnextraersunat.Image = global::BapFormulariosNet.Properties.Resources.go_sunat1;
     this.btnextraersunat.Location = new System.Drawing.Point(256, 80);
     this.btnextraersunat.Name = "btnextraersunat";
     this.btnextraersunat.Size = new System.Drawing.Size(90, 23);
     this.btnextraersunat.TabIndex = 100;
     this.btnextraersunat.ToolTip = "Extrae Datos";
     this.btnextraersunat.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btnextraersunat.Click += new System.EventHandler(this.btnextraersunat_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(466, 76);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(401, 137);
     this.xtraTabControl1.TabIndex = 101;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.canticombo);
     this.xtraTabPage3.Controls.Add(this.label26);
     this.xtraTabPage3.Controls.Add(this.label25);
     this.xtraTabPage3.Controls.Add(this.preccombo);
     this.xtraTabPage3.Controls.Add(this.princombo);
     this.xtraTabPage3.Controls.Add(this.glosa);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage3.Text = "Observaciones";
     //
     // canticombo
     //
     this.canticombo.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.canticombo.Location = new System.Drawing.Point(295, 30);
     this.canticombo.Name = "canticombo";
     this.canticombo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.canticombo.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.canticombo.Size = new System.Drawing.Size(67, 20);
     this.canticombo.TabIndex = 87;
     this.canticombo.EditValueChanged += new System.EventHandler(this.canticombo_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(239, 64);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(55, 13);
     this.label26.TabIndex = 86;
     this.label26.Text = "Prec/Unit:";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(210, 34);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(84, 13);
     this.label25.TabIndex = 85;
     this.label25.Text = "Nro de Combos:";
     //
     // preccombo
     //
     this.preccombo.Location = new System.Drawing.Point(295, 60);
     this.preccombo.Name = "preccombo";
     this.preccombo.ReadOnly = true;
     this.preccombo.Size = new System.Drawing.Size(67, 21);
     this.preccombo.TabIndex = 83;
     this.preccombo.Text = "0.00";
     this.preccombo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // princombo
     //
     this.princombo.AutoSize = true;
     this.princombo.Location = new System.Drawing.Point(219, 9);
     this.princombo.Name = "princombo";
     this.princombo.Size = new System.Drawing.Size(151, 17);
     this.princombo.TabIndex = 81;
     this.princombo.Text = "Imprimir en Detalle Combo";
     this.princombo.UseVisualStyleBackColor = true;
     this.princombo.CheckedChanged += new System.EventHandler(this.princombo_CheckedChanged);
     //
     // glosa
     //
     this.glosa.Location = new System.Drawing.Point(18, 9);
     this.glosa.Multiline = true;
     this.glosa.Name = "glosa";
     this.glosa.Size = new System.Drawing.Size(186, 72);
     this.glosa.TabIndex = 80;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.label23);
     this.xtraTabPage1.Controls.Add(this.importtarj);
     this.xtraTabPage1.Controls.Add(this.btn_del);
     this.xtraTabPage1.Controls.Add(this.btn_add);
     this.xtraTabPage1.Controls.Add(this.lstTarjGroup);
     this.xtraTabPage1.Controls.Add(this.dgbtarjetas);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage1.Text = "Pago con Tarjeta";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(73, 83);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(50, 13);
     this.label23.TabIndex = 101;
     this.label23.Text = "Total >>";
     //
     // importtarj
     //
     this.importtarj.Location = new System.Drawing.Point(129, 80);
     this.importtarj.MaxLength = 8;
     this.importtarj.Name = "importtarj";
     this.importtarj.Size = new System.Drawing.Size(69, 21);
     this.importtarj.TabIndex = 100;
     this.importtarj.Text = "0.00";
     this.importtarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lstTarjGroup
     //
     this.lstTarjGroup.FormattingEnabled = true;
     this.lstTarjGroup.Location = new System.Drawing.Point(253, 12);
     this.lstTarjGroup.Name = "lstTarjGroup";
     this.lstTarjGroup.Size = new System.Drawing.Size(116, 56);
     this.lstTarjGroup.TabIndex = 97;
     //
     // dgbtarjetas
     //
     this.dgbtarjetas.AllowUserToAddRows = false;
     this.dgbtarjetas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgbtarjetas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._tarjetalogo,
     this._tarjetaid,
     this._tarjetaname,
     this._tarjetanum,
     this._tarjetaimpo,
     this._ddnni});
     this.dgbtarjetas.Location = new System.Drawing.Point(5, 12);
     this.dgbtarjetas.Name = "dgbtarjetas";
     this.dgbtarjetas.ReadOnly = true;
     this.dgbtarjetas.RowHeadersVisible = false;
     this.dgbtarjetas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgbtarjetas.Size = new System.Drawing.Size(214, 68);
     this.dgbtarjetas.TabIndex = 96;
     //
     // _tarjetalogo
     //
     this._tarjetalogo.DataPropertyName = "tarjetalogo";
     this._tarjetalogo.HeaderText = "TarJ";
     this._tarjetalogo.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Zoom;
     this._tarjetalogo.Name = "_tarjetalogo";
     this._tarjetalogo.ReadOnly = true;
     this._tarjetalogo.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._tarjetalogo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._tarjetalogo.Width = 40;
     //
     // _tarjetaid
     //
     this._tarjetaid.DataPropertyName = "tarjetaid";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._tarjetaid.DefaultCellStyle = dataGridViewCellStyle10;
     this._tarjetaid.HeaderText = "Cod";
     this._tarjetaid.Name = "_tarjetaid";
     this._tarjetaid.ReadOnly = true;
     this._tarjetaid.Visible = false;
     this._tarjetaid.Width = 30;
     //
     // _tarjetaname
     //
     this._tarjetaname.DataPropertyName = "tarjetaname";
     this._tarjetaname.HeaderText = "Nom";
     this._tarjetaname.Name = "_tarjetaname";
     this._tarjetaname.ReadOnly = true;
     this._tarjetaname.Visible = false;
     //
     // _tarjetanum
     //
     this._tarjetanum.DataPropertyName = "tarjetanume";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this._tarjetanum.DefaultCellStyle = dataGridViewCellStyle11;
     this._tarjetanum.HeaderText = "Aprob.";
     this._tarjetanum.Name = "_tarjetanum";
     this._tarjetanum.ReadOnly = true;
     this._tarjetanum.Width = 80;
     //
     // _tarjetaimpo
     //
     this._tarjetaimpo.DataPropertyName = "tarjetaimpo";
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle12.Format = "N2";
     dataGridViewCellStyle12.NullValue = null;
     this._tarjetaimpo.DefaultCellStyle = dataGridViewCellStyle12;
     this._tarjetaimpo.HeaderText = "Importe";
     this._tarjetaimpo.Name = "_tarjetaimpo";
     this._tarjetaimpo.ReadOnly = true;
     this._tarjetaimpo.Width = 80;
     //
     // _ddnni
     //
     this._ddnni.DataPropertyName = "ddnni";
     this._ddnni.HeaderText = "Dni";
     this._ddnni.Name = "_ddnni";
     this._ddnni.ReadOnly = true;
     this._ddnni.Visible = false;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.numnotac);
     this.xtraTabPage2.Controls.Add(this.sernotac);
     this.xtraTabPage2.Controls.Add(this.tipnotac);
     this.xtraTabPage2.Controls.Add(this.numguia);
     this.xtraTabPage2.Controls.Add(this.serguia);
     this.xtraTabPage2.Controls.Add(this.tipguia);
     this.xtraTabPage2.Controls.Add(this.numfac);
     this.xtraTabPage2.Controls.Add(this.serfac);
     this.xtraTabPage2.Controls.Add(this.tipfac);
     this.xtraTabPage2.Controls.Add(this.recep_fecha);
     this.xtraTabPage2.Controls.Add(this.recep_dni);
     this.xtraTabPage2.Controls.Add(this.recep_name);
     this.xtraTabPage2.Controls.Add(this.chkNC);
     this.xtraTabPage2.Controls.Add(this.chkGR);
     this.xtraTabPage2.Controls.Add(this.chkFA);
     this.xtraTabPage2.Controls.Add(this.fechnotac);
     this.xtraTabPage2.Controls.Add(this.fechguia);
     this.xtraTabPage2.Controls.Add(this.fechfac);
     this.xtraTabPage2.Controls.Add(this.label29);
     this.xtraTabPage2.Controls.Add(this.label28);
     this.xtraTabPage2.Controls.Add(this.label27);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage2.Text = "Docs Referencia";
     //
     // numnotac
     //
     //
     //
     //
     this.numnotac.Border.Class = "TextBoxBorder";
     this.numnotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numnotac.ButtonCustom.Tooltip = "";
     this.numnotac.ButtonCustom2.Tooltip = "";
     this.numnotac.Location = new System.Drawing.Point(88, 60);
     this.numnotac.MaxLength = 10;
     this.numnotac.Name = "numnotac";
     this.numnotac.PreventEnterBeep = true;
     this.numnotac.Size = new System.Drawing.Size(79, 21);
     this.numnotac.TabIndex = 94;
     //
     // sernotac
     //
     //
     //
     //
     this.sernotac.Border.Class = "TextBoxBorder";
     this.sernotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.sernotac.ButtonCustom.Tooltip = "";
     this.sernotac.ButtonCustom2.Tooltip = "";
     this.sernotac.Location = new System.Drawing.Point(49, 60);
     this.sernotac.MaxLength = 4;
     this.sernotac.Name = "sernotac";
     this.sernotac.PreventEnterBeep = true;
     this.sernotac.Size = new System.Drawing.Size(37, 21);
     this.sernotac.TabIndex = 93;
     //
     // tipnotac
     //
     this.tipnotac.DisplayMember = "Text";
     this.tipnotac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipnotac.FormattingEnabled = true;
     this.tipnotac.ItemHeight = 15;
     this.tipnotac.Items.AddRange(new object[] {
     this.comboItem5});
     this.tipnotac.Location = new System.Drawing.Point(6, 60);
     this.tipnotac.Name = "tipnotac";
     this.tipnotac.Size = new System.Drawing.Size(40, 21);
     this.tipnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipnotac.TabIndex = 92;
     this.tipnotac.Text = "NC";
     //
     // comboItem5
     //
     this.comboItem5.Text = "NC";
     //
     // numguia
     //
     //
     //
     //
     this.numguia.Border.Class = "TextBoxBorder";
     this.numguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numguia.ButtonCustom.Tooltip = "";
     this.numguia.ButtonCustom2.Tooltip = "";
     this.numguia.Location = new System.Drawing.Point(88, 36);
     this.numguia.MaxLength = 10;
     this.numguia.Name = "numguia";
     this.numguia.PreventEnterBeep = true;
     this.numguia.Size = new System.Drawing.Size(79, 21);
     this.numguia.TabIndex = 91;
     //
     // serguia
     //
     //
     //
     //
     this.serguia.Border.Class = "TextBoxBorder";
     this.serguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serguia.ButtonCustom.Tooltip = "";
     this.serguia.ButtonCustom2.Tooltip = "";
     this.serguia.Location = new System.Drawing.Point(49, 36);
     this.serguia.MaxLength = 4;
     this.serguia.Name = "serguia";
     this.serguia.PreventEnterBeep = true;
     this.serguia.Size = new System.Drawing.Size(37, 21);
     this.serguia.TabIndex = 90;
     //
     // tipguia
     //
     this.tipguia.DisplayMember = "Text";
     this.tipguia.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipguia.FormattingEnabled = true;
     this.tipguia.ItemHeight = 15;
     this.tipguia.Items.AddRange(new object[] {
     this.comboItem3});
     this.tipguia.Location = new System.Drawing.Point(6, 36);
     this.tipguia.Name = "tipguia";
     this.tipguia.Size = new System.Drawing.Size(40, 21);
     this.tipguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipguia.TabIndex = 89;
     this.tipguia.Text = "GR";
     //
     // comboItem3
     //
     this.comboItem3.Text = "GR";
     //
     // numfac
     //
     //
     //
     //
     this.numfac.Border.Class = "TextBoxBorder";
     this.numfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numfac.ButtonCustom.Tooltip = "";
     this.numfac.ButtonCustom2.Tooltip = "";
     this.numfac.Location = new System.Drawing.Point(88, 12);
     this.numfac.MaxLength = 10;
     this.numfac.Name = "numfac";
     this.numfac.PreventEnterBeep = true;
     this.numfac.Size = new System.Drawing.Size(79, 21);
     this.numfac.TabIndex = 88;
     this.numfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numfac_KeyDown);
     //
     // serfac
     //
     //
     //
     //
     this.serfac.Border.Class = "TextBoxBorder";
     this.serfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serfac.ButtonCustom.Tooltip = "";
     this.serfac.ButtonCustom2.Tooltip = "";
     this.serfac.Location = new System.Drawing.Point(49, 12);
     this.serfac.MaxLength = 4;
     this.serfac.Name = "serfac";
     this.serfac.PreventEnterBeep = true;
     this.serfac.Size = new System.Drawing.Size(37, 21);
     this.serfac.TabIndex = 87;
     this.serfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.serfac_KeyDown);
     //
     // tipfac
     //
     this.tipfac.DisplayMember = "Text";
     this.tipfac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipfac.FormattingEnabled = true;
     this.tipfac.ItemHeight = 15;
     this.tipfac.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.tipfac.Location = new System.Drawing.Point(6, 12);
     this.tipfac.Name = "tipfac";
     this.tipfac.Size = new System.Drawing.Size(40, 21);
     this.tipfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipfac.TabIndex = 86;
     //
     // comboItem1
     //
     this.comboItem1.Text = "FA";
     //
     // comboItem2
     //
     this.comboItem2.Text = "BV";
     //
     // recep_fecha
     //
     //
     //
     //
     this.recep_fecha.BackgroundStyle.Class = "DateTimeInputBackground";
     this.recep_fecha.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.ButtonClear.Tooltip = "";
     this.recep_fecha.ButtonCustom.Tooltip = "";
     this.recep_fecha.ButtonCustom2.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.recep_fecha.ButtonDropDown.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Visible = true;
     this.recep_fecha.ButtonFreeText.Tooltip = "";
     this.recep_fecha.IsPopupCalendarOpen = false;
     this.recep_fecha.Location = new System.Drawing.Point(297, 79);
     //
     //
     //
     this.recep_fecha.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.recep_fecha.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.recep_fecha.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.recep_fecha.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.TodayButtonVisible = true;
     this.recep_fecha.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.recep_fecha.Name = "recep_fecha";
     this.recep_fecha.Size = new System.Drawing.Size(82, 21);
     this.recep_fecha.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.recep_fecha.TabIndex = 85;
     //
     // recep_dni
     //
     //
     //
     //
     this.recep_dni.Border.Class = "TextBoxBorder";
     this.recep_dni.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_dni.ButtonCustom.Tooltip = "";
     this.recep_dni.ButtonCustom2.Tooltip = "";
     this.recep_dni.Location = new System.Drawing.Point(297, 58);
     this.recep_dni.MaxLength = 8;
     this.recep_dni.Name = "recep_dni";
     this.recep_dni.PreventEnterBeep = true;
     this.recep_dni.Size = new System.Drawing.Size(83, 21);
     this.recep_dni.TabIndex = 84;
     //
     // recep_name
     //
     //
     //
     //
     this.recep_name.Border.Class = "TextBoxBorder";
     this.recep_name.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_name.ButtonCustom.Tooltip = "";
     this.recep_name.ButtonCustom2.Tooltip = "";
     this.recep_name.Location = new System.Drawing.Point(269, 21);
     this.recep_name.MaxLength = 100;
     this.recep_name.Multiline = true;
     this.recep_name.Name = "recep_name";
     this.recep_name.PreventEnterBeep = true;
     this.recep_name.Size = new System.Drawing.Size(111, 36);
     this.recep_name.TabIndex = 83;
     //
     // chkNC
     //
     //
     //
     //
     this.chkNC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkNC.Location = new System.Drawing.Point(247, 58);
     this.chkNC.Name = "chkNC";
     this.chkNC.Size = new System.Drawing.Size(16, 23);
     this.chkNC.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkNC.TabIndex = 82;
     this.chkNC.CheckedChanged += new System.EventHandler(this.chkNC_CheckedChanged);
     //
     // chkGR
     //
     //
     //
     //
     this.chkGR.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkGR.Location = new System.Drawing.Point(247, 36);
     this.chkGR.Name = "chkGR";
     this.chkGR.Size = new System.Drawing.Size(16, 23);
     this.chkGR.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkGR.TabIndex = 81;
     this.chkGR.CheckedChanged += new System.EventHandler(this.chkGR_CheckedChanged);
     //
     // chkFA
     //
     //
     //
     //
     this.chkFA.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkFA.Location = new System.Drawing.Point(247, 12);
     this.chkFA.Name = "chkFA";
     this.chkFA.Size = new System.Drawing.Size(16, 23);
     this.chkFA.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkFA.TabIndex = 80;
     this.chkFA.CheckedChanged += new System.EventHandler(this.chkFA_CheckedChanged);
     //
     // fechnotac
     //
     //
     //
     //
     this.fechnotac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechnotac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.ButtonClear.Tooltip = "";
     this.fechnotac.ButtonCustom.Tooltip = "";
     this.fechnotac.ButtonCustom2.Tooltip = "";
     this.fechnotac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechnotac.ButtonDropDown.Tooltip = "";
     this.fechnotac.ButtonDropDown.Visible = true;
     this.fechnotac.ButtonFreeText.Tooltip = "";
     this.fechnotac.IsPopupCalendarOpen = false;
     this.fechnotac.Location = new System.Drawing.Point(168, 59);
     //
     //
     //
     this.fechnotac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechnotac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechnotac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechnotac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.TodayButtonVisible = true;
     this.fechnotac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechnotac.Name = "fechnotac";
     this.fechnotac.Size = new System.Drawing.Size(82, 21);
     this.fechnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechnotac.TabIndex = 79;
     //
     // fechguia
     //
     //
     //
     //
     this.fechguia.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechguia.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.ButtonClear.Tooltip = "";
     this.fechguia.ButtonCustom.Tooltip = "";
     this.fechguia.ButtonCustom2.Tooltip = "";
     this.fechguia.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechguia.ButtonDropDown.Tooltip = "";
     this.fechguia.ButtonDropDown.Visible = true;
     this.fechguia.ButtonFreeText.Tooltip = "";
     this.fechguia.IsPopupCalendarOpen = false;
     this.fechguia.Location = new System.Drawing.Point(168, 36);
     //
     //
     //
     this.fechguia.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechguia.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechguia.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechguia.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.TodayButtonVisible = true;
     this.fechguia.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechguia.Name = "fechguia";
     this.fechguia.Size = new System.Drawing.Size(82, 21);
     this.fechguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechguia.TabIndex = 78;
     //
     // fechfac
     //
     //
     //
     //
     this.fechfac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechfac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.ButtonClear.Tooltip = "";
     this.fechfac.ButtonCustom.Tooltip = "";
     this.fechfac.ButtonCustom2.Tooltip = "";
     this.fechfac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechfac.ButtonDropDown.Tooltip = "";
     this.fechfac.ButtonDropDown.Visible = true;
     this.fechfac.ButtonFreeText.Tooltip = "";
     this.fechfac.IsPopupCalendarOpen = false;
     this.fechfac.Location = new System.Drawing.Point(168, 12);
     //
     //
     //
     this.fechfac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechfac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechfac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechfac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.TodayButtonVisible = true;
     this.fechfac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechfac.Name = "fechfac";
     this.fechfac.Size = new System.Drawing.Size(82, 21);
     this.fechfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechfac.TabIndex = 77;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(225, 84);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(73, 13);
     this.label29.TabIndex = 72;
     this.label29.Text = "Fecha Recep:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(269, 58);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(29, 13);
     this.label28.TabIndex = 69;
     this.label28.Text = "DNI:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(271, 9);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(55, 13);
     this.label27.TabIndex = 67;
     this.label27.Text = "Receptor:";
     //
     // Frm_ventas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(993, 560);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnextraersunat);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.lstListaprec);
     this.Controls.Add(this.pdtimagen);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.telef);
     this.Controls.Add(this.vendpername);
     this.Controls.Add(this.vendperid);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.ctacte);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.griddetallemov);
     this.Controls.Add(this.direc);
     this.Controls.Add(this.ctactename);
     this.Controls.Add(this.nmruc);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.tipoclieprov);
     this.Controls.Add(this.lblruc);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_ventas";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Modulo de Ventas";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_movimiento_FormClosing);
     this.Load += new System.EventHandler(this.Frm_ventas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_movimiento_KeyDown);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).EndInit();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_CancelacionesCobranzas));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtCuentaname = new System.Windows.Forms.TextBox();
     this.GroupBox6 = new System.Windows.Forms.GroupBox();
     this.rbAnalisis2 = new System.Windows.Forms.RadioButton();
     this.rbAnalisis1 = new System.Windows.Forms.RadioButton();
     this.Label3 = new System.Windows.Forms.Label();
     this.txtGlosa = new System.Windows.Forms.TextBox();
     this.btnSeleccionarproveedores = new System.Windows.Forms.Button();
     this.GroupBox10 = new System.Windows.Forms.GroupBox();
     this.rbMultiplesdetalles = new System.Windows.Forms.RadioButton();
     this.rbDetalle = new System.Windows.Forms.RadioButton();
     this.chkCuenta = new System.Windows.Forms.CheckBox();
     this.txtCtactename = new System.Windows.Forms.TextBox();
     this.txtCuenta = new System.Windows.Forms.TextBox();
     this.btnGenerarPendientes = new System.Windows.Forms.Button();
     this.txtRuc = new System.Windows.Forms.TextBox();
     this.TabCancelaciones = new System.Windows.Forms.TabControl();
     this.TabPage1 = new System.Windows.Forms.TabPage();
     this.cboModalidad = new System.Windows.Forms.ComboBox();
     this.label21 = new System.Windows.Forms.Label();
     this.txtcuentaid = new System.Windows.Forms.TextBox();
     this.cboFefectivo = new System.Windows.Forms.ComboBox();
     this.label9 = new System.Windows.Forms.Label();
     this.cboBanco = new System.Windows.Forms.ComboBox();
     this.cboFpago = new System.Windows.Forms.ComboBox();
     this.examinar = new System.Windows.Forms.DataGridView();
     this.selecciona = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.ctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.debehaber = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pedidoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.num_op = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cuentaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipoper = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cuentaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechvenc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.moneda = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.saldo1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.saldo2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.monedap = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pagosoles = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pagodolares = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.asiento = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipcamb = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glosa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.porcdetraccion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.original1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.original2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fEmision = new System.Windows.Forms.DateTimePicker();
     this.txtTipCamb = new System.Windows.Forms.TextBox();
     this.txtnomdetalle = new System.Windows.Forms.TextBox();
     this.btnPagoauto = new System.Windows.Forms.Button();
     this.cboMoneda = new System.Windows.Forms.ComboBox();
     this.txtmontoapagar = new System.Windows.Forms.TextBox();
     this.GroupBox5 = new System.Windows.Forms.GroupBox();
     this.Label6 = new System.Windows.Forms.Label();
     this.Label7 = new System.Windows.Forms.Label();
     this.lbldolaresseleccionado = new System.Windows.Forms.Label();
     this.lblsolesseleccionado = new System.Windows.Forms.Label();
     this.txtNumpago = new System.Windows.Forms.TextBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.txtconcepto = new System.Windows.Forms.TextBox();
     this.txtDsubdiario = new System.Windows.Forms.TextBox();
     this.Label18 = new System.Windows.Forms.Label();
     this.txtCodsubdiario = new System.Windows.Forms.TextBox();
     this.GroupBox21 = new System.Windows.Forms.GroupBox();
     this.rbSoles = new System.Windows.Forms.RadioButton();
     this.rbDolares = new System.Windows.Forms.RadioButton();
     this.Label15 = new System.Windows.Forms.Label();
     this.Label10 = new System.Windows.Forms.Label();
     this.Label5 = new System.Windows.Forms.Label();
     this.txtglosacampo = new System.Windows.Forms.TextBox();
     this.GroupBox4 = new System.Windows.Forms.GroupBox();
     this.btnVervoucher = new System.Windows.Forms.Button();
     this.btnGeneravoucher = new System.Windows.Forms.Button();
     this.btnSalir = new System.Windows.Forms.Button();
     this.GroupBox3 = new System.Windows.Forms.GroupBox();
     this.Label12 = new System.Windows.Forms.Label();
     this.Label11 = new System.Windows.Forms.Label();
     this.lbTotalD = new System.Windows.Forms.Label();
     this.lbTotalS = new System.Windows.Forms.Label();
     this.GroupBox2 = new System.Windows.Forms.GroupBox();
     this.Label2 = new System.Windows.Forms.Label();
     this.Label14 = new System.Windows.Forms.Label();
     this.lbltotregistros = new System.Windows.Forms.Label();
     this.Label13 = new System.Windows.Forms.Label();
     this.lbltotalpagodolares = new System.Windows.Forms.Label();
     this.lbltotalpagosoles = new System.Windows.Forms.Label();
     this.Label8 = new System.Windows.Forms.Label();
     this.txtSiglasubdiario = new System.Windows.Forms.TextBox();
     this.TabPage2 = new System.Windows.Forms.TabPage();
     this.grbsoles = new System.Windows.Forms.GroupBox();
     this.Label20 = new System.Windows.Forms.Label();
     this.txttotalhaberdolares = new System.Windows.Forms.TextBox();
     this.txttotaldebedolares = new System.Windows.Forms.TextBox();
     this.Label17 = new System.Windows.Forms.Label();
     this.txttotalhabersoles = new System.Windows.Forms.TextBox();
     this.Label19 = new System.Windows.Forms.Label();
     this.Label22 = new System.Windows.Forms.Label();
     this.txttotaldebesoles = new System.Windows.Forms.TextBox();
     this.txtdescripcampo = new System.Windows.Forms.TextBox();
     this.gridgastos = new System.Windows.Forms.DataGridView();
     this.asientoitems = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Gasto_cuentaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_cuentaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_debehaber = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_moneda = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ImporteCambio = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_cencosid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_tipdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_fechdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnaddfila = new System.Windows.Forms.Button();
     this.btndelfila = new System.Windows.Forms.Button();
     this.lblregseleccionado = new System.Windows.Forms.Label();
     this.GroupBox1.SuspendLayout();
     this.GroupBox6.SuspendLayout();
     this.GroupBox10.SuspendLayout();
     this.TabCancelaciones.SuspendLayout();
     this.TabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.examinar)).BeginInit();
     this.GroupBox5.SuspendLayout();
     this.GroupBox21.SuspendLayout();
     this.GroupBox4.SuspendLayout();
     this.GroupBox3.SuspendLayout();
     this.GroupBox2.SuspendLayout();
     this.TabPage2.SuspendLayout();
     this.grbsoles.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridgastos)).BeginInit();
     this.SuspendLayout();
     //
     // GroupBox1
     //
     this.GroupBox1.Controls.Add(this.label4);
     this.GroupBox1.Controls.Add(this.txtCuentaname);
     this.GroupBox1.Controls.Add(this.GroupBox6);
     this.GroupBox1.Controls.Add(this.Label3);
     this.GroupBox1.Controls.Add(this.txtGlosa);
     this.GroupBox1.Controls.Add(this.btnSeleccionarproveedores);
     this.GroupBox1.Controls.Add(this.GroupBox10);
     this.GroupBox1.Controls.Add(this.chkCuenta);
     this.GroupBox1.Controls.Add(this.txtCtactename);
     this.GroupBox1.Controls.Add(this.txtCuenta);
     this.GroupBox1.Controls.Add(this.btnGenerarPendientes);
     this.GroupBox1.Controls.Add(this.txtRuc);
     this.GroupBox1.Location = new System.Drawing.Point(5, 2);
     this.GroupBox1.Name = "GroupBox1";
     this.GroupBox1.Size = new System.Drawing.Size(1032, 80);
     this.GroupBox1.TabIndex = 0;
     this.GroupBox1.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label4.Location = new System.Drawing.Point(162, 16);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(48, 13);
     this.label4.TabIndex = 1;
     this.label4.Text = "Ruc-Cód";
     //
     // txtCuentaname
     //
     this.txtCuentaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCuentaname.Location = new System.Drawing.Point(300, 33);
     this.txtCuentaname.MaxLength = 60;
     this.txtCuentaname.Name = "txtCuentaname";
     this.txtCuentaname.Size = new System.Drawing.Size(400, 21);
     this.txtCuentaname.TabIndex = 6;
     //
     // GroupBox6
     //
     this.GroupBox6.Controls.Add(this.rbAnalisis2);
     this.GroupBox6.Controls.Add(this.rbAnalisis1);
     this.GroupBox6.Location = new System.Drawing.Point(860, 9);
     this.GroupBox6.Name = "GroupBox6";
     this.GroupBox6.Size = new System.Drawing.Size(162, 64);
     this.GroupBox6.TabIndex = 11;
     this.GroupBox6.TabStop = false;
     this.GroupBox6.Text = "| Análisis |";
     //
     // rbAnalisis2
     //
     this.rbAnalisis2.AutoSize = true;
     this.rbAnalisis2.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbAnalisis2.Location = new System.Drawing.Point(7, 39);
     this.rbAnalisis2.Name = "rbAnalisis2";
     this.rbAnalisis2.Size = new System.Drawing.Size(146, 17);
     this.rbAnalisis2.TabIndex = 1;
     this.rbAnalisis2.Text = "Con Pedido / Op/C.Costo";
     this.rbAnalisis2.UseVisualStyleBackColor = true;
     this.rbAnalisis2.CheckedChanged += new System.EventHandler(this.rbAnalisis2_CheckedChanged);
     //
     // rbAnalisis1
     //
     this.rbAnalisis1.AutoSize = true;
     this.rbAnalisis1.Checked = true;
     this.rbAnalisis1.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbAnalisis1.Location = new System.Drawing.Point(7, 17);
     this.rbAnalisis1.Name = "rbAnalisis1";
     this.rbAnalisis1.Size = new System.Drawing.Size(135, 17);
     this.rbAnalisis1.TabIndex = 0;
     this.rbAnalisis1.TabStop = true;
     this.rbAnalisis1.Text = "Sin Pedido/Op/C.Costo";
     this.rbAnalisis1.UseVisualStyleBackColor = true;
     this.rbAnalisis1.CheckedChanged += new System.EventHandler(this.rbAnalisis1_CheckedChanged);
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label3.Location = new System.Drawing.Point(177, 58);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(33, 13);
     this.Label3.TabIndex = 7;
     this.Label3.Text = "Glosa";
     //
     // txtGlosa
     //
     this.txtGlosa.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtGlosa.Location = new System.Drawing.Point(217, 54);
     this.txtGlosa.MaxLength = 60;
     this.txtGlosa.Name = "txtGlosa";
     this.txtGlosa.Size = new System.Drawing.Size(483, 21);
     this.txtGlosa.TabIndex = 8;
     //
     // btnSeleccionarproveedores
     //
     this.btnSeleccionarproveedores.Image = ((System.Drawing.Image)(resources.GetObject("btnSeleccionarproveedores.Image")));
     this.btnSeleccionarproveedores.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSeleccionarproveedores.Location = new System.Drawing.Point(716, 13);
     this.btnSeleccionarproveedores.Name = "btnSeleccionarproveedores";
     this.btnSeleccionarproveedores.Size = new System.Drawing.Size(120, 27);
     this.btnSeleccionarproveedores.TabIndex = 9;
     this.btnSeleccionarproveedores.Text = "Seleccionar Rucs";
     this.btnSeleccionarproveedores.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSeleccionarproveedores.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnSeleccionarproveedores.UseVisualStyleBackColor = true;
     this.btnSeleccionarproveedores.Click += new System.EventHandler(this.btnSeleccionarproveedores_Click);
     //
     // GroupBox10
     //
     this.GroupBox10.Controls.Add(this.rbMultiplesdetalles);
     this.GroupBox10.Controls.Add(this.rbDetalle);
     this.GroupBox10.Location = new System.Drawing.Point(8, 9);
     this.GroupBox10.Name = "GroupBox10";
     this.GroupBox10.Size = new System.Drawing.Size(131, 64);
     this.GroupBox10.TabIndex = 0;
     this.GroupBox10.TabStop = false;
     this.GroupBox10.Text = "| Seleccionar |";
     //
     // rbMultiplesdetalles
     //
     this.rbMultiplesdetalles.AutoSize = true;
     this.rbMultiplesdetalles.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbMultiplesdetalles.Location = new System.Drawing.Point(9, 38);
     this.rbMultiplesdetalles.Name = "rbMultiplesdetalles";
     this.rbMultiplesdetalles.Size = new System.Drawing.Size(115, 17);
     this.rbMultiplesdetalles.TabIndex = 1;
     this.rbMultiplesdetalles.Text = "Múltiples Rucs-Cod";
     this.rbMultiplesdetalles.UseVisualStyleBackColor = true;
     this.rbMultiplesdetalles.CheckedChanged += new System.EventHandler(this.rbMultiplesdetalles_CheckedChanged);
     //
     // rbDetalle
     //
     this.rbDetalle.AutoSize = true;
     this.rbDetalle.Checked = true;
     this.rbDetalle.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbDetalle.Location = new System.Drawing.Point(9, 17);
     this.rbDetalle.Name = "rbDetalle";
     this.rbDetalle.Size = new System.Drawing.Size(66, 17);
     this.rbDetalle.TabIndex = 0;
     this.rbDetalle.TabStop = true;
     this.rbDetalle.Text = "Ruc-Cód";
     this.rbDetalle.UseVisualStyleBackColor = true;
     this.rbDetalle.CheckedChanged += new System.EventHandler(this.rbDetalle_CheckedChanged);
     //
     // chkCuenta
     //
     this.chkCuenta.AutoSize = true;
     this.chkCuenta.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkCuenta.ForeColor = System.Drawing.Color.RoyalBlue;
     this.chkCuenta.Location = new System.Drawing.Point(149, 35);
     this.chkCuenta.Name = "chkCuenta";
     this.chkCuenta.Size = new System.Drawing.Size(61, 17);
     this.chkCuenta.TabIndex = 4;
     this.chkCuenta.Text = "Cuenta";
     this.chkCuenta.UseVisualStyleBackColor = true;
     this.chkCuenta.CheckedChanged += new System.EventHandler(this.chkCuenta_CheckedChanged);
     //
     // txtCtactename
     //
     this.txtCtactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCtactename.Location = new System.Drawing.Point(300, 12);
     this.txtCtactename.MaxLength = 60;
     this.txtCtactename.Name = "txtCtactename";
     this.txtCtactename.Size = new System.Drawing.Size(400, 21);
     this.txtCtactename.TabIndex = 3;
     //
     // txtCuenta
     //
     this.txtCuenta.Location = new System.Drawing.Point(217, 33);
     this.txtCuenta.MaxLength = 10;
     this.txtCuenta.Name = "txtCuenta";
     this.txtCuenta.Size = new System.Drawing.Size(80, 21);
     this.txtCuenta.TabIndex = 5;
     this.txtCuenta.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCuenta_KeyDown);
     //
     // btnGenerarPendientes
     //
     this.btnGenerarPendientes.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnGenerarPendientes.Location = new System.Drawing.Point(716, 47);
     this.btnGenerarPendientes.Name = "btnGenerarPendientes";
     this.btnGenerarPendientes.Size = new System.Drawing.Size(120, 24);
     this.btnGenerarPendientes.TabIndex = 10;
     this.btnGenerarPendientes.Text = "Generar Pendientes";
     this.btnGenerarPendientes.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnGenerarPendientes.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnGenerarPendientes.UseVisualStyleBackColor = true;
     this.btnGenerarPendientes.Click += new System.EventHandler(this.btnGenerarPendientes_Click);
     //
     // txtRuc
     //
     this.txtRuc.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtRuc.Location = new System.Drawing.Point(217, 12);
     this.txtRuc.MaxLength = 11;
     this.txtRuc.Name = "txtRuc";
     this.txtRuc.Size = new System.Drawing.Size(80, 21);
     this.txtRuc.TabIndex = 2;
     this.txtRuc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtRuc_KeyDown);
     //
     // TabCancelaciones
     //
     this.TabCancelaciones.Controls.Add(this.TabPage1);
     this.TabCancelaciones.Controls.Add(this.TabPage2);
     this.TabCancelaciones.Location = new System.Drawing.Point(5, 90);
     this.TabCancelaciones.Name = "TabCancelaciones";
     this.TabCancelaciones.SelectedIndex = 0;
     this.TabCancelaciones.Size = new System.Drawing.Size(1032, 447);
     this.TabCancelaciones.TabIndex = 1;
     this.TabCancelaciones.SelectedIndexChanged += new System.EventHandler(this.TabCancelaciones_SelectedIndexChanged);
     //
     // TabPage1
     //
     this.TabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.TabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.TabPage1.Controls.Add(this.cboModalidad);
     this.TabPage1.Controls.Add(this.label21);
     this.TabPage1.Controls.Add(this.txtcuentaid);
     this.TabPage1.Controls.Add(this.cboFefectivo);
     this.TabPage1.Controls.Add(this.label9);
     this.TabPage1.Controls.Add(this.cboBanco);
     this.TabPage1.Controls.Add(this.cboFpago);
     this.TabPage1.Controls.Add(this.examinar);
     this.TabPage1.Controls.Add(this.fEmision);
     this.TabPage1.Controls.Add(this.txtTipCamb);
     this.TabPage1.Controls.Add(this.txtnomdetalle);
     this.TabPage1.Controls.Add(this.btnPagoauto);
     this.TabPage1.Controls.Add(this.cboMoneda);
     this.TabPage1.Controls.Add(this.txtmontoapagar);
     this.TabPage1.Controls.Add(this.GroupBox5);
     this.TabPage1.Controls.Add(this.txtNumpago);
     this.TabPage1.Controls.Add(this.Label1);
     this.TabPage1.Controls.Add(this.txtconcepto);
     this.TabPage1.Controls.Add(this.txtDsubdiario);
     this.TabPage1.Controls.Add(this.Label18);
     this.TabPage1.Controls.Add(this.txtCodsubdiario);
     this.TabPage1.Controls.Add(this.GroupBox21);
     this.TabPage1.Controls.Add(this.Label15);
     this.TabPage1.Controls.Add(this.Label10);
     this.TabPage1.Controls.Add(this.Label5);
     this.TabPage1.Controls.Add(this.txtglosacampo);
     this.TabPage1.Controls.Add(this.GroupBox4);
     this.TabPage1.Controls.Add(this.GroupBox3);
     this.TabPage1.Controls.Add(this.GroupBox2);
     this.TabPage1.Controls.Add(this.Label8);
     this.TabPage1.Controls.Add(this.txtSiglasubdiario);
     this.TabPage1.Location = new System.Drawing.Point(4, 22);
     this.TabPage1.Name = "TabPage1";
     this.TabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage1.Size = new System.Drawing.Size(1024, 421);
     this.TabPage1.TabIndex = 0;
     this.TabPage1.Text = "Selecciona Documentos";
     //
     // cboModalidad
     //
     this.cboModalidad.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboModalidad.DropDownWidth = 240;
     this.cboModalidad.FormattingEnabled = true;
     this.cboModalidad.Items.AddRange(new object[] {
     "1  Sin Detracción/Retetención",
     "2  Detracción a Depositar %",
     "3  A Pagar Menos Detracción %",
     "4  Retención % IGV",
     "5  A Cobrar Menos Detracción/Retención %"});
     this.cboModalidad.Location = new System.Drawing.Point(61, 40);
     this.cboModalidad.Name = "cboModalidad";
     this.cboModalidad.Size = new System.Drawing.Size(190, 21);
     this.cboModalidad.TabIndex = 54;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label21.Location = new System.Drawing.Point(3, 44);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(55, 13);
     this.label21.TabIndex = 53;
     this.label21.Text = "Modalidad";
     //
     // txtcuentaid
     //
     this.txtcuentaid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtcuentaid.Location = new System.Drawing.Point(367, 17);
     this.txtcuentaid.MaxLength = 10;
     this.txtcuentaid.Name = "txtcuentaid";
     this.txtcuentaid.Size = new System.Drawing.Size(71, 21);
     this.txtcuentaid.TabIndex = 52;
     //
     // cboFefectivo
     //
     this.cboFefectivo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboFefectivo.DropDownWidth = 360;
     this.cboFefectivo.FormattingEnabled = true;
     this.cboFefectivo.Location = new System.Drawing.Point(714, 40);
     this.cboFefectivo.Name = "cboFefectivo";
     this.cboFefectivo.Size = new System.Drawing.Size(300, 21);
     this.cboFefectivo.TabIndex = 51;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label9.Location = new System.Drawing.Point(655, 44);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(56, 13);
     this.label9.TabIndex = 50;
     this.label9.Text = "F.Efectivo";
     //
     // cboBanco
     //
     this.cboBanco.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboBanco.DropDownWidth = 240;
     this.cboBanco.FormattingEnabled = true;
     this.cboBanco.Location = new System.Drawing.Point(293, 40);
     this.cboBanco.Name = "cboBanco";
     this.cboBanco.Size = new System.Drawing.Size(220, 21);
     this.cboBanco.TabIndex = 13;
     //
     // cboFpago
     //
     this.cboFpago.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboFpago.DropDownWidth = 360;
     this.cboFpago.FormattingEnabled = true;
     this.cboFpago.Location = new System.Drawing.Point(607, 17);
     this.cboFpago.Name = "cboFpago";
     this.cboFpago.Size = new System.Drawing.Size(320, 21);
     this.cboFpago.TabIndex = 9;
     //
     // examinar
     //
     this.examinar.AllowUserToAddRows = false;
     this.examinar.AllowUserToResizeRows = false;
     this.examinar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.examinar.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Sunken;
     this.examinar.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.examinar.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.examinar.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.examinar.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.selecciona,
     this.ctactename,
     this.debehaber,
     this.pedidoid,
     this.num_op,
     this.cuentaname,
     this.tipoper,
     this.cuentaid,
     this.tipdoc,
     this.serdoc,
     this.numdoc,
     this.fechdoc,
     this.fechvenc,
     this.moneda,
     this.saldo1,
     this.saldo2,
     this.monedap,
     this.pagosoles,
     this.pagodolares,
     this.asiento,
     this.tipcamb,
     this.glosa,
     this.porcdetraccion,
     this.original1,
     this.original2});
     this.examinar.Location = new System.Drawing.Point(6, 67);
     this.examinar.Name = "examinar";
     this.examinar.RowHeadersVisible = false;
     this.examinar.RowTemplate.Height = 20;
     this.examinar.Size = new System.Drawing.Size(1009, 252);
     this.examinar.TabIndex = 16;
     this.examinar.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.examinar_CellBeginEdit);
     this.examinar.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.examinar_CellContentClick);
     this.examinar.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.examinar_CellValueChanged);
     this.examinar.RowPrePaint += new System.Windows.Forms.DataGridViewRowPrePaintEventHandler(this.examinar_RowPrePaint);
     this.examinar.SelectionChanged += new System.EventHandler(this.examinar_SelectionChanged);
     this.examinar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.examinar_KeyDown);
     //
     // selecciona
     //
     this.selecciona.DataPropertyName = "selecciona";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.NullValue = false;
     this.selecciona.DefaultCellStyle = dataGridViewCellStyle2;
     this.selecciona.HeaderText = "X";
     this.selecciona.Name = "selecciona";
     this.selecciona.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.selecciona.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.selecciona.ToolTipText = "\"Click - Check\"  para Seleccionar";
     this.selecciona.Width = 30;
     //
     // ctactename
     //
     this.ctactename.DataPropertyName = "ctactename";
     this.ctactename.HeaderText = "Cta.Cte. Nombre";
     this.ctactename.Name = "ctactename";
     this.ctactename.Visible = false;
     //
     // debehaber
     //
     this.debehaber.DataPropertyName = "debehaber";
     this.debehaber.HeaderText = "DebeHaber";
     this.debehaber.Name = "debehaber";
     this.debehaber.Visible = false;
     //
     // pedidoid
     //
     this.pedidoid.DataPropertyName = "pedidoid";
     this.pedidoid.HeaderText = "Pedido";
     this.pedidoid.Name = "pedidoid";
     this.pedidoid.Visible = false;
     this.pedidoid.Width = 70;
     //
     // num_op
     //
     this.num_op.DataPropertyName = "num_op";
     this.num_op.HeaderText = "OP";
     this.num_op.Name = "num_op";
     this.num_op.Visible = false;
     this.num_op.Width = 70;
     //
     // cuentaname
     //
     this.cuentaname.DataPropertyName = "cuentaname";
     this.cuentaname.HeaderText = "Nombre Cuenta";
     this.cuentaname.Name = "cuentaname";
     this.cuentaname.Visible = false;
     //
     // tipoper
     //
     this.tipoper.DataPropertyName = "tipoper";
     this.tipoper.HeaderText = "P";
     this.tipoper.Name = "tipoper";
     this.tipoper.Width = 22;
     //
     // cuentaid
     //
     this.cuentaid.DataPropertyName = "cuentaid";
     this.cuentaid.HeaderText = "Cuenta";
     this.cuentaid.Name = "cuentaid";
     this.cuentaid.ReadOnly = true;
     this.cuentaid.Width = 68;
     //
     // tipdoc
     //
     this.tipdoc.DataPropertyName = "tipdoc";
     this.tipdoc.HeaderText = "TD";
     this.tipdoc.Name = "tipdoc";
     this.tipdoc.ReadOnly = true;
     this.tipdoc.Width = 26;
     //
     // serdoc
     //
     this.serdoc.DataPropertyName = "serdoc";
     this.serdoc.HeaderText = "Serie";
     this.serdoc.Name = "serdoc";
     this.serdoc.Width = 34;
     //
     // numdoc
     //
     this.numdoc.DataPropertyName = "numdoc";
     this.numdoc.HeaderText = "Número";
     this.numdoc.Name = "numdoc";
     this.numdoc.Width = 70;
     //
     // fechdoc
     //
     this.fechdoc.DataPropertyName = "fechdoc";
     this.fechdoc.HeaderText = "F.Emisión";
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.ReadOnly = true;
     this.fechdoc.Width = 70;
     //
     // fechvenc
     //
     this.fechvenc.DataPropertyName = "fechvenc";
     this.fechvenc.HeaderText = "F.Venc.";
     this.fechvenc.Name = "fechvenc";
     this.fechvenc.Width = 70;
     //
     // moneda
     //
     this.moneda.DataPropertyName = "moneda";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle3.Format = "N2";
     dataGridViewCellStyle3.NullValue = "0";
     this.moneda.DefaultCellStyle = dataGridViewCellStyle3;
     this.moneda.HeaderText = "M";
     this.moneda.Name = "moneda";
     this.moneda.ReadOnly = true;
     this.moneda.Width = 20;
     //
     // saldo1
     //
     this.saldo1.DataPropertyName = "saldo1";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.Format = "N2";
     dataGridViewCellStyle4.NullValue = "0";
     this.saldo1.DefaultCellStyle = dataGridViewCellStyle4;
     this.saldo1.HeaderText = "Saldo S/.";
     this.saldo1.Name = "saldo1";
     this.saldo1.ReadOnly = true;
     this.saldo1.Width = 90;
     //
     // saldo2
     //
     this.saldo2.DataPropertyName = "saldo2";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = "0";
     this.saldo2.DefaultCellStyle = dataGridViewCellStyle5;
     this.saldo2.HeaderText = "Saldo US$";
     this.saldo2.Name = "saldo2";
     this.saldo2.ReadOnly = true;
     this.saldo2.Width = 90;
     //
     // monedap
     //
     this.monedap.DataPropertyName = "monedap";
     this.monedap.HeaderText = "MP";
     this.monedap.Name = "monedap";
     this.monedap.Width = 22;
     //
     // pagosoles
     //
     this.pagosoles.DataPropertyName = "pagosoles";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N2";
     dataGridViewCellStyle6.NullValue = "0";
     this.pagosoles.DefaultCellStyle = dataGridViewCellStyle6;
     this.pagosoles.HeaderText = "Pago Soles";
     this.pagosoles.Name = "pagosoles";
     this.pagosoles.Width = 90;
     //
     // pagodolares
     //
     this.pagodolares.DataPropertyName = "pagodolares";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = "0";
     this.pagodolares.DefaultCellStyle = dataGridViewCellStyle7;
     this.pagodolares.HeaderText = "Pago Dólares";
     this.pagodolares.Name = "pagodolares";
     this.pagodolares.Width = 90;
     //
     // asiento
     //
     this.asiento.DataPropertyName = "asiento";
     this.asiento.HeaderText = "Voucher";
     this.asiento.Name = "asiento";
     this.asiento.Width = 130;
     //
     // tipcamb
     //
     this.tipcamb.DataPropertyName = "tipcamb";
     dataGridViewCellStyle8.NullValue = "0";
     this.tipcamb.DefaultCellStyle = dataGridViewCellStyle8;
     this.tipcamb.HeaderText = "T.C.";
     this.tipcamb.Name = "tipcamb";
     this.tipcamb.Width = 54;
     //
     // glosa
     //
     this.glosa.DataPropertyName = "glosa";
     this.glosa.HeaderText = "Glosa";
     this.glosa.Name = "glosa";
     this.glosa.Visible = false;
     this.glosa.Width = 250;
     //
     // porcdetraccion
     //
     this.porcdetraccion.DataPropertyName = "porcdetraccion";
     this.porcdetraccion.HeaderText = "% Detracción";
     this.porcdetraccion.Name = "porcdetraccion";
     this.porcdetraccion.Visible = false;
     //
     // original1
     //
     this.original1.DataPropertyName = "original1";
     this.original1.HeaderText = "Original S/.";
     this.original1.Name = "original1";
     this.original1.Visible = false;
     //
     // original2
     //
     this.original2.DataPropertyName = "original2";
     this.original2.HeaderText = "Original US$";
     this.original2.Name = "original2";
     this.original2.Visible = false;
     //
     // fEmision
     //
     this.fEmision.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fEmision.Location = new System.Drawing.Point(447, 17);
     this.fEmision.Name = "fEmision";
     this.fEmision.Size = new System.Drawing.Size(87, 21);
     this.fEmision.TabIndex = 5;
     this.fEmision.ValueChanged += new System.EventHandler(this.fEmision_ValueChanged);
     //
     // txtTipCamb
     //
     this.txtTipCamb.Enabled = false;
     this.txtTipCamb.Location = new System.Drawing.Point(538, 17);
     this.txtTipCamb.Name = "txtTipCamb";
     this.txtTipCamb.Size = new System.Drawing.Size(60, 21);
     this.txtTipCamb.TabIndex = 7;
     this.txtTipCamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtnomdetalle
     //
     this.txtnomdetalle.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtnomdetalle.Enabled = false;
     this.txtnomdetalle.Location = new System.Drawing.Point(6, 322);
     this.txtnomdetalle.MaxLength = 11;
     this.txtnomdetalle.Name = "txtnomdetalle";
     this.txtnomdetalle.Size = new System.Drawing.Size(366, 21);
     this.txtnomdetalle.TabIndex = 49;
     //
     // btnPagoauto
     //
     this.btnPagoauto.Location = new System.Drawing.Point(633, 388);
     this.btnPagoauto.Name = "btnPagoauto";
     this.btnPagoauto.Size = new System.Drawing.Size(96, 24);
     this.btnPagoauto.TabIndex = 12;
     this.btnPagoauto.Text = "Cancelar";
     this.btnPagoauto.UseVisualStyleBackColor = true;
     this.btnPagoauto.Visible = false;
     this.btnPagoauto.Click += new System.EventHandler(this.btnPagoauto_Click);
     //
     // cboMoneda
     //
     this.cboMoneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboMoneda.FormattingEnabled = true;
     this.cboMoneda.Location = new System.Drawing.Point(682, 362);
     this.cboMoneda.Name = "cboMoneda";
     this.cboMoneda.Size = new System.Drawing.Size(90, 21);
     this.cboMoneda.TabIndex = 11;
     this.cboMoneda.Visible = false;
     //
     // txtmontoapagar
     //
     this.txtmontoapagar.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtmontoapagar.Location = new System.Drawing.Point(605, 363);
     this.txtmontoapagar.MaxLength = 11;
     this.txtmontoapagar.Name = "txtmontoapagar";
     this.txtmontoapagar.Size = new System.Drawing.Size(74, 21);
     this.txtmontoapagar.TabIndex = 10;
     this.txtmontoapagar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtmontoapagar.Visible = false;
     //
     // GroupBox5
     //
     this.GroupBox5.BackColor = System.Drawing.Color.PaleGoldenrod;
     this.GroupBox5.Controls.Add(this.Label6);
     this.GroupBox5.Controls.Add(this.Label7);
     this.GroupBox5.Controls.Add(this.lbldolaresseleccionado);
     this.GroupBox5.Controls.Add(this.lblsolesseleccionado);
     this.GroupBox5.Location = new System.Drawing.Point(184, 352);
     this.GroupBox5.Name = "GroupBox5";
     this.GroupBox5.Size = new System.Drawing.Size(176, 60);
     this.GroupBox5.TabIndex = 5;
     this.GroupBox5.TabStop = false;
     this.GroupBox5.Text = "Total Seleccionado";
     //
     // Label6
     //
     this.Label6.AutoSize = true;
     this.Label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label6.Location = new System.Drawing.Point(90, 18);
     this.Label6.Name = "Label6";
     this.Label6.Size = new System.Drawing.Size(64, 13);
     this.Label6.TabIndex = 2;
     this.Label6.Text = "Total US$";
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(10, 18);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(58, 13);
     this.Label7.TabIndex = 0;
     this.Label7.Text = "Total S/.";
     //
     // lbldolaresseleccionado
     //
     this.lbldolaresseleccionado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbldolaresseleccionado.Location = new System.Drawing.Point(89, 33);
     this.lbldolaresseleccionado.Name = "lbldolaresseleccionado";
     this.lbldolaresseleccionado.Size = new System.Drawing.Size(83, 20);
     this.lbldolaresseleccionado.TabIndex = 3;
     this.lbldolaresseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblsolesseleccionado
     //
     this.lblsolesseleccionado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblsolesseleccionado.Location = new System.Drawing.Point(4, 33);
     this.lblsolesseleccionado.Name = "lblsolesseleccionado";
     this.lblsolesseleccionado.Size = new System.Drawing.Size(83, 20);
     this.lblsolesseleccionado.TabIndex = 1;
     this.lblsolesseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtNumpago
     //
     this.txtNumpago.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNumpago.Location = new System.Drawing.Point(929, 17);
     this.txtNumpago.MaxLength = 10;
     this.txtNumpago.Name = "txtNumpago";
     this.txtNumpago.Size = new System.Drawing.Size(85, 21);
     this.txtNumpago.TabIndex = 11;
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label1.Location = new System.Drawing.Point(927, 3);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(71, 13);
     this.Label1.TabIndex = 10;
     this.Label1.Text = "Nº Ch/. - Op.";
     //
     // txtconcepto
     //
     this.txtconcepto.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtconcepto.Enabled = false;
     this.txtconcepto.Location = new System.Drawing.Point(373, 322);
     this.txtconcepto.MaxLength = 11;
     this.txtconcepto.Name = "txtconcepto";
     this.txtconcepto.Size = new System.Drawing.Size(354, 21);
     this.txtconcepto.TabIndex = 48;
     //
     // txtDsubdiario
     //
     this.txtDsubdiario.Enabled = false;
     this.txtDsubdiario.Location = new System.Drawing.Point(50, 17);
     this.txtDsubdiario.Name = "txtDsubdiario";
     this.txtDsubdiario.Size = new System.Drawing.Size(315, 21);
     this.txtDsubdiario.TabIndex = 2;
     //
     // Label18
     //
     this.Label18.AutoSize = true;
     this.Label18.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label18.Location = new System.Drawing.Point(4, 3);
     this.Label18.Name = "Label18";
     this.Label18.Size = new System.Drawing.Size(56, 13);
     this.Label18.TabIndex = 0;
     this.Label18.Text = "Sub-Diario";
     //
     // txtCodsubdiario
     //
     this.txtCodsubdiario.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCodsubdiario.Location = new System.Drawing.Point(7, 17);
     this.txtCodsubdiario.MaxLength = 4;
     this.txtCodsubdiario.Name = "txtCodsubdiario";
     this.txtCodsubdiario.Size = new System.Drawing.Size(41, 21);
     this.txtCodsubdiario.TabIndex = 1;
     this.txtCodsubdiario.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCodsubdiario_KeyDown);
     //
     // GroupBox21
     //
     this.GroupBox21.Controls.Add(this.rbSoles);
     this.GroupBox21.Controls.Add(this.rbDolares);
     this.GroupBox21.Location = new System.Drawing.Point(525, 36);
     this.GroupBox21.Name = "GroupBox21";
     this.GroupBox21.Size = new System.Drawing.Size(129, 28);
     this.GroupBox21.TabIndex = 15;
     this.GroupBox21.TabStop = false;
     //
     // rbSoles
     //
     this.rbSoles.AutoSize = true;
     this.rbSoles.Checked = true;
     this.rbSoles.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rbSoles.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(213)))));
     this.rbSoles.Location = new System.Drawing.Point(7, 8);
     this.rbSoles.Name = "rbSoles";
     this.rbSoles.Size = new System.Drawing.Size(50, 17);
     this.rbSoles.TabIndex = 0;
     this.rbSoles.TabStop = true;
     this.rbSoles.Text = "Soles";
     this.rbSoles.UseVisualStyleBackColor = true;
     //
     // rbDolares
     //
     this.rbDolares.AutoSize = true;
     this.rbDolares.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rbDolares.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(213)))));
     this.rbDolares.Location = new System.Drawing.Point(63, 8);
     this.rbDolares.Name = "rbDolares";
     this.rbDolares.Size = new System.Drawing.Size(61, 17);
     this.rbDolares.TabIndex = 1;
     this.rbDolares.Text = "Dólares";
     this.rbDolares.UseVisualStyleBackColor = true;
     //
     // Label15
     //
     this.Label15.AutoSize = true;
     this.Label15.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label15.Location = new System.Drawing.Point(605, 3);
     this.Label15.Name = "Label15";
     this.Label15.Size = new System.Drawing.Size(79, 13);
     this.Label15.TabIndex = 8;
     this.Label15.Text = "Forma de pago";
     //
     // Label10
     //
     this.Label10.AutoSize = true;
     this.Label10.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label10.Location = new System.Drawing.Point(564, 3);
     this.Label10.Name = "Label10";
     this.Label10.Size = new System.Drawing.Size(28, 13);
     this.Label10.TabIndex = 6;
     this.Label10.Text = "T.C.";
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label5.Location = new System.Drawing.Point(445, 3);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(52, 13);
     this.Label5.TabIndex = 4;
     this.Label5.Text = "F.Emisión";
     //
     // txtglosacampo
     //
     this.txtglosacampo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtglosacampo.Enabled = false;
     this.txtglosacampo.Location = new System.Drawing.Point(728, 322);
     this.txtglosacampo.MaxLength = 11;
     this.txtglosacampo.Name = "txtglosacampo";
     this.txtglosacampo.Size = new System.Drawing.Size(286, 21);
     this.txtglosacampo.TabIndex = 37;
     //
     // GroupBox4
     //
     this.GroupBox4.Controls.Add(this.btnVervoucher);
     this.GroupBox4.Controls.Add(this.btnGeneravoucher);
     this.GroupBox4.Controls.Add(this.btnSalir);
     this.GroupBox4.Location = new System.Drawing.Point(783, 343);
     this.GroupBox4.Name = "GroupBox4";
     this.GroupBox4.Size = new System.Drawing.Size(231, 72);
     this.GroupBox4.TabIndex = 13;
     this.GroupBox4.TabStop = false;
     //
     // btnVervoucher
     //
     this.btnVervoucher.Image = ((System.Drawing.Image)(resources.GetObject("btnVervoucher.Image")));
     this.btnVervoucher.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnVervoucher.Location = new System.Drawing.Point(6, 40);
     this.btnVervoucher.Name = "btnVervoucher";
     this.btnVervoucher.Size = new System.Drawing.Size(143, 26);
     this.btnVervoucher.TabIndex = 2;
     this.btnVervoucher.Text = "Ver Voucher Generado";
     this.btnVervoucher.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnVervoucher.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnVervoucher.UseVisualStyleBackColor = true;
     this.btnVervoucher.Click += new System.EventHandler(this.btnVervoucher_Click);
     //
     // btnGeneravoucher
     //
     this.btnGeneravoucher.Image = global::BapFormulariosNet.Properties.Resources.Acepta16;
     this.btnGeneravoucher.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnGeneravoucher.Location = new System.Drawing.Point(7, 12);
     this.btnGeneravoucher.Name = "btnGeneravoucher";
     this.btnGeneravoucher.Size = new System.Drawing.Size(143, 26);
     this.btnGeneravoucher.TabIndex = 0;
     this.btnGeneravoucher.Text = "Generar Voucher";
     this.btnGeneravoucher.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnGeneravoucher.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnGeneravoucher.UseVisualStyleBackColor = true;
     this.btnGeneravoucher.Click += new System.EventHandler(this.btnGeneravoucher_Click);
     //
     // btnSalir
     //
     this.btnSalir.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSalir.Image = global::BapFormulariosNet.Properties.Resources.Cancela16;
     this.btnSalir.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSalir.Location = new System.Drawing.Point(155, 12);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(69, 25);
     this.btnSalir.TabIndex = 1;
     this.btnSalir.Text = "&Salir  ";
     this.btnSalir.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // GroupBox3
     //
     this.GroupBox3.BackColor = System.Drawing.Color.PaleGreen;
     this.GroupBox3.Controls.Add(this.Label12);
     this.GroupBox3.Controls.Add(this.Label11);
     this.GroupBox3.Controls.Add(this.lbTotalD);
     this.GroupBox3.Controls.Add(this.lbTotalS);
     this.GroupBox3.Location = new System.Drawing.Point(6, 352);
     this.GroupBox3.Name = "GroupBox3";
     this.GroupBox3.Size = new System.Drawing.Size(178, 60);
     this.GroupBox3.TabIndex = 4;
     this.GroupBox3.TabStop = false;
     this.GroupBox3.Text = "Total Deuda";
     //
     // Label12
     //
     this.Label12.AutoSize = true;
     this.Label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label12.Location = new System.Drawing.Point(90, 18);
     this.Label12.Name = "Label12";
     this.Label12.Size = new System.Drawing.Size(64, 13);
     this.Label12.TabIndex = 2;
     this.Label12.Text = "Total US$";
     //
     // Label11
     //
     this.Label11.AutoSize = true;
     this.Label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label11.Location = new System.Drawing.Point(10, 18);
     this.Label11.Name = "Label11";
     this.Label11.Size = new System.Drawing.Size(58, 13);
     this.Label11.TabIndex = 0;
     this.Label11.Text = "Total S/.";
     //
     // lbTotalD
     //
     this.lbTotalD.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbTotalD.Location = new System.Drawing.Point(90, 33);
     this.lbTotalD.Name = "lbTotalD";
     this.lbTotalD.Size = new System.Drawing.Size(84, 20);
     this.lbTotalD.TabIndex = 3;
     this.lbTotalD.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lbTotalS
     //
     this.lbTotalS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbTotalS.Location = new System.Drawing.Point(4, 33);
     this.lbTotalS.Name = "lbTotalS";
     this.lbTotalS.Size = new System.Drawing.Size(84, 20);
     this.lbTotalS.TabIndex = 1;
     this.lbTotalS.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // GroupBox2
     //
     this.GroupBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.GroupBox2.Controls.Add(this.Label2);
     this.GroupBox2.Controls.Add(this.Label14);
     this.GroupBox2.Controls.Add(this.lbltotregistros);
     this.GroupBox2.Controls.Add(this.Label13);
     this.GroupBox2.Controls.Add(this.lbltotalpagodolares);
     this.GroupBox2.Controls.Add(this.lbltotalpagosoles);
     this.GroupBox2.Location = new System.Drawing.Point(360, 352);
     this.GroupBox2.Name = "GroupBox2";
     this.GroupBox2.Size = new System.Drawing.Size(240, 60);
     this.GroupBox2.TabIndex = 6;
     this.GroupBox2.TabStop = false;
     this.GroupBox2.Text = "Total a Cancelar";
     //
     // Label2
     //
     this.Label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location = new System.Drawing.Point(178, 18);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(60, 13);
     this.Label2.TabIndex = 4;
     this.Label2.Text = "Registros";
     //
     // Label14
     //
     this.Label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label14.Location = new System.Drawing.Point(95, 18);
     this.Label14.Name = "Label14";
     this.Label14.Size = new System.Drawing.Size(82, 13);
     this.Label14.TabIndex = 2;
     this.Label14.Text = "Total US$";
     //
     // lbltotregistros
     //
     this.lbltotregistros.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotregistros.Location = new System.Drawing.Point(183, 33);
     this.lbltotregistros.Name = "lbltotregistros";
     this.lbltotregistros.Size = new System.Drawing.Size(53, 20);
     this.lbltotregistros.TabIndex = 3;
     this.lbltotregistros.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Label13
     //
     this.Label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label13.Location = new System.Drawing.Point(6, 18);
     this.Label13.Name = "Label13";
     this.Label13.Size = new System.Drawing.Size(82, 13);
     this.Label13.TabIndex = 0;
     this.Label13.Text = "Total S/.";
     this.Label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lbltotalpagodolares
     //
     this.lbltotalpagodolares.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotalpagodolares.Location = new System.Drawing.Point(93, 33);
     this.lbltotalpagodolares.Name = "lbltotalpagodolares";
     this.lbltotalpagodolares.Size = new System.Drawing.Size(88, 20);
     this.lbltotalpagodolares.TabIndex = 3;
     this.lbltotalpagodolares.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lbltotalpagosoles
     //
     this.lbltotalpagosoles.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotalpagosoles.Location = new System.Drawing.Point(3, 33);
     this.lbltotalpagosoles.Name = "lbltotalpagosoles";
     this.lbltotalpagosoles.Size = new System.Drawing.Size(88, 20);
     this.lbltotalpagosoles.TabIndex = 1;
     this.lbltotalpagosoles.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // Label8
     //
     this.Label8.AutoSize = true;
     this.Label8.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label8.Location = new System.Drawing.Point(254, 44);
     this.Label8.Name = "Label8";
     this.Label8.Size = new System.Drawing.Size(36, 13);
     this.Label8.TabIndex = 12;
     this.Label8.Text = "Banco";
     //
     // txtSiglasubdiario
     //
     this.txtSiglasubdiario.Location = new System.Drawing.Point(323, 17);
     this.txtSiglasubdiario.MaxLength = 3;
     this.txtSiglasubdiario.Name = "txtSiglasubdiario";
     this.txtSiglasubdiario.Size = new System.Drawing.Size(41, 21);
     this.txtSiglasubdiario.TabIndex = 3;
     //
     // TabPage2
     //
     this.TabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.TabPage2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.TabPage2.Controls.Add(this.grbsoles);
     this.TabPage2.Controls.Add(this.txtdescripcampo);
     this.TabPage2.Controls.Add(this.gridgastos);
     this.TabPage2.Controls.Add(this.btnaddfila);
     this.TabPage2.Controls.Add(this.btndelfila);
     this.TabPage2.Location = new System.Drawing.Point(4, 22);
     this.TabPage2.Name = "TabPage2";
     this.TabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage2.Size = new System.Drawing.Size(1024, 421);
     this.TabPage2.TabIndex = 1;
     this.TabPage2.Text = "Gastos Adicionales";
     //
     // grbsoles
     //
     this.grbsoles.Controls.Add(this.Label20);
     this.grbsoles.Controls.Add(this.txttotalhaberdolares);
     this.grbsoles.Controls.Add(this.txttotaldebedolares);
     this.grbsoles.Controls.Add(this.Label17);
     this.grbsoles.Controls.Add(this.txttotalhabersoles);
     this.grbsoles.Controls.Add(this.Label19);
     this.grbsoles.Controls.Add(this.Label22);
     this.grbsoles.Controls.Add(this.txttotaldebesoles);
     this.grbsoles.Location = new System.Drawing.Point(723, 296);
     this.grbsoles.Margin = new System.Windows.Forms.Padding(0);
     this.grbsoles.Name = "grbsoles";
     this.grbsoles.Size = new System.Drawing.Size(278, 79);
     this.grbsoles.TabIndex = 28;
     this.grbsoles.TabStop = false;
     //
     // Label20
     //
     this.Label20.AutoSize = true;
     this.Label20.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label20.Location = new System.Drawing.Point(188, 9);
     this.Label20.Name = "Label20";
     this.Label20.Size = new System.Drawing.Size(43, 13);
     this.Label20.TabIndex = 10;
     this.Label20.Text = "Dólares";
     //
     // txttotalhaberdolares
     //
     this.txttotalhaberdolares.Enabled = false;
     this.txttotalhaberdolares.Location = new System.Drawing.Point(162, 46);
     this.txttotalhaberdolares.Name = "txttotalhaberdolares";
     this.txttotalhaberdolares.Size = new System.Drawing.Size(102, 21);
     this.txttotalhaberdolares.TabIndex = 8;
     this.txttotalhaberdolares.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txttotaldebedolares
     //
     this.txttotaldebedolares.Enabled = false;
     this.txttotaldebedolares.Location = new System.Drawing.Point(162, 24);
     this.txttotaldebedolares.Name = "txttotaldebedolares";
     this.txttotaldebedolares.Size = new System.Drawing.Size(102, 21);
     this.txttotaldebedolares.TabIndex = 7;
     this.txttotaldebedolares.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label17
     //
     this.Label17.AutoSize = true;
     this.Label17.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label17.Location = new System.Drawing.Point(5, 50);
     this.Label17.Name = "Label17";
     this.Label17.Size = new System.Drawing.Size(40, 13);
     this.Label17.TabIndex = 4;
     this.Label17.Text = "HABER";
     //
     // txttotalhabersoles
     //
     this.txttotalhabersoles.Enabled = false;
     this.txttotalhabersoles.Location = new System.Drawing.Point(53, 46);
     this.txttotalhabersoles.Name = "txttotalhabersoles";
     this.txttotalhabersoles.Size = new System.Drawing.Size(102, 21);
     this.txttotalhabersoles.TabIndex = 3;
     this.txttotalhabersoles.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label19
     //
     this.Label19.AutoSize = true;
     this.Label19.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label19.Location = new System.Drawing.Point(13, 28);
     this.Label19.Name = "Label19";
     this.Label19.Size = new System.Drawing.Size(32, 13);
     this.Label19.TabIndex = 2;
     this.Label19.Text = "DEBE";
     //
     // Label22
     //
     this.Label22.AutoSize = true;
     this.Label22.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label22.Location = new System.Drawing.Point(64, 9);
     this.Label22.Name = "Label22";
     this.Label22.Size = new System.Drawing.Size(32, 13);
     this.Label22.TabIndex = 0;
     this.Label22.Text = "Soles";
     //
     // txttotaldebesoles
     //
     this.txttotaldebesoles.Enabled = false;
     this.txttotaldebesoles.Location = new System.Drawing.Point(53, 24);
     this.txttotaldebesoles.Name = "txttotaldebesoles";
     this.txttotaldebesoles.Size = new System.Drawing.Size(102, 21);
     this.txttotaldebesoles.TabIndex = 1;
     this.txttotaldebesoles.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtdescripcampo
     //
     this.txtdescripcampo.BackColor = System.Drawing.Color.White;
     this.txtdescripcampo.Enabled = false;
     this.txtdescripcampo.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.txtdescripcampo.Location = new System.Drawing.Point(219, 308);
     this.txtdescripcampo.Name = "txtdescripcampo";
     this.txtdescripcampo.Size = new System.Drawing.Size(473, 21);
     this.txtdescripcampo.TabIndex = 27;
     //
     // gridgastos
     //
     this.gridgastos.AllowUserToAddRows = false;
     this.gridgastos.AllowUserToDeleteRows = false;
     this.gridgastos.AllowUserToResizeColumns = false;
     this.gridgastos.AllowUserToResizeRows = false;
     this.gridgastos.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.gridgastos.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     this.gridgastos.ColumnHeadersHeight = 24;
     this.gridgastos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.asientoitems,
     this.Gasto_cuentaid,
     this.gasto_cuentaname,
     this.gasto_debehaber,
     this.gasto_moneda,
     this.Importe,
     this.ImporteCambio,
     this.gasto_cencosid,
     this.gasto_tipdoc,
     this.gasto_serdoc,
     this.gasto_numdoc,
     this.gasto_fechdoc});
     this.gridgastos.Location = new System.Drawing.Point(9, 20);
     this.gridgastos.MultiSelect = false;
     this.gridgastos.Name = "gridgastos";
     this.gridgastos.RowHeadersWidth = 10;
     dataGridViewCellStyle12.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridgastos.RowsDefaultCellStyle = dataGridViewCellStyle12;
     this.gridgastos.RowTemplate.Height = 20;
     this.gridgastos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridgastos.Size = new System.Drawing.Size(1004, 273);
     this.gridgastos.TabIndex = 24;
     this.gridgastos.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.gridgastos_CellBeginEdit);
     this.gridgastos.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridgastos_CellEndEdit);
     this.gridgastos.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridgastos_CellValueChanged);
     this.gridgastos.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.gridgastos_EditingControlShowing);
     this.gridgastos.SelectionChanged += new System.EventHandler(this.gridgastos_SelectionChanged);
     this.gridgastos.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridgastos_KeyDown);
     //
     // asientoitems
     //
     this.asientoitems.DataPropertyName = "asientoitems";
     this.asientoitems.HeaderText = "Asiento Items";
     this.asientoitems.Name = "asientoitems";
     this.asientoitems.Visible = false;
     //
     // Gasto_cuentaid
     //
     this.Gasto_cuentaid.DataPropertyName = "cuentaid";
     this.Gasto_cuentaid.HeaderText = "Cuenta";
     this.Gasto_cuentaid.Name = "Gasto_cuentaid";
     this.Gasto_cuentaid.Width = 70;
     //
     // gasto_cuentaname
     //
     this.gasto_cuentaname.DataPropertyName = "cuentaname";
     this.gasto_cuentaname.HeaderText = "Descripción";
     this.gasto_cuentaname.Name = "gasto_cuentaname";
     this.gasto_cuentaname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.gasto_cuentaname.Width = 350;
     //
     // gasto_debehaber
     //
     this.gasto_debehaber.DataPropertyName = "debehaber";
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.gasto_debehaber.DefaultCellStyle = dataGridViewCellStyle9;
     this.gasto_debehaber.HeaderText = "D/H";
     this.gasto_debehaber.MaxInputLength = 1;
     this.gasto_debehaber.Name = "gasto_debehaber";
     this.gasto_debehaber.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.gasto_debehaber.Width = 35;
     //
     // gasto_moneda
     //
     this.gasto_moneda.DataPropertyName = "moneda";
     this.gasto_moneda.HeaderText = "MP";
     this.gasto_moneda.Name = "gasto_moneda";
     this.gasto_moneda.Width = 28;
     //
     // Importe
     //
     this.Importe.DataPropertyName = "Importe";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle10.Format = "N2";
     dataGridViewCellStyle10.NullValue = "0";
     this.Importe.DefaultCellStyle = dataGridViewCellStyle10;
     this.Importe.HeaderText = "Importe";
     this.Importe.Name = "Importe";
     this.Importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Importe.Width = 73;
     //
     // ImporteCambio
     //
     this.ImporteCambio.DataPropertyName = "ImporteCambio";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle11.Format = "N2";
     dataGridViewCellStyle11.NullValue = "0";
     this.ImporteCambio.DefaultCellStyle = dataGridViewCellStyle11;
     this.ImporteCambio.HeaderText = "Cambio";
     this.ImporteCambio.Name = "ImporteCambio";
     this.ImporteCambio.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ImporteCambio.Width = 73;
     //
     // gasto_cencosid
     //
     this.gasto_cencosid.DataPropertyName = "cencosid";
     this.gasto_cencosid.HeaderText = "C.Costo";
     this.gasto_cencosid.Name = "gasto_cencosid";
     this.gasto_cencosid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.gasto_cencosid.Width = 60;
     //
     // gasto_tipdoc
     //
     this.gasto_tipdoc.DataPropertyName = "tipdoc";
     this.gasto_tipdoc.HeaderText = "TD";
     this.gasto_tipdoc.Name = "gasto_tipdoc";
     this.gasto_tipdoc.Width = 30;
     //
     // gasto_serdoc
     //
     this.gasto_serdoc.DataPropertyName = "serdoc";
     this.gasto_serdoc.HeaderText = "Serie";
     this.gasto_serdoc.Name = "gasto_serdoc";
     this.gasto_serdoc.Width = 40;
     //
     // gasto_numdoc
     //
     this.gasto_numdoc.DataPropertyName = "numdoc";
     this.gasto_numdoc.HeaderText = "Número";
     this.gasto_numdoc.Name = "gasto_numdoc";
     this.gasto_numdoc.Width = 80;
     //
     // gasto_fechdoc
     //
     this.gasto_fechdoc.DataPropertyName = "fechdoc";
     this.gasto_fechdoc.HeaderText = "Fecha(dd/mm/aaaa)";
     this.gasto_fechdoc.Name = "gasto_fechdoc";
     this.gasto_fechdoc.Width = 110;
     //
     // btnaddfila
     //
     //this.btnaddfila.Image = global::BapFormulariosNet.Properties.Resources.btnAdd;
     this.btnaddfila.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnaddfila.Location = new System.Drawing.Point(10, 305);
     this.btnaddfila.Name = "btnaddfila";
     this.btnaddfila.Size = new System.Drawing.Size(94, 32);
     this.btnaddfila.TabIndex = 25;
     this.btnaddfila.Text = "&Nueva Fila";
     this.btnaddfila.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnaddfila.UseVisualStyleBackColor = true;
     this.btnaddfila.Click += new System.EventHandler(this.btnaddfila_Click);
     //
     // btndelfila
     //
     //this.btndelfila.Image = global::BapFormulariosNet.Properties.Resources.btnDel;
     this.btndelfila.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btndelfila.Location = new System.Drawing.Point(115, 305);
     this.btndelfila.Name = "btndelfila";
     this.btndelfila.Size = new System.Drawing.Size(94, 32);
     this.btndelfila.TabIndex = 26;
     this.btndelfila.Text = "&Eliminar Fila";
     this.btndelfila.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btndelfila.UseVisualStyleBackColor = true;
     this.btndelfila.Click += new System.EventHandler(this.btndelfila_Click);
     //
     // lblregseleccionado
     //
     this.lblregseleccionado.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.lblregseleccionado.Cursor = System.Windows.Forms.Cursors.IBeam;
     this.lblregseleccionado.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblregseleccionado.Location = new System.Drawing.Point(80, 539);
     this.lblregseleccionado.Name = "lblregseleccionado";
     this.lblregseleccionado.Size = new System.Drawing.Size(228, 13);
     this.lblregseleccionado.TabIndex = 3;
     this.lblregseleccionado.Text = "REGISTROS SELECCIONADOS";
     this.lblregseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblregseleccionado.Visible = false;
     //
     // Frm_CancelacionesCobranzas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1042, 543);
     this.Controls.Add(this.lblregseleccionado);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.TabCancelaciones);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_CancelacionesCobranzas";
     this.Text = "Tesoreria - Cobranzas y Pagos";
     this.Activated += new System.EventHandler(this.Frm_CancelacionesCobranzas_Activated);
     this.Load += new System.EventHandler(this.Frm_CancelacionesCobranzas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_CancelacionesCobranzas_KeyDown);
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     this.GroupBox6.ResumeLayout(false);
     this.GroupBox6.PerformLayout();
     this.GroupBox10.ResumeLayout(false);
     this.GroupBox10.PerformLayout();
     this.TabCancelaciones.ResumeLayout(false);
     this.TabPage1.ResumeLayout(false);
     this.TabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.examinar)).EndInit();
     this.GroupBox5.ResumeLayout(false);
     this.GroupBox5.PerformLayout();
     this.GroupBox21.ResumeLayout(false);
     this.GroupBox21.PerformLayout();
     this.GroupBox4.ResumeLayout(false);
     this.GroupBox3.ResumeLayout(false);
     this.GroupBox3.PerformLayout();
     this.GroupBox2.ResumeLayout(false);
     this.TabPage2.ResumeLayout(false);
     this.TabPage2.PerformLayout();
     this.grbsoles.ResumeLayout(false);
     this.grbsoles.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridgastos)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxCreditCardId = new System.Windows.Forms.TextBox();
            uxCreditCardIdLabel = new System.Windows.Forms.Label();
            this.uxCardType     = new System.Windows.Forms.TextBox();
            uxCardTypeLabel     = new System.Windows.Forms.Label();
            this.uxCardNumber   = new System.Windows.Forms.TextBox();
            uxCardNumberLabel   = new System.Windows.Forms.Label();
            this.uxExpMonth     = new System.Windows.Forms.TextBox();
            uxExpMonthLabel     = new System.Windows.Forms.Label();
            this.uxExpYear      = new System.Windows.Forms.TextBox();
            uxExpYearLabel      = new System.Windows.Forms.Label();
            this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxCreditCardIdLabel
            //
            this.uxCreditCardIdLabel.Name     = "uxCreditCardIdLabel";
            this.uxCreditCardIdLabel.Text     = "Credit Card Id:";
            this.uxCreditCardIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxCreditCardIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxCreditCardIdLabel);
            //
            // uxCreditCardId
            //
            this.uxCreditCardId.Name     = "uxCreditCardId";
            this.uxCreditCardId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxCreditCardId);
            this.uxCreditCardId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxCreditCardId);
            //
            // uxCardTypeLabel
            //
            this.uxCardTypeLabel.Name     = "uxCardTypeLabel";
            this.uxCardTypeLabel.Text     = "Card Type:";
            this.uxCardTypeLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxCardTypeLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxCardTypeLabel);
            //
            // uxCardType
            //
            this.uxCardType.Name      = "uxCardType";
            this.uxCardType.Width     = 250;
            this.uxCardType.MaxLength = 50;
            //this.uxTableLayoutPanel.Controls.Add(this.uxCardType);
            this.uxCardType.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxCardType);
            //
            // uxCardNumberLabel
            //
            this.uxCardNumberLabel.Name     = "uxCardNumberLabel";
            this.uxCardNumberLabel.Text     = "Card Number:";
            this.uxCardNumberLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxCardNumberLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxCardNumberLabel);
            //
            // uxCardNumber
            //
            this.uxCardNumber.Name      = "uxCardNumber";
            this.uxCardNumber.Width     = 250;
            this.uxCardNumber.MaxLength = 25;
            //this.uxTableLayoutPanel.Controls.Add(this.uxCardNumber);
            this.uxCardNumber.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxCardNumber);
            //
            // uxExpMonthLabel
            //
            this.uxExpMonthLabel.Name     = "uxExpMonthLabel";
            this.uxExpMonthLabel.Text     = "Exp Month:";
            this.uxExpMonthLabel.Location = new System.Drawing.Point(3, 78);
            this.Controls.Add(this.uxExpMonthLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxExpMonthLabel);
            //
            // uxExpMonth
            //
            this.uxExpMonth.Name = "uxExpMonth";
            //this.uxTableLayoutPanel.Controls.Add(this.uxExpMonth);
            this.uxExpMonth.Location = new System.Drawing.Point(160, 78);
            this.Controls.Add(this.uxExpMonth);
            //
            // uxExpYearLabel
            //
            this.uxExpYearLabel.Name     = "uxExpYearLabel";
            this.uxExpYearLabel.Text     = "Exp Year:";
            this.uxExpYearLabel.Location = new System.Drawing.Point(3, 104);
            this.Controls.Add(this.uxExpYearLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxExpYearLabel);
            //
            // uxExpYear
            //
            this.uxExpYear.Name = "uxExpYear";
            //this.uxTableLayoutPanel.Controls.Add(this.uxExpYear);
            this.uxExpYear.Location = new System.Drawing.Point(160, 104);
            this.Controls.Add(this.uxExpYear);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 130);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 130);
            this.Controls.Add(this.uxModifiedDate);
            //
            // CreditCardEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "CreditCardEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Esempio n. 58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.datetodateprintbutton = new System.Windows.Forms.Button();
     this.balancedataGridView = new System.Windows.Forms.DataGridView();
     this.showbutton = new System.Windows.Forms.Button();
     this.todateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.label1 = new System.Windows.Forms.Label();
     this.fromdateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.debiotamountlabel = new System.Windows.Forms.Label();
     this.creditlabel = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.balancelabel = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.otherdebitlabel = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.totalbalanceprintbutton = new System.Windows.Forms.Button();
     this.printDialog1 = new System.Windows.Forms.PrintDialog();
     this.cashlabel = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.balancedataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.datetodateprintbutton);
     this.groupBox1.Controls.Add(this.balancedataGridView);
     this.groupBox1.Location = new System.Drawing.Point(44, 52);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(973, 475);
     this.groupBox1.TabIndex = 4;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Balance Information";
     //
     // datetodateprintbutton
     //
     this.datetodateprintbutton.Location = new System.Drawing.Point(865, 438);
     this.datetodateprintbutton.Name = "datetodateprintbutton";
     this.datetodateprintbutton.Size = new System.Drawing.Size(86, 31);
     this.datetodateprintbutton.TabIndex = 7;
     this.datetodateprintbutton.Text = "Print";
     this.datetodateprintbutton.UseVisualStyleBackColor = true;
     this.datetodateprintbutton.Click += new System.EventHandler(this.datetodateprintbutton_Click);
     //
     // balancedataGridView
     //
     this.balancedataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.balancedataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.balancedataGridView.Location = new System.Drawing.Point(21, 34);
     this.balancedataGridView.Name = "balancedataGridView";
     this.balancedataGridView.Size = new System.Drawing.Size(930, 397);
     this.balancedataGridView.TabIndex = 0;
     //
     // showbutton
     //
     this.showbutton.Location = new System.Drawing.Point(779, 14);
     this.showbutton.Name = "showbutton";
     this.showbutton.Size = new System.Drawing.Size(86, 31);
     this.showbutton.TabIndex = 6;
     this.showbutton.Text = "Show";
     this.showbutton.UseVisualStyleBackColor = true;
     this.showbutton.Click += new System.EventHandler(this.showbutton_Click);
     //
     // todateTimePicker
     //
     this.todateTimePicker.Location = new System.Drawing.Point(538, 17);
     this.todateTimePicker.Name = "todateTimePicker";
     this.todateTimePicker.Size = new System.Drawing.Size(223, 20);
     this.todateTimePicker.TabIndex = 5;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(503, 19);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(23, 13);
     this.label1.TabIndex = 7;
     this.label1.Text = "To:";
     //
     // fromdateTimePicker
     //
     this.fromdateTimePicker.Location = new System.Drawing.Point(270, 17);
     this.fromdateTimePicker.Name = "fromdateTimePicker";
     this.fromdateTimePicker.Size = new System.Drawing.Size(223, 20);
     this.fromdateTimePicker.TabIndex = 8;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(231, 18);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(33, 13);
     this.label3.TabIndex = 9;
     this.label3.Text = "From:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(1057, 112);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(161, 13);
     this.label2.TabIndex = 10;
     this.label2.Text = "Till Now Total Debit Amount(Tk.)";
     //
     // debiotamountlabel
     //
     this.debiotamountlabel.AutoSize = true;
     this.debiotamountlabel.Location = new System.Drawing.Point(1261, 112);
     this.debiotamountlabel.Name = "debiotamountlabel";
     this.debiotamountlabel.Size = new System.Drawing.Size(28, 13);
     this.debiotamountlabel.TabIndex = 11;
     this.debiotamountlabel.Text = "0.00";
     //
     // creditlabel
     //
     this.creditlabel.AutoSize = true;
     this.creditlabel.Location = new System.Drawing.Point(1261, 74);
     this.creditlabel.Name = "creditlabel";
     this.creditlabel.Size = new System.Drawing.Size(28, 13);
     this.creditlabel.TabIndex = 13;
     this.creditlabel.Text = "0.00";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(1057, 74);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(163, 13);
     this.label5.TabIndex = 12;
     this.label5.Text = "Till Now Total Credit Amount(Tk.)";
     //
     // balancelabel
     //
     this.balancelabel.AutoSize = true;
     this.balancelabel.Location = new System.Drawing.Point(1261, 154);
     this.balancelabel.Name = "balancelabel";
     this.balancelabel.Size = new System.Drawing.Size(28, 13);
     this.balancelabel.TabIndex = 17;
     this.balancelabel.Text = "0.00";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(1041, 154);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(175, 13);
     this.label7.TabIndex = 16;
     this.label7.Text = "Till Now Total Balance Amount(Tk.)";
     //
     // otherdebitlabel
     //
     this.otherdebitlabel.AutoSize = true;
     this.otherdebitlabel.Location = new System.Drawing.Point(1261, 192);
     this.otherdebitlabel.Name = "otherdebitlabel";
     this.otherdebitlabel.Size = new System.Drawing.Size(28, 13);
     this.otherdebitlabel.TabIndex = 15;
     this.otherdebitlabel.Text = "0.00";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(1028, 192);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(188, 13);
     this.label9.TabIndex = 14;
     this.label9.Text = "Till Now Total other Debit Amount(Tk.)";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(1023, 222);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(198, 13);
     this.label6.TabIndex = 20;
     this.label6.Text = "Till Now Total Cash in hand Amount(Tk.)";
     //
     // totalbalanceprintbutton
     //
     this.totalbalanceprintbutton.Location = new System.Drawing.Point(1216, 260);
     this.totalbalanceprintbutton.Name = "totalbalanceprintbutton";
     this.totalbalanceprintbutton.Size = new System.Drawing.Size(86, 31);
     this.totalbalanceprintbutton.TabIndex = 22;
     this.totalbalanceprintbutton.Text = "Print";
     this.totalbalanceprintbutton.UseVisualStyleBackColor = true;
     this.totalbalanceprintbutton.Click += new System.EventHandler(this.totalbalanceprintbutton_Click);
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // cashlabel
     //
     this.cashlabel.AutoSize = true;
     this.cashlabel.Location = new System.Drawing.Point(1261, 222);
     this.cashlabel.Name = "cashlabel";
     this.cashlabel.Size = new System.Drawing.Size(28, 13);
     this.cashlabel.TabIndex = 21;
     this.cashlabel.Text = "0.00";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(454, 447);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(28, 13);
     this.label4.TabIndex = 22;
     this.label4.Text = "0.00";
     //
     // DailyBalanceReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.totalbalanceprintbutton);
     this.Controls.Add(this.cashlabel);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.balancelabel);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.otherdebitlabel);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.creditlabel);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.debiotamountlabel);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.fromdateTimePicker);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.showbutton);
     this.Controls.Add(this.todateTimePicker);
     this.Controls.Add(this.label1);
     this.Name = "DailyBalanceReport";
     this.Size = new System.Drawing.Size(1332, 541);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.balancedataGridView)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxProductId = new System.Windows.Forms.ComboBox();
			uxProductIdLabel = new System.Windows.Forms.Label();
			this.uxVendorId = new System.Windows.Forms.ComboBox();
			uxVendorIdLabel = new System.Windows.Forms.Label();
			this.uxAverageLeadTime = new System.Windows.Forms.TextBox();
			uxAverageLeadTimeLabel = new System.Windows.Forms.Label();
			this.uxStandardPrice = new System.Windows.Forms.TextBox();
			uxStandardPriceLabel = new System.Windows.Forms.Label();
			this.uxLastReceiptCost = new System.Windows.Forms.TextBox();
			uxLastReceiptCostLabel = new System.Windows.Forms.Label();
			this.uxLastReceiptDate = new System.Windows.Forms.DateTimePicker();
			uxLastReceiptDateLabel = new System.Windows.Forms.Label();
			this.uxMinOrderQty = new System.Windows.Forms.TextBox();
			uxMinOrderQtyLabel = new System.Windows.Forms.Label();
			this.uxMaxOrderQty = new System.Windows.Forms.TextBox();
			uxMaxOrderQtyLabel = new System.Windows.Forms.Label();
			this.uxOnOrderQty = new System.Windows.Forms.TextBox();
			uxOnOrderQtyLabel = new System.Windows.Forms.Label();
			this.uxUnitMeasureCode = new System.Windows.Forms.ComboBox();
			uxUnitMeasureCodeLabel = new System.Windows.Forms.Label();
			this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
			uxModifiedDateLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxProductIdLabel
			//
			this.uxProductIdLabel.Name = "uxProductIdLabel";
			this.uxProductIdLabel.Text = "Product Id:";
			this.uxProductIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxProductIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductIdLabel);			
			//
			// uxProductId
			//
			this.uxProductId.Name = "uxProductId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductId);
			this.uxProductId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxProductId);
			//
			// uxVendorIdLabel
			//
			this.uxVendorIdLabel.Name = "uxVendorIdLabel";
			this.uxVendorIdLabel.Text = "Vendor Id:";
			this.uxVendorIdLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxVendorIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxVendorIdLabel);			
			//
			// uxVendorId
			//
			this.uxVendorId.Name = "uxVendorId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxVendorId);
			this.uxVendorId.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxVendorId);
			//
			// uxAverageLeadTimeLabel
			//
			this.uxAverageLeadTimeLabel.Name = "uxAverageLeadTimeLabel";
			this.uxAverageLeadTimeLabel.Text = "Average Lead Time:";
			this.uxAverageLeadTimeLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxAverageLeadTimeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAverageLeadTimeLabel);			
			//
			// uxAverageLeadTime
			//
			this.uxAverageLeadTime.Name = "uxAverageLeadTime";
			//this.uxTableLayoutPanel.Controls.Add(this.uxAverageLeadTime);
			this.uxAverageLeadTime.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxAverageLeadTime);
			//
			// uxStandardPriceLabel
			//
			this.uxStandardPriceLabel.Name = "uxStandardPriceLabel";
			this.uxStandardPriceLabel.Text = "Standard Price:";
			this.uxStandardPriceLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxStandardPriceLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStandardPriceLabel);			
			//
			// uxStandardPrice
			//
			this.uxStandardPrice.Name = "uxStandardPrice";
			//this.uxTableLayoutPanel.Controls.Add(this.uxStandardPrice);
			this.uxStandardPrice.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxStandardPrice);
			//
			// uxLastReceiptCostLabel
			//
			this.uxLastReceiptCostLabel.Name = "uxLastReceiptCostLabel";
			this.uxLastReceiptCostLabel.Text = "Last Receipt Cost:";
			this.uxLastReceiptCostLabel.Location = new System.Drawing.Point(3, 104);
			this.Controls.Add(this.uxLastReceiptCostLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptCostLabel);			
			//
			// uxLastReceiptCost
			//
			this.uxLastReceiptCost.Name = "uxLastReceiptCost";
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptCost);
			this.uxLastReceiptCost.Location = new System.Drawing.Point(160, 104);
			this.Controls.Add(this.uxLastReceiptCost);
			//
			// uxLastReceiptDateLabel
			//
			this.uxLastReceiptDateLabel.Name = "uxLastReceiptDateLabel";
			this.uxLastReceiptDateLabel.Text = "Last Receipt Date:";
			this.uxLastReceiptDateLabel.Location = new System.Drawing.Point(3, 130);
			this.Controls.Add(this.uxLastReceiptDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptDateLabel);			
			//
			// uxLastReceiptDate
			//
			this.uxLastReceiptDate.Name = "uxLastReceiptDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptDate);
			this.uxLastReceiptDate.Location = new System.Drawing.Point(160, 130);
			this.Controls.Add(this.uxLastReceiptDate);
			//
			// uxMinOrderQtyLabel
			//
			this.uxMinOrderQtyLabel.Name = "uxMinOrderQtyLabel";
			this.uxMinOrderQtyLabel.Text = "Min Order Qty:";
			this.uxMinOrderQtyLabel.Location = new System.Drawing.Point(3, 156);
			this.Controls.Add(this.uxMinOrderQtyLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxMinOrderQtyLabel);			
			//
			// uxMinOrderQty
			//
			this.uxMinOrderQty.Name = "uxMinOrderQty";
			//this.uxTableLayoutPanel.Controls.Add(this.uxMinOrderQty);
			this.uxMinOrderQty.Location = new System.Drawing.Point(160, 156);
			this.Controls.Add(this.uxMinOrderQty);
			//
			// uxMaxOrderQtyLabel
			//
			this.uxMaxOrderQtyLabel.Name = "uxMaxOrderQtyLabel";
			this.uxMaxOrderQtyLabel.Text = "Max Order Qty:";
			this.uxMaxOrderQtyLabel.Location = new System.Drawing.Point(3, 182);
			this.Controls.Add(this.uxMaxOrderQtyLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxMaxOrderQtyLabel);			
			//
			// uxMaxOrderQty
			//
			this.uxMaxOrderQty.Name = "uxMaxOrderQty";
			//this.uxTableLayoutPanel.Controls.Add(this.uxMaxOrderQty);
			this.uxMaxOrderQty.Location = new System.Drawing.Point(160, 182);
			this.Controls.Add(this.uxMaxOrderQty);
			//
			// uxOnOrderQtyLabel
			//
			this.uxOnOrderQtyLabel.Name = "uxOnOrderQtyLabel";
			this.uxOnOrderQtyLabel.Text = "On Order Qty:";
			this.uxOnOrderQtyLabel.Location = new System.Drawing.Point(3, 208);
			this.Controls.Add(this.uxOnOrderQtyLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxOnOrderQtyLabel);			
			//
			// uxOnOrderQty
			//
			this.uxOnOrderQty.Name = "uxOnOrderQty";
			//this.uxTableLayoutPanel.Controls.Add(this.uxOnOrderQty);
			this.uxOnOrderQty.Location = new System.Drawing.Point(160, 208);
			this.Controls.Add(this.uxOnOrderQty);
			//
			// uxUnitMeasureCodeLabel
			//
			this.uxUnitMeasureCodeLabel.Name = "uxUnitMeasureCodeLabel";
			this.uxUnitMeasureCodeLabel.Text = "Unit Measure Code:";
			this.uxUnitMeasureCodeLabel.Location = new System.Drawing.Point(3, 234);
			this.Controls.Add(this.uxUnitMeasureCodeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxUnitMeasureCodeLabel);			
			//
			// uxUnitMeasureCode
			//
			this.uxUnitMeasureCode.Name = "uxUnitMeasureCode";
			//this.uxTableLayoutPanel.Controls.Add(this.uxUnitMeasureCode);
			this.uxUnitMeasureCode.Location = new System.Drawing.Point(160, 234);
			this.Controls.Add(this.uxUnitMeasureCode);
			//
			// uxModifiedDateLabel
			//
			this.uxModifiedDateLabel.Name = "uxModifiedDateLabel";
			this.uxModifiedDateLabel.Text = "Modified Date:";
			this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 260);
			this.Controls.Add(this.uxModifiedDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);			
			//
			// uxModifiedDate
			//
			this.uxModifiedDate.Name = "uxModifiedDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
			this.uxModifiedDate.Location = new System.Drawing.Point(160, 260);
			this.Controls.Add(this.uxModifiedDate);
			//
			// uxProductId
			//				
			this.uxProductId.DisplayMember = "Name";	
			this.uxProductId.ValueMember = "ProductId";	
			//
			// uxUnitMeasureCode
			//				
			this.uxUnitMeasureCode.DisplayMember = "Name";	
			this.uxUnitMeasureCode.ValueMember = "UnitMeasureCode";	
			//
			// uxVendorId
			//				
			this.uxVendorId.DisplayMember = "AccountNumber";	
			this.uxVendorId.ValueMember = "VendorId";	
			// 
			// ProductVendorEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "ProductVendorEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Esempio n. 60
0
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(nodarbibu_ievade));
            this.l_idmacsp = new System.Windows.Forms.Label();
            this.cb_idmacsp = new System.Windows.Forms.ComboBox();
            this.cb_nod_veids = new System.Windows.Forms.ComboBox();
            this.l_nod_veids = new System.Windows.Forms.Label();
            this.dtp_dat_no = new System.Windows.Forms.DateTimePicker();
            this.l_dat_no = new System.Windows.Forms.Label();
            this.dtp_dat_lidz = new System.Windows.Forms.DateTimePicker();
            this.l_dat_lidz = new System.Windows.Forms.Label();
            this.cb_ned_diena = new System.Windows.Forms.ComboBox();
            this.l_ned_diena = new System.Windows.Forms.Label();
            this.cb_laiks = new System.Windows.Forms.ComboBox();
            this.l_laiks = new System.Windows.Forms.Label();
            this.b_pievienot = new System.Windows.Forms.Button();
            this.l_idkkods = new System.Windows.Forms.Label();
            this.cb_idkkods = new System.Windows.Forms.ComboBox();
            this.ep_kluda = new System.Windows.Forms.ErrorProvider(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.ep_kluda)).BeginInit();
            this.SuspendLayout();
            // 
            // l_idmacsp
            // 
            this.l_idmacsp.Location = new System.Drawing.Point(12, 37);
            this.l_idmacsp.Name = "l_idmacsp";
            this.l_idmacsp.Size = new System.Drawing.Size(104, 23);
            this.l_idmacsp.TabIndex = 2;
            this.l_idmacsp.Text = "Mācībspēks:";
            this.l_idmacsp.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // cb_idmacsp
            // 
            this.cb_idmacsp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_idmacsp.FormattingEnabled = true;
            this.cb_idmacsp.Location = new System.Drawing.Point(122, 39);
            this.cb_idmacsp.Name = "cb_idmacsp";
            this.cb_idmacsp.Size = new System.Drawing.Size(250, 21);
            this.cb_idmacsp.TabIndex = 3;
            // 
            // cb_nod_veids
            // 
            this.cb_nod_veids.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_nod_veids.FormattingEnabled = true;
            this.cb_nod_veids.Location = new System.Drawing.Point(122, 66);
            this.cb_nod_veids.Name = "cb_nod_veids";
            this.cb_nod_veids.Size = new System.Drawing.Size(250, 21);
            this.cb_nod_veids.TabIndex = 5;
            // 
            // l_nod_veids
            // 
            this.l_nod_veids.Location = new System.Drawing.Point(12, 64);
            this.l_nod_veids.Name = "l_nod_veids";
            this.l_nod_veids.Size = new System.Drawing.Size(104, 23);
            this.l_nod_veids.TabIndex = 4;
            this.l_nod_veids.Text = "Nodarbības veids:";
            this.l_nod_veids.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // dtp_dat_no
            // 
            this.dtp_dat_no.Location = new System.Drawing.Point(122, 93);
            this.dtp_dat_no.MaxDate = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
            this.dtp_dat_no.MinDate = new System.DateTime(2015, 1, 1, 0, 0, 0, 0);
            this.dtp_dat_no.Name = "dtp_dat_no";
            this.dtp_dat_no.Size = new System.Drawing.Size(250, 20);
            this.dtp_dat_no.TabIndex = 7;
            this.dtp_dat_no.Value = new System.DateTime(2015, 5, 1, 0, 0, 0, 0);
            // 
            // l_dat_no
            // 
            this.l_dat_no.Location = new System.Drawing.Point(12, 94);
            this.l_dat_no.Name = "l_dat_no";
            this.l_dat_no.Size = new System.Drawing.Size(104, 23);
            this.l_dat_no.TabIndex = 6;
            this.l_dat_no.Text = "Datums no:";
            this.l_dat_no.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // dtp_dat_lidz
            // 
            this.dtp_dat_lidz.Location = new System.Drawing.Point(122, 119);
            this.dtp_dat_lidz.MaxDate = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
            this.dtp_dat_lidz.MinDate = new System.DateTime(2015, 1, 1, 0, 0, 0, 0);
            this.dtp_dat_lidz.Name = "dtp_dat_lidz";
            this.dtp_dat_lidz.Size = new System.Drawing.Size(250, 20);
            this.dtp_dat_lidz.TabIndex = 9;
            this.dtp_dat_lidz.Value = new System.DateTime(2015, 5, 1, 0, 0, 0, 0);
            // 
            // l_dat_lidz
            // 
            this.l_dat_lidz.Location = new System.Drawing.Point(12, 120);
            this.l_dat_lidz.Name = "l_dat_lidz";
            this.l_dat_lidz.Size = new System.Drawing.Size(104, 23);
            this.l_dat_lidz.TabIndex = 8;
            this.l_dat_lidz.Text = "Datums līdz:";
            this.l_dat_lidz.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // cb_ned_diena
            // 
            this.cb_ned_diena.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_ned_diena.FormattingEnabled = true;
            this.cb_ned_diena.Location = new System.Drawing.Point(122, 145);
            this.cb_ned_diena.Name = "cb_ned_diena";
            this.cb_ned_diena.Size = new System.Drawing.Size(250, 21);
            this.cb_ned_diena.TabIndex = 11;
            // 
            // l_ned_diena
            // 
            this.l_ned_diena.Location = new System.Drawing.Point(12, 143);
            this.l_ned_diena.Name = "l_ned_diena";
            this.l_ned_diena.Size = new System.Drawing.Size(104, 23);
            this.l_ned_diena.TabIndex = 10;
            this.l_ned_diena.Text = "Nedēļas diena:";
            this.l_ned_diena.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // cb_laiks
            // 
            this.cb_laiks.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_laiks.FormattingEnabled = true;
            this.cb_laiks.Location = new System.Drawing.Point(122, 172);
            this.cb_laiks.Name = "cb_laiks";
            this.cb_laiks.Size = new System.Drawing.Size(250, 21);
            this.cb_laiks.TabIndex = 13;
            // 
            // l_laiks
            // 
            this.l_laiks.Location = new System.Drawing.Point(12, 170);
            this.l_laiks.Name = "l_laiks";
            this.l_laiks.Size = new System.Drawing.Size(104, 23);
            this.l_laiks.TabIndex = 12;
            this.l_laiks.Text = "Laiks:";
            this.l_laiks.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // b_pievienot
            // 
            this.b_pievienot.Location = new System.Drawing.Point(12, 199);
            this.b_pievienot.Name = "b_pievienot";
            this.b_pievienot.Size = new System.Drawing.Size(360, 23);
            this.b_pievienot.TabIndex = 14;
            this.b_pievienot.Text = "&Pievienot nodarbības datus";
            this.b_pievienot.UseVisualStyleBackColor = true;
            this.b_pievienot.Click += new System.EventHandler(this.B_pievienotClick);
            // 
            // l_idkkods
            // 
            this.l_idkkods.Location = new System.Drawing.Point(12, 10);
            this.l_idkkods.Name = "l_idkkods";
            this.l_idkkods.Size = new System.Drawing.Size(104, 23);
            this.l_idkkods.TabIndex = 0;
            this.l_idkkods.Text = "Studiju kurss:";
            this.l_idkkods.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // cb_idkkods
            // 
            this.cb_idkkods.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_idkkods.FormattingEnabled = true;
            this.cb_idkkods.Location = new System.Drawing.Point(122, 12);
            this.cb_idkkods.Name = "cb_idkkods";
            this.cb_idkkods.Size = new System.Drawing.Size(250, 21);
            this.cb_idkkods.TabIndex = 1;
            // 
            // ep_kluda
            // 
            this.ep_kluda.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
            this.ep_kluda.ContainerControl = this;
            this.ep_kluda.Icon = ((System.Drawing.Icon)(resources.GetObject("ep_kluda.Icon")));
            // 
            // nodarbibu_ievade
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(389, 227);
            this.Controls.Add(this.cb_idkkods);
            this.Controls.Add(this.l_idkkods);
            this.Controls.Add(this.b_pievienot);
            this.Controls.Add(this.l_laiks);
            this.Controls.Add(this.cb_laiks);
            this.Controls.Add(this.l_ned_diena);
            this.Controls.Add(this.cb_ned_diena);
            this.Controls.Add(this.l_dat_lidz);
            this.Controls.Add(this.dtp_dat_lidz);
            this.Controls.Add(this.l_dat_no);
            this.Controls.Add(this.dtp_dat_no);
            this.Controls.Add(this.l_nod_veids);
            this.Controls.Add(this.cb_nod_veids);
            this.Controls.Add(this.cb_idmacsp);
            this.Controls.Add(this.l_idmacsp);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimumSize = new System.Drawing.Size(405, 265);
            this.Name = "nodarbibu_ievade";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Pievienot nodarbību";
            ((System.ComponentModel.ISupportInitialize)(this.ep_kluda)).EndInit();
            this.ResumeLayout(false);

        }