Ejemplo n.º 1
0
 /// <summary>
 /// 初始化数据集表头
 /// </summary>
 /// <param name="dgv">DataGridView</param>
 /// <param name="strSql">表头定义sql语句</param>
 public void SetDataGridViewHeaderText(System.Windows.Forms.DataGridView dgv, System.Data.DataTable HeaderDt)
 {
     try
     {
         using (System.Data.DataSet ds = new System.Data.DataSet())
         {
             ds.Tables.Add(HeaderDt);
             if (ds.Tables[0].Rows.Count > 0)
             {
                 int intI = 0;
                 for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
                 {
                     string fdName     = ds.Tables[0].Rows[i]["FdName"].ToString().Trim();
                     string fdDesc     = ds.Tables[0].Rows[i]["FdDesc"].ToString().Trim();
                     string fdType     = ds.Tables[0].Rows[i]["FdType"].ToString().Trim();
                     string fdSize     = ds.Tables[0].Rows[i]["FdSize"].ToString().Trim();
                     string fdDec      = ds.Tables[0].Rows[i]["FdDec"].ToString().Trim();
                     string isCheckBox = ds.Tables[0].Rows[i]["IsCheckBox"].ToString().Trim();
                     string isVisible  = ds.Tables[0].Rows[i]["IsVisible"].ToString().Trim();
                     if (isCheckBox == "True") //是否复选框
                     {
                         System.Windows.Forms.DataGridViewCheckBoxColumn columncb = new System.Windows.Forms.DataGridViewCheckBoxColumn();
                         columncb.HeaderText       = fdDesc;
                         columncb.Name             = fdName;
                         columncb.TrueValue        = 1;
                         columncb.FalseValue       = 0;
                         columncb.DataPropertyName = fdName;
                         dgv.Columns.Add(columncb);
                         if (isVisible == "False")
                         {
                             dgv.Columns[fdName].Visible = false;
                         }
                     }
                     else
                     {
                         intI = dgv.Columns.Add(new System.Windows.Forms.DataGridViewTextBoxColumn()); //添加列
                         dgv.Columns[intI].DataPropertyName = fdName;
                         dgv.Columns[intI].HeaderText       = fdDesc;
                         dgv.Columns[intI].Name             = fdName;
                         dgv.Columns[intI].Width            = 78;
                         if (isVisible == "False")
                         {
                             dgv.Columns[fdName].Visible = false;
                         }
                     }
                 }
             }
         }
     }
     catch (Exception ex)
     {
         System.Windows.Forms.MessageBox.Show("初始化表头失败,原因:" + ex.Message,
                                              "错误提示",
                                              System.Windows.Forms.MessageBoxButtons.OK,
                                              System.Windows.Forms.MessageBoxIcon.Hand,
                                              System.Windows.Forms.MessageBoxDefaultButton.Button1);
     }
 }
Ejemplo n.º 2
0
 private void InitializeAllComponents()
 {
     ComboBoxOfItemName = new System.Windows.Forms.ComboBox();
     ingredients        = new System.Windows.Forms.Label();
     amount             = new System.Windows.Forms.Label();
     ComboBoxOfAmount   = new System.Windows.Forms.ComboBox();
     adding             = new System.Windows.Forms.Button();
     ingredientsTable   = new System.Windows.Forms.DataGridView();
     itemColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     amountColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     RemoveButtonColumn = new System.Windows.Forms.DataGridViewButtonColumn();
     createNewItem      = new System.Windows.Forms.Button();
     steps              = new System.Windows.Forms.Label();
     notes              = new System.Windows.Forms.Label();
     save               = new System.Windows.Forms.Button();
     cancel             = new System.Windows.Forms.Button();
     TextBoxForNotes    = new System.Windows.Forms.TextBox();
     TextBoxForSteps    = new System.Windows.Forms.TextBox();
     checkBoxColumn     = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     name               = new System.Windows.Forms.Label();
     TextBoxForName     = new System.Windows.Forms.TextBox();
     ComboBoxOfItemName = new System.Windows.Forms.ComboBox();
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblPhong = new System.Windows.Forms.Label();
     this.glkPhong = new DevExpress.XtraEditors.GridLookUpEdit();
     this.glkvPhong = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMaPhong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMaPhieu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGia = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGioNhan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpDV = new DevExpress.XtraEditors.GroupControl();
     this.lblGioTinh = new System.Windows.Forms.DataGridView();
     this.colNgayThue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDichVu = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDonGia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSoLuong = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colThanhTien = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lblNgayNhan = new System.Windows.Forms.Label();
     this.lblNgayTra = new System.Windows.Forms.Label();
     this.grpPT = new DevExpress.XtraEditors.GroupControl();
     this.grdPT = new System.Windows.Forms.DataGridView();
     this.colMaPT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPhuThu = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPhanTramPThu = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colChonPThu = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.grpCK = new DevExpress.XtraEditors.GroupControl();
     this.grdCK = new System.Windows.Forms.DataGridView();
     this.colMaCK = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colChietKhau = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPhanTram = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colChon = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTongTien = new System.Windows.Forms.TextBox();
     this.txtPhuThu = new System.Windows.Forms.TextBox();
     this.lblPT = new System.Windows.Forms.Label();
     this.txtChietKhau = new System.Windows.Forms.TextBox();
     this.lblCK = new System.Windows.Forms.Label();
     this.lblDonGia = new System.Windows.Forms.Label();
     this.lblGia = new System.Windows.Forms.Label();
     this.groupControl = new DevExpress.XtraEditors.GroupControl();
     this.txtGioiTinh = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.txtEmail = new System.Windows.Forms.TextBox();
     this.lblEmail = new System.Windows.Forms.Label();
     this.txtCMND = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtHoTen = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txtLKH = new System.Windows.Forms.TextBox();
     this.lblLoaiKH = new System.Windows.Forms.Label();
     this.txtMaKH = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.btnThanhTien = new DevExpress.XtraEditors.SimpleButton();
     this.txtDichVu = new System.Windows.Forms.TextBox();
     this.lblDV = new System.Windows.Forms.Label();
     this.dtpNgayTra = new System.Windows.Forms.DateTimePicker();
     this.dtpNgayNhan = new System.Windows.Forms.DateTimePicker();
     this.btnThanhToan = new DevExpress.XtraEditors.SimpleButton();
     this.txtTienNhan = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.txtTienThua = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.lblSoHD = new System.Windows.Forms.Label();
     this.lblMaHD = new System.Windows.Forms.Label();
     this.btnMakeNew = new DevExpress.XtraEditors.SimpleButton();
     this.lblMaPhieu = new System.Windows.Forms.Label();
     this.lblPNP = new System.Windows.Forms.Label();
     this.lblSoNgay = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.btnHoaDon = new DevExpress.XtraEditors.SimpleButton();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.glkPhong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkvPhong)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpDV)).BeginInit();
     this.grpDV.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lblGioTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPT)).BeginInit();
     this.grpPT.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdPT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCK)).BeginInit();
     this.grpCK.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCK)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl)).BeginInit();
     this.groupControl.SuspendLayout();
     this.SuspendLayout();
     //
     // lblPhong
     //
     this.lblPhong.AutoSize = true;
     this.lblPhong.Location = new System.Drawing.Point(287, 24);
     this.lblPhong.Name = "lblPhong";
     this.lblPhong.Size = new System.Drawing.Size(41, 13);
     this.lblPhong.TabIndex = 0;
     this.lblPhong.Text = "Phòng:";
     //
     // glkPhong
     //
     this.glkPhong.EditValue = "";
     this.glkPhong.Location = new System.Drawing.Point(334, 17);
     this.glkPhong.Name = "glkPhong";
     this.glkPhong.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.glkPhong.Properties.Appearance.Options.UseFont = true;
     this.glkPhong.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.glkPhong.Properties.View = this.glkvPhong;
     this.glkPhong.Size = new System.Drawing.Size(162, 30);
     this.glkPhong.TabIndex = 1;
     this.glkPhong.EditValueChanged += new System.EventHandler(this.glookupPhong_EditValueChanged);
     //
     // glkvPhong
     //
     this.glkvPhong.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMaPhong,
     this.colMaPhieu,
     this.colGia,
     this.colGioNhan});
     this.glkvPhong.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.glkvPhong.Name = "glkvPhong";
     this.glkvPhong.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.glkvPhong.OptionsView.ShowGroupPanel = false;
     //
     // colMaPhong
     //
     this.colMaPhong.Caption = "Mã phòng";
     this.colMaPhong.FieldName = "MaPhong";
     this.colMaPhong.Name = "colMaPhong";
     this.colMaPhong.Visible = true;
     this.colMaPhong.VisibleIndex = 1;
     this.colMaPhong.Width = 255;
     //
     // colMaPhieu
     //
     this.colMaPhieu.Caption = "Mã phiếu";
     this.colMaPhieu.FieldName = "MaPhieu";
     this.colMaPhieu.Name = "colMaPhieu";
     this.colMaPhieu.Visible = true;
     this.colMaPhieu.VisibleIndex = 0;
     this.colMaPhieu.Width = 185;
     //
     // colGia
     //
     this.colGia.Caption = "Đơn giá";
     this.colGia.FieldName = "DonGia";
     this.colGia.Name = "colGia";
     this.colGia.Visible = true;
     this.colGia.VisibleIndex = 2;
     this.colGia.Width = 338;
     //
     // colGioNhan
     //
     this.colGioNhan.Caption = "Giờ nhận";
     this.colGioNhan.DisplayFormat.FormatString = "HH:mm dd/MM/yyy";
     this.colGioNhan.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.colGioNhan.FieldName = "GioNhan";
     this.colGioNhan.Name = "colGioNhan";
     this.colGioNhan.Visible = true;
     this.colGioNhan.VisibleIndex = 3;
     this.colGioNhan.Width = 402;
     //
     // grpDV
     //
     this.grpDV.Controls.Add(this.lblGioTinh);
     this.grpDV.Location = new System.Drawing.Point(387, 70);
     this.grpDV.Name = "grpDV";
     this.grpDV.Size = new System.Drawing.Size(350, 228);
     this.grpDV.TabIndex = 3;
     this.grpDV.Text = "Dịch vụ đã sử dụng";
     //
     // lblGioTinh
     //
     this.lblGioTinh.AllowUserToAddRows = false;
     this.lblGioTinh.AllowUserToDeleteRows = false;
     this.lblGioTinh.AllowUserToResizeRows = false;
     this.lblGioTinh.BackgroundColor = System.Drawing.Color.White;
     this.lblGioTinh.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.lblGioTinh.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colNgayThue,
     this.colDichVu,
     this.colDonGia,
     this.colSoLuong,
     this.colThanhTien});
     this.lblGioTinh.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblGioTinh.GridColor = System.Drawing.Color.Black;
     this.lblGioTinh.Location = new System.Drawing.Point(2, 21);
     this.lblGioTinh.Name = "lblGioTinh";
     this.lblGioTinh.ReadOnly = true;
     this.lblGioTinh.RowHeadersVisible = false;
     this.lblGioTinh.Size = new System.Drawing.Size(346, 205);
     this.lblGioTinh.TabIndex = 0;
     //
     // colNgayThue
     //
     this.colNgayThue.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.colNgayThue.DataPropertyName = "NGAYTHUE";
     this.colNgayThue.HeaderText = "Ngày thuê";
     this.colNgayThue.Name = "colNgayThue";
     this.colNgayThue.ReadOnly = true;
     this.colNgayThue.Width = 82;
     //
     // colDichVu
     //
     this.colDichVu.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colDichVu.DataPropertyName = "dichvu";
     this.colDichVu.HeaderText = "Dịch vụ";
     this.colDichVu.Name = "colDichVu";
     this.colDichVu.ReadOnly = true;
     this.colDichVu.Width = 67;
     //
     // colDonGia
     //
     this.colDonGia.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colDonGia.DataPropertyName = "dongia";
     this.colDonGia.HeaderText = "Đơn giá";
     this.colDonGia.Name = "colDonGia";
     this.colDonGia.ReadOnly = true;
     this.colDonGia.Width = 69;
     //
     // colSoLuong
     //
     this.colSoLuong.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colSoLuong.DataPropertyName = "soluong";
     this.colSoLuong.HeaderText = "Số lượng";
     this.colSoLuong.Name = "colSoLuong";
     this.colSoLuong.ReadOnly = true;
     this.colSoLuong.Width = 74;
     //
     // colThanhTien
     //
     this.colThanhTien.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colThanhTien.HeaderText = "Thành tiền";
     this.colThanhTien.Name = "colThanhTien";
     this.colThanhTien.ReadOnly = true;
     this.colThanhTien.Width = 83;
     //
     // lblNgayNhan
     //
     this.lblNgayNhan.AutoSize = true;
     this.lblNgayNhan.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNgayNhan.Location = new System.Drawing.Point(802, 73);
     this.lblNgayNhan.Name = "lblNgayNhan";
     this.lblNgayNhan.Size = new System.Drawing.Size(141, 19);
     this.lblNgayNhan.TabIndex = 5;
     this.lblNgayNhan.Text = "Ngày nhận phòng:";
     //
     // lblNgayTra
     //
     this.lblNgayTra.AutoSize = true;
     this.lblNgayTra.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNgayTra.Location = new System.Drawing.Point(818, 118);
     this.lblNgayTra.Name = "lblNgayTra";
     this.lblNgayTra.Size = new System.Drawing.Size(125, 19);
     this.lblNgayTra.TabIndex = 6;
     this.lblNgayTra.Text = "Ngày trả phòng:";
     //
     // grpPT
     //
     this.grpPT.Controls.Add(this.grdPT);
     this.grpPT.Location = new System.Drawing.Point(26, 323);
     this.grpPT.Name = "grpPT";
     this.grpPT.Size = new System.Drawing.Size(324, 228);
     this.grpPT.TabIndex = 29;
     this.grpPT.Text = "Phụ thu";
     //
     // grdPT
     //
     this.grdPT.AllowUserToResizeRows = false;
     this.grdPT.BackgroundColor = System.Drawing.Color.White;
     this.grdPT.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdPT.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colMaPT,
     this.colPhuThu,
     this.colPhanTramPThu,
     this.colChonPThu});
     this.grdPT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdPT.GridColor = System.Drawing.Color.Black;
     this.grdPT.Location = new System.Drawing.Point(2, 21);
     this.grdPT.Name = "grdPT";
     this.grdPT.RowHeadersVisible = false;
     this.grdPT.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdPT.Size = new System.Drawing.Size(320, 205);
     this.grdPT.TabIndex = 0;
     this.grdPT.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridPhuThu_CellValueChanged);
     //
     // colMaPT
     //
     this.colMaPT.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colMaPT.DataPropertyName = "MAPT";
     this.colMaPT.HeaderText = "Mã phụ thu";
     this.colMaPT.Name = "colMaPT";
     this.colMaPT.Width = 86;
     //
     // colPhuThu
     //
     this.colPhuThu.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.colPhuThu.DataPropertyName = "TENPT";
     this.colPhuThu.HeaderText = "Phụ thu";
     this.colPhuThu.Name = "colPhuThu";
     this.colPhuThu.ReadOnly = true;
     this.colPhuThu.Width = 69;
     //
     // colPhanTramPThu
     //
     this.colPhanTramPThu.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPhanTramPThu.DataPropertyName = "PHANTRAMPT";
     this.colPhanTramPThu.HeaderText = "Phần trăm";
     this.colPhanTramPThu.Name = "colPhanTramPThu";
     this.colPhanTramPThu.ReadOnly = true;
     this.colPhanTramPThu.Width = 81;
     //
     // colChonPThu
     //
     this.colChonPThu.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colChonPThu.HeaderText = "Chọn";
     this.colChonPThu.Name = "colChonPThu";
     this.colChonPThu.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colChonPThu.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.colChonPThu.Width = 57;
     //
     // grpCK
     //
     this.grpCK.Controls.Add(this.grdCK);
     this.grpCK.Location = new System.Drawing.Point(24, 70);
     this.grpCK.Name = "grpCK";
     this.grpCK.Size = new System.Drawing.Size(324, 228);
     this.grpCK.TabIndex = 30;
     this.grpCK.Text = "Chiết khấu";
     //
     // grdCK
     //
     this.grdCK.AllowUserToAddRows = false;
     this.grdCK.AllowUserToDeleteRows = false;
     this.grdCK.AllowUserToResizeRows = false;
     this.grdCK.BackgroundColor = System.Drawing.Color.White;
     this.grdCK.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdCK.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colMaCK,
     this.colChietKhau,
     this.colPhanTram,
     this.colChon});
     this.grdCK.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.grdCK.GridColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.grdCK.Location = new System.Drawing.Point(2, 21);
     this.grdCK.Name = "grdCK";
     this.grdCK.RowHeadersVisible = false;
     this.grdCK.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdCK.Size = new System.Drawing.Size(320, 205);
     this.grdCK.TabIndex = 0;
     this.grdCK.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridChietKhau_CellValueChanged);
     //
     // colMaCK
     //
     this.colMaCK.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colMaCK.DataPropertyName = "MACK";
     this.colMaCK.HeaderText = "Mã chiết khấu";
     this.colMaCK.Name = "colMaCK";
     this.colMaCK.Width = 98;
     //
     // colChietKhau
     //
     this.colChietKhau.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.colChietKhau.DataPropertyName = "TENCK";
     this.colChietKhau.HeaderText = "Chiết khấu";
     this.colChietKhau.Name = "colChietKhau";
     this.colChietKhau.ReadOnly = true;
     this.colChietKhau.Width = 83;
     //
     // colPhanTram
     //
     this.colPhanTram.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPhanTram.DataPropertyName = "PHANTRAM";
     this.colPhanTram.HeaderText = "Phần trăm";
     this.colPhanTram.Name = "colPhanTram";
     this.colPhanTram.ReadOnly = true;
     this.colPhanTram.Width = 81;
     //
     // colChon
     //
     this.colChon.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colChon.HeaderText = "Chọn";
     this.colChon.Name = "colChon";
     this.colChon.Width = 38;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(860, 334);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(83, 19);
     this.label4.TabIndex = 33;
     this.label4.Text = "Tổng tiền:";
     //
     // txtTongTien
     //
     this.txtTongTien.BackColor = System.Drawing.Color.Yellow;
     this.txtTongTien.Enabled = false;
     this.txtTongTien.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTongTien.Location = new System.Drawing.Point(977, 323);
     this.txtTongTien.Name = "txtTongTien";
     this.txtTongTien.Size = new System.Drawing.Size(211, 30);
     this.txtTongTien.TabIndex = 34;
     this.txtTongTien.Text = "0";
     //
     // txtPhuThu
     //
     this.txtPhuThu.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtPhuThu.Enabled = false;
     this.txtPhuThu.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPhuThu.ForeColor = System.Drawing.SystemColors.Desktop;
     this.txtPhuThu.Location = new System.Drawing.Point(977, 225);
     this.txtPhuThu.Name = "txtPhuThu";
     this.txtPhuThu.Size = new System.Drawing.Size(211, 27);
     this.txtPhuThu.TabIndex = 36;
     this.txtPhuThu.Text = "0 %";
     //
     // lblPT
     //
     this.lblPT.AutoSize = true;
     this.lblPT.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPT.Location = new System.Drawing.Point(873, 232);
     this.lblPT.Name = "lblPT";
     this.lblPT.Size = new System.Drawing.Size(70, 19);
     this.lblPT.TabIndex = 35;
     this.lblPT.Text = "Phụ thu:";
     //
     // txtChietKhau
     //
     this.txtChietKhau.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtChietKhau.Enabled = false;
     this.txtChietKhau.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtChietKhau.ForeColor = System.Drawing.SystemColors.Desktop;
     this.txtChietKhau.Location = new System.Drawing.Point(977, 176);
     this.txtChietKhau.Name = "txtChietKhau";
     this.txtChietKhau.Size = new System.Drawing.Size(211, 27);
     this.txtChietKhau.TabIndex = 38;
     this.txtChietKhau.Text = "0 %";
     //
     // lblCK
     //
     this.lblCK.AutoSize = true;
     this.lblCK.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCK.Location = new System.Drawing.Point(853, 181);
     this.lblCK.Name = "lblCK";
     this.lblCK.Size = new System.Drawing.Size(90, 19);
     this.lblCK.TabIndex = 37;
     this.lblCK.Text = "Chiết khấu:";
     //
     // lblDonGia
     //
     this.lblDonGia.AutoSize = true;
     this.lblDonGia.Location = new System.Drawing.Point(526, 24);
     this.lblDonGia.Name = "lblDonGia";
     this.lblDonGia.Size = new System.Drawing.Size(26, 13);
     this.lblDonGia.TabIndex = 39;
     this.lblDonGia.Text = "Giá:";
     //
     // lblGia
     //
     this.lblGia.AutoSize = true;
     this.lblGia.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGia.Location = new System.Drawing.Point(558, 16);
     this.lblGia.Name = "lblGia";
     this.lblGia.Size = new System.Drawing.Size(28, 29);
     this.lblGia.TabIndex = 40;
     this.lblGia.Text = "0";
     //
     // groupControl
     //
     this.groupControl.Controls.Add(this.txtGioiTinh);
     this.groupControl.Controls.Add(this.label23);
     this.groupControl.Controls.Add(this.txtEmail);
     this.groupControl.Controls.Add(this.lblEmail);
     this.groupControl.Controls.Add(this.txtCMND);
     this.groupControl.Controls.Add(this.label11);
     this.groupControl.Controls.Add(this.txtHoTen);
     this.groupControl.Controls.Add(this.label10);
     this.groupControl.Controls.Add(this.txtLKH);
     this.groupControl.Controls.Add(this.lblLoaiKH);
     this.groupControl.Controls.Add(this.txtMaKH);
     this.groupControl.Controls.Add(this.label8);
     this.groupControl.Location = new System.Drawing.Point(389, 323);
     this.groupControl.Name = "groupControl";
     this.groupControl.Size = new System.Drawing.Size(348, 228);
     this.groupControl.TabIndex = 41;
     this.groupControl.Text = "Thông tin khách hàng";
     //
     // txtGioiTinh
     //
     this.txtGioiTinh.Enabled = false;
     this.txtGioiTinh.Location = new System.Drawing.Point(103, 191);
     this.txtGioiTinh.Name = "txtGioiTinh";
     this.txtGioiTinh.Size = new System.Drawing.Size(196, 21);
     this.txtGioiTinh.TabIndex = 44;
     this.txtGioiTinh.Tag = "infoKH";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(54, 197);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(45, 13);
     this.label23.TabIndex = 43;
     this.label23.Text = "Giới tính";
     //
     // txtEmail
     //
     this.txtEmail.Enabled = false;
     this.txtEmail.Location = new System.Drawing.Point(103, 157);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(196, 21);
     this.txtEmail.TabIndex = 36;
     this.txtEmail.Tag = "infoKH";
     //
     // lblEmail
     //
     this.lblEmail.AutoSize = true;
     this.lblEmail.Location = new System.Drawing.Point(68, 163);
     this.lblEmail.Name = "lblEmail";
     this.lblEmail.Size = new System.Drawing.Size(31, 13);
     this.lblEmail.TabIndex = 35;
     this.lblEmail.Text = "Email";
     //
     // txtCMND
     //
     this.txtCMND.Enabled = false;
     this.txtCMND.Location = new System.Drawing.Point(103, 123);
     this.txtCMND.Name = "txtCMND";
     this.txtCMND.Size = new System.Drawing.Size(196, 21);
     this.txtCMND.TabIndex = 34;
     this.txtCMND.Tag = "infoKH";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(63, 129);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(36, 13);
     this.label11.TabIndex = 33;
     this.label11.Text = "CMND";
     //
     // txtHoTen
     //
     this.txtHoTen.Enabled = false;
     this.txtHoTen.Location = new System.Drawing.Point(103, 89);
     this.txtHoTen.Name = "txtHoTen";
     this.txtHoTen.Size = new System.Drawing.Size(196, 21);
     this.txtHoTen.TabIndex = 32;
     this.txtHoTen.Tag = "infoKH";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(60, 95);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(39, 13);
     this.label10.TabIndex = 31;
     this.label10.Text = "Họ tên";
     //
     // txtLKH
     //
     this.txtLKH.Enabled = false;
     this.txtLKH.Location = new System.Drawing.Point(103, 55);
     this.txtLKH.Name = "txtLKH";
     this.txtLKH.Size = new System.Drawing.Size(196, 21);
     this.txtLKH.TabIndex = 30;
     this.txtLKH.Tag = "infoKH";
     //
     // lblLoaiKH
     //
     this.lblLoaiKH.AutoSize = true;
     this.lblLoaiKH.Location = new System.Drawing.Point(15, 61);
     this.lblLoaiKH.Name = "lblLoaiKH";
     this.lblLoaiKH.Size = new System.Drawing.Size(84, 13);
     this.lblLoaiKH.TabIndex = 29;
     this.lblLoaiKH.Text = "Loại khách hàng";
     //
     // txtMaKH
     //
     this.txtMaKH.Enabled = false;
     this.txtMaKH.Location = new System.Drawing.Point(103, 21);
     this.txtMaKH.Name = "txtMaKH";
     this.txtMaKH.Size = new System.Drawing.Size(196, 21);
     this.txtMaKH.TabIndex = 28;
     this.txtMaKH.Tag = "infoKH";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(20, 27);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(79, 13);
     this.label8.TabIndex = 27;
     this.label8.Text = "Mã khách hàng";
     //
     // btnThanhTien
     //
     this.btnThanhTien.Location = new System.Drawing.Point(987, 481);
     this.btnThanhTien.Name = "btnThanhTien";
     this.btnThanhTien.Size = new System.Drawing.Size(80, 30);
     this.btnThanhTien.TabIndex = 42;
     this.btnThanhTien.Text = "Thành tiền";
     this.btnThanhTien.Click += new System.EventHandler(this.btnThanhToan_Click);
     //
     // txtDichVu
     //
     this.txtDichVu.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.txtDichVu.Enabled = false;
     this.txtDichVu.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDichVu.ForeColor = System.Drawing.SystemColors.Desktop;
     this.txtDichVu.Location = new System.Drawing.Point(977, 274);
     this.txtDichVu.Name = "txtDichVu";
     this.txtDichVu.Size = new System.Drawing.Size(211, 27);
     this.txtDichVu.TabIndex = 44;
     this.txtDichVu.Text = "0";
     //
     // lblDV
     //
     this.lblDV.AutoSize = true;
     this.lblDV.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDV.Location = new System.Drawing.Point(850, 277);
     this.lblDV.Name = "lblDV";
     this.lblDV.Size = new System.Drawing.Size(93, 19);
     this.lblDV.TabIndex = 43;
     this.lblDV.Text = "Phí dịch vụ:";
     //
     // dtpNgayTra
     //
     this.dtpNgayTra.CustomFormat = "dd/MM/yyyy HH:mm\'";
     this.dtpNgayTra.Enabled = false;
     this.dtpNgayTra.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayTra.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpNgayTra.Location = new System.Drawing.Point(977, 116);
     this.dtpNgayTra.Name = "dtpNgayTra";
     this.dtpNgayTra.Size = new System.Drawing.Size(211, 27);
     this.dtpNgayTra.TabIndex = 45;
     //
     // dtpNgayNhan
     //
     this.dtpNgayNhan.CustomFormat = "dd/MM/yyyy HH:mm\'";
     this.dtpNgayNhan.Enabled = false;
     this.dtpNgayNhan.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtpNgayNhan.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpNgayNhan.Location = new System.Drawing.Point(977, 73);
     this.dtpNgayNhan.Name = "dtpNgayNhan";
     this.dtpNgayNhan.Size = new System.Drawing.Size(211, 27);
     this.dtpNgayNhan.TabIndex = 46;
     //
     // btnThanhToan
     //
     this.btnThanhToan.Enabled = false;
     this.btnThanhToan.Location = new System.Drawing.Point(1095, 481);
     this.btnThanhToan.Name = "btnThanhToan";
     this.btnThanhToan.Size = new System.Drawing.Size(80, 30);
     this.btnThanhToan.TabIndex = 47;
     this.btnThanhToan.Text = "Thanh toán";
     this.btnThanhToan.Click += new System.EventHandler(this.btnThanhToan_Click_1);
     //
     // txtTienNhan
     //
     this.txtTienNhan.BackColor = System.Drawing.Color.White;
     this.txtTienNhan.Font = new System.Drawing.Font("Tahoma", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTienNhan.Location = new System.Drawing.Point(977, 375);
     this.txtTienNhan.Name = "txtTienNhan";
     this.txtTienNhan.Size = new System.Drawing.Size(211, 30);
     this.txtTienNhan.TabIndex = 49;
     this.txtTienNhan.Text = "0";
     this.txtTienNhan.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtTienNhan_KeyPress);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(860, 385);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(104, 19);
     this.label9.TabIndex = 48;
     this.label9.Text = "Số tiền nhận:";
     //
     // txtTienThua
     //
     this.txtTienThua.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.txtTienThua.Enabled = false;
     this.txtTienThua.Font = new System.Drawing.Font("Tahoma", 14.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTienThua.Location = new System.Drawing.Point(977, 427);
     this.txtTienThua.Name = "txtTienThua";
     this.txtTienThua.Size = new System.Drawing.Size(211, 30);
     this.txtTienThua.TabIndex = 51;
     this.txtTienThua.Text = "0";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(860, 436);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(101, 19);
     this.label15.TabIndex = 50;
     this.label15.Text = "Số tiền thừa:";
     //
     // lblSoHD
     //
     this.lblSoHD.AutoSize = true;
     this.lblSoHD.Location = new System.Drawing.Point(1080, 33);
     this.lblSoHD.Name = "lblSoHD";
     this.lblSoHD.Size = new System.Drawing.Size(41, 13);
     this.lblSoHD.TabIndex = 52;
     this.lblSoHD.Text = "Số HĐ:";
     //
     // lblMaHD
     //
     this.lblMaHD.AutoSize = true;
     this.lblMaHD.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaHD.Location = new System.Drawing.Point(1127, 28);
     this.lblMaHD.Name = "lblMaHD";
     this.lblMaHD.Size = new System.Drawing.Size(36, 19);
     this.lblMaHD.TabIndex = 53;
     this.lblMaHD.Text = "000";
     //
     // btnMakeNew
     //
     this.btnMakeNew.Location = new System.Drawing.Point(987, 534);
     this.btnMakeNew.Name = "btnMakeNew";
     this.btnMakeNew.Size = new System.Drawing.Size(80, 29);
     this.btnMakeNew.TabIndex = 54;
     this.btnMakeNew.Text = "Lập HĐ mới";
     this.btnMakeNew.Visible = false;
     this.btnMakeNew.Click += new System.EventHandler(this.btnMakeNew_Click);
     //
     // lblMaPhieu
     //
     this.lblMaPhieu.AutoSize = true;
     this.lblMaPhieu.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaPhieu.Location = new System.Drawing.Point(974, 27);
     this.lblMaPhieu.Name = "lblMaPhieu";
     this.lblMaPhieu.Size = new System.Drawing.Size(36, 19);
     this.lblMaPhieu.TabIndex = 56;
     this.lblMaPhieu.Text = "000";
     //
     // lblPNP
     //
     this.lblPNP.AutoSize = true;
     this.lblPNP.Location = new System.Drawing.Point(853, 31);
     this.lblPNP.Name = "lblPNP";
     this.lblPNP.Size = new System.Drawing.Size(114, 13);
     this.lblPNP.TabIndex = 55;
     this.lblPNP.Text = "Mã phiếu nhận phòng:";
     //
     // lblSoNgay
     //
     this.lblSoNgay.AutoSize = true;
     this.lblSoNgay.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSoNgay.Location = new System.Drawing.Point(1062, 148);
     this.lblSoNgay.Name = "lblSoNgay";
     this.lblSoNgay.Size = new System.Drawing.Size(18, 19);
     this.lblSoNgay.TabIndex = 58;
     this.lblSoNgay.Text = "0";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(1013, 151);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(50, 13);
     this.label19.TabIndex = 57;
     this.label19.Text = "Số ngày:";
     //
     // btnHoaDon
     //
     this.btnHoaDon.Location = new System.Drawing.Point(1095, 534);
     this.btnHoaDon.Name = "btnHoaDon";
     this.btnHoaDon.Size = new System.Drawing.Size(80, 29);
     this.btnHoaDon.TabIndex = 54;
     this.btnHoaDon.Text = "Xuất hóa đơn";
     this.btnHoaDon.Visible = false;
     this.btnHoaDon.Click += new System.EventHandler(this.btnHoaDon_Click);
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     //
     // usrThanhToan
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.lblSoNgay);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.lblMaPhieu);
     this.Controls.Add(this.lblPNP);
     this.Controls.Add(this.btnHoaDon);
     this.Controls.Add(this.btnMakeNew);
     this.Controls.Add(this.lblMaHD);
     this.Controls.Add(this.lblSoHD);
     this.Controls.Add(this.txtTienThua);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.txtTienNhan);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.btnThanhToan);
     this.Controls.Add(this.dtpNgayNhan);
     this.Controls.Add(this.dtpNgayTra);
     this.Controls.Add(this.txtDichVu);
     this.Controls.Add(this.lblDV);
     this.Controls.Add(this.btnThanhTien);
     this.Controls.Add(this.groupControl);
     this.Controls.Add(this.lblGia);
     this.Controls.Add(this.lblDonGia);
     this.Controls.Add(this.txtChietKhau);
     this.Controls.Add(this.lblCK);
     this.Controls.Add(this.txtPhuThu);
     this.Controls.Add(this.lblPT);
     this.Controls.Add(this.txtTongTien);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.grpCK);
     this.Controls.Add(this.grpPT);
     this.Controls.Add(this.lblNgayTra);
     this.Controls.Add(this.lblNgayNhan);
     this.Controls.Add(this.grpDV);
     this.Controls.Add(this.glkPhong);
     this.Controls.Add(this.lblPhong);
     this.Name = "usrThanhToan";
     this.Size = new System.Drawing.Size(1288, 619);
     this.Load += new System.EventHandler(this.usrThanhToan_Load);
     ((System.ComponentModel.ISupportInitialize)(this.glkPhong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.glkvPhong)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpDV)).EndInit();
     this.grpDV.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lblGioTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPT)).EndInit();
     this.grpPT.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdPT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCK)).EndInit();
     this.grpCK.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdCK)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl)).EndInit();
     this.groupControl.ResumeLayout(false);
     this.groupControl.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Button5 = new System.Windows.Forms.Button();
     this.Button6 = new System.Windows.Forms.Button();
     this.TabControl1 = new System.Windows.Forms.TabControl();
     this.TabPage1 = new System.Windows.Forms.TabPage();
     this.Panel1 = new System.Windows.Forms.Panel();
     this.Button7 = new System.Windows.Forms.Button();
     this.TextBox13 = new System.Windows.Forms.TextBox();
     this.Label14 = new System.Windows.Forms.Label();
     this.CheckBox3 = new System.Windows.Forms.CheckBox();
     this.TextBox15 = new System.Windows.Forms.TextBox();
     this.TextBox18 = new System.Windows.Forms.TextBox();
     this.Button4 = new System.Windows.Forms.Button();
     this.Label19 = new System.Windows.Forms.Label();
     this.TextBox12 = new System.Windows.Forms.TextBox();
     this.Label13 = new System.Windows.Forms.Label();
     this.Button3 = new System.Windows.Forms.Button();
     this.TextBox11 = new System.Windows.Forms.TextBox();
     this.Label12 = new System.Windows.Forms.Label();
     this.Button2 = new System.Windows.Forms.Button();
     this.ComboBox1 = new System.Windows.Forms.ComboBox();
     this.TextBox10 = new System.Windows.Forms.TextBox();
     this.Label11 = new System.Windows.Forms.Label();
     this.Label10 = new System.Windows.Forms.Label();
     this.TabPage2 = new System.Windows.Forms.TabPage();
     this.Button12 = new System.Windows.Forms.Button();
     this.Button13 = new System.Windows.Forms.Button();
     this.Button14 = new System.Windows.Forms.Button();
     this.DataGridView1 = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.TabPage3 = new System.Windows.Forms.TabPage();
     this.Panel3 = new System.Windows.Forms.Panel();
     this.Button11 = new System.Windows.Forms.Button();
     this.Button8 = new System.Windows.Forms.Button();
     this.Button10 = new System.Windows.Forms.Button();
     this.DataGridView2 = new System.Windows.Forms.DataGridView();
     this.DataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TabPage4 = new System.Windows.Forms.TabPage();
     this.Panel4 = new System.Windows.Forms.Panel();
     this.Button15 = new System.Windows.Forms.Button();
     this.Button16 = new System.Windows.Forms.Button();
     this.Button17 = new System.Windows.Forms.Button();
     this.DataGridView3 = new System.Windows.Forms.DataGridView();
     this.DataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CheckBox2 = new System.Windows.Forms.CheckBox();
     this.TextBox9 = new System.Windows.Forms.TextBox();
     this.Label9 = new System.Windows.Forms.Label();
     this.Button1 = new System.Windows.Forms.Button();
     this.TextBox8 = new System.Windows.Forms.TextBox();
     this.Label8 = new System.Windows.Forms.Label();
     this.TextBox7 = new System.Windows.Forms.TextBox();
     this.Label7 = new System.Windows.Forms.Label();
     this.Button9 = new System.Windows.Forms.Button();
     this.TextBox14 = new System.Windows.Forms.TextBox();
     this.Label15 = new System.Windows.Forms.Label();
     this.TextBox5 = new System.Windows.Forms.TextBox();
     this.Label4 = new System.Windows.Forms.Label();
     this.TextBox6 = new System.Windows.Forms.TextBox();
     this.Label5 = new System.Windows.Forms.Label();
     this.TextBox3 = new System.Windows.Forms.TextBox();
     this.Label3 = new System.Windows.Forms.Label();
     this.TextBox2 = new System.Windows.Forms.TextBox();
     this.Label2 = new System.Windows.Forms.Label();
     this.TextBox1 = new System.Windows.Forms.TextBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.TextBox4 = new System.Windows.Forms.TextBox();
     this.Label6 = new System.Windows.Forms.Label();
     this.TabControl1.SuspendLayout();
     this.TabPage1.SuspendLayout();
     this.Panel1.SuspendLayout();
     this.TabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DataGridView1)).BeginInit();
     this.TabPage3.SuspendLayout();
     this.Panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DataGridView2)).BeginInit();
     this.TabPage4.SuspendLayout();
     this.Panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DataGridView3)).BeginInit();
     this.SuspendLayout();
     //
     // Button5
     //
     this.Button5.BackColor = System.Drawing.Color.Silver;
     this.Button5.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button5.Location = new System.Drawing.Point(420, 412);
     this.Button5.Name = "Button5";
     this.Button5.Size = new System.Drawing.Size(71, 27);
     this.Button5.TabIndex = 104;
     this.Button5.Text = "&Cancelar";
     this.Button5.UseVisualStyleBackColor = false;
     this.Button5.Click += new System.EventHandler(this.Button5_Click);
     //
     // Button6
     //
     this.Button6.BackColor = System.Drawing.Color.Silver;
     this.Button6.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button6.Location = new System.Drawing.Point(330, 412);
     this.Button6.Name = "Button6";
     this.Button6.Size = new System.Drawing.Size(71, 27);
     this.Button6.TabIndex = 103;
     this.Button6.Text = "&Aceptar";
     this.Button6.UseVisualStyleBackColor = false;
     //
     // 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.Location = new System.Drawing.Point(15, 221);
     this.TabControl1.Name = "TabControl1";
     this.TabControl1.SelectedIndex = 0;
     this.TabControl1.Size = new System.Drawing.Size(480, 176);
     this.TabControl1.TabIndex = 102;
     //
     // TabPage1
     //
     this.TabPage1.Controls.Add(this.Panel1);
     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(472, 150);
     this.TabPage1.TabIndex = 0;
     this.TabPage1.Text = "Condiciones Comerciales";
     this.TabPage1.UseVisualStyleBackColor = true;
     //
     // Panel1
     //
     this.Panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.Panel1.Controls.Add(this.Button7);
     this.Panel1.Controls.Add(this.TextBox13);
     this.Panel1.Controls.Add(this.Label14);
     this.Panel1.Controls.Add(this.CheckBox3);
     this.Panel1.Controls.Add(this.TextBox15);
     this.Panel1.Controls.Add(this.TextBox18);
     this.Panel1.Controls.Add(this.Button4);
     this.Panel1.Controls.Add(this.Label19);
     this.Panel1.Controls.Add(this.TextBox12);
     this.Panel1.Controls.Add(this.Label13);
     this.Panel1.Controls.Add(this.Button3);
     this.Panel1.Controls.Add(this.TextBox11);
     this.Panel1.Controls.Add(this.Label12);
     this.Panel1.Controls.Add(this.Button2);
     this.Panel1.Controls.Add(this.ComboBox1);
     this.Panel1.Controls.Add(this.TextBox10);
     this.Panel1.Controls.Add(this.Label11);
     this.Panel1.Controls.Add(this.Label10);
     this.Panel1.Location = new System.Drawing.Point(1, 2);
     this.Panel1.Name = "Panel1";
     this.Panel1.Size = new System.Drawing.Size(473, 149);
     this.Panel1.TabIndex = 0;
     //
     // Button7
     //
     this.Button7.BackColor = System.Drawing.Color.Gainsboro;
     this.Button7.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.Button7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Button7.Location = new System.Drawing.Point(434, 68);
     this.Button7.Name = "Button7";
     this.Button7.Size = new System.Drawing.Size(29, 20);
     this.Button7.TabIndex = 85;
     this.Button7.Text = "...";
     this.Button7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Button7.UseVisualStyleBackColor = false;
     //
     // TextBox13
     //
     this.TextBox13.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox13.Location = new System.Drawing.Point(338, 68);
     this.TextBox13.Name = "TextBox13";
     this.TextBox13.Size = new System.Drawing.Size(125, 21);
     this.TextBox13.TabIndex = 84;
     this.TextBox13.Text = "DISTRIBUIDOR";
     //
     // Label14
     //
     this.Label14.AutoSize = true;
     this.Label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label14.Location = new System.Drawing.Point(250, 69);
     this.Label14.Name = "Label14";
     this.Label14.Size = new System.Drawing.Size(67, 16);
     this.Label14.TabIndex = 83;
     this.Label14.Text = "Categoría";
     //
     // CheckBox3
     //
     this.CheckBox3.AutoSize = true;
     this.CheckBox3.Checked = true;
     this.CheckBox3.CheckState = System.Windows.Forms.CheckState.Checked;
     this.CheckBox3.Location = new System.Drawing.Point(232, 13);
     this.CheckBox3.Name = "CheckBox3";
     this.CheckBox3.Size = new System.Drawing.Size(104, 17);
     this.CheckBox3.TabIndex = 79;
     this.CheckBox3.Text = "Linea de Crédito";
     this.CheckBox3.UseVisualStyleBackColor = true;
     //
     // TextBox15
     //
     this.TextBox15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox15.Location = new System.Drawing.Point(338, 40);
     this.TextBox15.Name = "TextBox15";
     this.TextBox15.Size = new System.Drawing.Size(125, 21);
     this.TextBox15.TabIndex = 82;
     this.TextBox15.Text = "5000.00";
     this.TextBox15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // TextBox18
     //
     this.TextBox18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox18.Location = new System.Drawing.Point(338, 9);
     this.TextBox18.Name = "TextBox18";
     this.TextBox18.Size = new System.Drawing.Size(125, 21);
     this.TextBox18.TabIndex = 81;
     this.TextBox18.Text = "5000.00";
     this.TextBox18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Button4
     //
     this.Button4.BackColor = System.Drawing.Color.Gainsboro;
     this.Button4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.Button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Button4.Location = new System.Drawing.Point(201, 97);
     this.Button4.Name = "Button4";
     this.Button4.Size = new System.Drawing.Size(29, 20);
     this.Button4.TabIndex = 76;
     this.Button4.Text = "...";
     this.Button4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Button4.UseVisualStyleBackColor = false;
     //
     // Label19
     //
     this.Label19.AutoSize = true;
     this.Label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label19.Location = new System.Drawing.Point(249, 38);
     this.Label19.Name = "Label19";
     this.Label19.Size = new System.Drawing.Size(44, 16);
     this.Label19.TabIndex = 80;
     this.Label19.Text = "Saldo";
     //
     // TextBox12
     //
     this.TextBox12.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox12.Location = new System.Drawing.Point(102, 97);
     this.TextBox12.Name = "TextBox12";
     this.TextBox12.Size = new System.Drawing.Size(128, 21);
     this.TextBox12.TabIndex = 75;
     this.TextBox12.Text = "S/.";
     //
     // Label13
     //
     this.Label13.AutoSize = true;
     this.Label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label13.Location = new System.Drawing.Point(6, 97);
     this.Label13.Name = "Label13";
     this.Label13.Size = new System.Drawing.Size(58, 16);
     this.Label13.TabIndex = 74;
     this.Label13.Text = "Moneda";
     //
     // Button3
     //
     this.Button3.BackColor = System.Drawing.Color.Gainsboro;
     this.Button3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.Button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Button3.Location = new System.Drawing.Point(201, 69);
     this.Button3.Name = "Button3";
     this.Button3.Size = new System.Drawing.Size(29, 20);
     this.Button3.TabIndex = 73;
     this.Button3.Text = "...";
     this.Button3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Button3.UseVisualStyleBackColor = false;
     //
     // TextBox11
     //
     this.TextBox11.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox11.Location = new System.Drawing.Point(102, 69);
     this.TextBox11.Name = "TextBox11";
     this.TextBox11.Size = new System.Drawing.Size(128, 21);
     this.TextBox11.TabIndex = 72;
     this.TextBox11.Text = "EFECTIVO";
     //
     // Label12
     //
     this.Label12.AutoSize = true;
     this.Label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label12.Location = new System.Drawing.Point(6, 69);
     this.Label12.Name = "Label12";
     this.Label12.Size = new System.Drawing.Size(82, 16);
     this.Label12.TabIndex = 71;
     this.Label12.Text = "Medio Pago";
     //
     // Button2
     //
     this.Button2.BackColor = System.Drawing.Color.Gainsboro;
     this.Button2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.Button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Button2.Location = new System.Drawing.Point(201, 38);
     this.Button2.Name = "Button2";
     this.Button2.Size = new System.Drawing.Size(29, 20);
     this.Button2.TabIndex = 70;
     this.Button2.Text = "...";
     this.Button2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Button2.UseVisualStyleBackColor = false;
     //
     // ComboBox1
     //
     this.ComboBox1.FormattingEnabled = true;
     this.ComboBox1.Location = new System.Drawing.Point(102, 11);
     this.ComboBox1.Name = "ComboBox1";
     this.ComboBox1.Size = new System.Drawing.Size(128, 21);
     this.ComboBox1.TabIndex = 69;
     this.ComboBox1.Text = "Crédito";
     //
     // TextBox10
     //
     this.TextBox10.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox10.Location = new System.Drawing.Point(102, 38);
     this.TextBox10.Name = "TextBox10";
     this.TextBox10.Size = new System.Drawing.Size(128, 21);
     this.TextBox10.TabIndex = 69;
     this.TextBox10.Text = "CREDITO A 7 DIAS";
     //
     // Label11
     //
     this.Label11.AutoSize = true;
     this.Label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label11.Location = new System.Drawing.Point(6, 40);
     this.Label11.Name = "Label11";
     this.Label11.Size = new System.Drawing.Size(51, 16);
     this.Label11.TabIndex = 68;
     this.Label11.Text = "Crédito";
     //
     // Label10
     //
     this.Label10.AutoSize = true;
     this.Label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label10.Location = new System.Drawing.Point(5, 12);
     this.Label10.Name = "Label10";
     this.Label10.Size = new System.Drawing.Size(102, 16);
     this.Label10.TabIndex = 68;
     this.Label10.Text = "Forma de Pago";
     //
     // TabPage2
     //
     this.TabPage2.Controls.Add(this.Button12);
     this.TabPage2.Controls.Add(this.Button13);
     this.TabPage2.Controls.Add(this.Button14);
     this.TabPage2.Controls.Add(this.DataGridView1);
     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(472, 150);
     this.TabPage2.TabIndex = 1;
     this.TabPage2.Text = "Direcciones";
     this.TabPage2.UseVisualStyleBackColor = true;
     //
     // Button12
     //
     this.Button12.BackColor = System.Drawing.Color.Silver;
     this.Button12.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button12.Location = new System.Drawing.Point(395, 117);
     this.Button12.Name = "Button12";
     this.Button12.Size = new System.Drawing.Size(71, 27);
     this.Button12.TabIndex = 84;
     this.Button12.Text = "&Quitar";
     this.Button12.UseVisualStyleBackColor = false;
     //
     // Button13
     //
     this.Button13.BackColor = System.Drawing.Color.Silver;
     this.Button13.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button13.Location = new System.Drawing.Point(308, 117);
     this.Button13.Name = "Button13";
     this.Button13.Size = new System.Drawing.Size(71, 27);
     this.Button13.TabIndex = 83;
     this.Button13.Text = "&Modificar";
     this.Button13.UseVisualStyleBackColor = false;
     //
     // Button14
     //
     this.Button14.BackColor = System.Drawing.Color.Silver;
     this.Button14.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button14.Location = new System.Drawing.Point(226, 117);
     this.Button14.Name = "Button14";
     this.Button14.Size = new System.Drawing.Size(71, 27);
     this.Button14.TabIndex = 82;
     this.Button14.Text = "&Agregar";
     this.Button14.UseVisualStyleBackColor = false;
     //
     // DataGridView1
     //
     this.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.DataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column4});
     this.DataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.DataGridView1.Location = new System.Drawing.Point(3, 3);
     this.DataGridView1.Name = "DataGridView1";
     this.DataGridView1.Size = new System.Drawing.Size(466, 144);
     this.DataGridView1.TabIndex = 0;
     //
     // Column1
     //
     this.Column1.HeaderText = "#";
     this.Column1.Name = "Column1";
     //
     // Column2
     //
     this.Column2.HeaderText = "Descripción";
     this.Column2.Name = "Column2";
     //
     // Column4
     //
     this.Column4.HeaderText = "Principal";
     this.Column4.Name = "Column4";
     //
     // TabPage3
     //
     this.TabPage3.Controls.Add(this.Panel3);
     this.TabPage3.Location = new System.Drawing.Point(4, 22);
     this.TabPage3.Name = "TabPage3";
     this.TabPage3.Size = new System.Drawing.Size(472, 150);
     this.TabPage3.TabIndex = 2;
     this.TabPage3.Text = "Teléfonos";
     this.TabPage3.UseVisualStyleBackColor = true;
     //
     // Panel3
     //
     this.Panel3.BackColor = System.Drawing.Color.LightCyan;
     this.Panel3.Controls.Add(this.Button11);
     this.Panel3.Controls.Add(this.Button8);
     this.Panel3.Controls.Add(this.Button10);
     this.Panel3.Controls.Add(this.DataGridView2);
     this.Panel3.Location = new System.Drawing.Point(2, 1);
     this.Panel3.Name = "Panel3";
     this.Panel3.Size = new System.Drawing.Size(471, 159);
     this.Panel3.TabIndex = 1;
     //
     // Button11
     //
     this.Button11.BackColor = System.Drawing.Color.Silver;
     this.Button11.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button11.Location = new System.Drawing.Point(396, 119);
     this.Button11.Name = "Button11";
     this.Button11.Size = new System.Drawing.Size(71, 27);
     this.Button11.TabIndex = 81;
     this.Button11.Text = "&Quitar";
     this.Button11.UseVisualStyleBackColor = false;
     //
     // Button8
     //
     this.Button8.BackColor = System.Drawing.Color.Silver;
     this.Button8.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button8.Location = new System.Drawing.Point(309, 119);
     this.Button8.Name = "Button8";
     this.Button8.Size = new System.Drawing.Size(71, 27);
     this.Button8.TabIndex = 80;
     this.Button8.Text = "&Modificar";
     this.Button8.UseVisualStyleBackColor = false;
     //
     // Button10
     //
     this.Button10.BackColor = System.Drawing.Color.Silver;
     this.Button10.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button10.Location = new System.Drawing.Point(227, 119);
     this.Button10.Name = "Button10";
     this.Button10.Size = new System.Drawing.Size(71, 27);
     this.Button10.TabIndex = 79;
     this.Button10.Text = "&Agregar";
     this.Button10.UseVisualStyleBackColor = false;
     //
     // DataGridView2
     //
     this.DataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.DataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.DataGridViewTextBoxColumn4,
     this.DataGridViewTextBoxColumn5,
     this.DataGridViewCheckBoxColumn1});
     this.DataGridView2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.DataGridView2.Location = new System.Drawing.Point(0, 0);
     this.DataGridView2.Name = "DataGridView2";
     this.DataGridView2.Size = new System.Drawing.Size(471, 159);
     this.DataGridView2.TabIndex = 1;
     //
     // DataGridViewTextBoxColumn4
     //
     this.DataGridViewTextBoxColumn4.HeaderText = "#";
     this.DataGridViewTextBoxColumn4.Name = "DataGridViewTextBoxColumn4";
     //
     // DataGridViewTextBoxColumn5
     //
     this.DataGridViewTextBoxColumn5.HeaderText = "Número";
     this.DataGridViewTextBoxColumn5.Name = "DataGridViewTextBoxColumn5";
     //
     // DataGridViewCheckBoxColumn1
     //
     this.DataGridViewCheckBoxColumn1.HeaderText = "Tipo";
     this.DataGridViewCheckBoxColumn1.Name = "DataGridViewCheckBoxColumn1";
     this.DataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.DataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // TabPage4
     //
     this.TabPage4.Controls.Add(this.Panel4);
     this.TabPage4.Location = new System.Drawing.Point(4, 22);
     this.TabPage4.Name = "TabPage4";
     this.TabPage4.Size = new System.Drawing.Size(472, 150);
     this.TabPage4.TabIndex = 3;
     this.TabPage4.Text = "Contactos";
     this.TabPage4.UseVisualStyleBackColor = true;
     //
     // Panel4
     //
     this.Panel4.BackColor = System.Drawing.Color.LightCyan;
     this.Panel4.Controls.Add(this.Button15);
     this.Panel4.Controls.Add(this.Button16);
     this.Panel4.Controls.Add(this.Button17);
     this.Panel4.Controls.Add(this.DataGridView3);
     this.Panel4.Location = new System.Drawing.Point(1, 1);
     this.Panel4.Name = "Panel4";
     this.Panel4.Size = new System.Drawing.Size(471, 159);
     this.Panel4.TabIndex = 1;
     //
     // Button15
     //
     this.Button15.BackColor = System.Drawing.Color.Silver;
     this.Button15.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button15.Location = new System.Drawing.Point(397, 119);
     this.Button15.Name = "Button15";
     this.Button15.Size = new System.Drawing.Size(71, 27);
     this.Button15.TabIndex = 84;
     this.Button15.Text = "&Quitar";
     this.Button15.UseVisualStyleBackColor = false;
     //
     // Button16
     //
     this.Button16.BackColor = System.Drawing.Color.Silver;
     this.Button16.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button16.Location = new System.Drawing.Point(310, 119);
     this.Button16.Name = "Button16";
     this.Button16.Size = new System.Drawing.Size(71, 27);
     this.Button16.TabIndex = 83;
     this.Button16.Text = "&Modificar";
     this.Button16.UseVisualStyleBackColor = false;
     //
     // Button17
     //
     this.Button17.BackColor = System.Drawing.Color.Silver;
     this.Button17.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Button17.Location = new System.Drawing.Point(228, 119);
     this.Button17.Name = "Button17";
     this.Button17.Size = new System.Drawing.Size(71, 27);
     this.Button17.TabIndex = 82;
     this.Button17.Text = "&Agregar";
     this.Button17.UseVisualStyleBackColor = false;
     //
     // DataGridView3
     //
     this.DataGridView3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.DataGridView3.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.DataGridViewTextBoxColumn1,
     this.DataGridViewTextBoxColumn2,
     this.DataGridViewTextBoxColumn3});
     this.DataGridView3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.DataGridView3.Location = new System.Drawing.Point(0, 0);
     this.DataGridView3.Name = "DataGridView3";
     this.DataGridView3.Size = new System.Drawing.Size(471, 159);
     this.DataGridView3.TabIndex = 1;
     //
     // DataGridViewTextBoxColumn1
     //
     this.DataGridViewTextBoxColumn1.HeaderText = "Nombre";
     this.DataGridViewTextBoxColumn1.Name = "DataGridViewTextBoxColumn1";
     //
     // DataGridViewTextBoxColumn2
     //
     this.DataGridViewTextBoxColumn2.HeaderText = "Cargo";
     this.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2";
     //
     // DataGridViewTextBoxColumn3
     //
     this.DataGridViewTextBoxColumn3.HeaderText = "Correo";
     this.DataGridViewTextBoxColumn3.Name = "DataGridViewTextBoxColumn3";
     //
     // CheckBox2
     //
     this.CheckBox2.AutoSize = true;
     this.CheckBox2.Checked = true;
     this.CheckBox2.CheckState = System.Windows.Forms.CheckState.Checked;
     this.CheckBox2.Location = new System.Drawing.Point(436, 198);
     this.CheckBox2.Name = "CheckBox2";
     this.CheckBox2.Size = new System.Drawing.Size(59, 17);
     this.CheckBox2.TabIndex = 101;
     this.CheckBox2.Text = "Activo ";
     this.CheckBox2.UseVisualStyleBackColor = true;
     //
     // TextBox9
     //
     this.TextBox9.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox9.Location = new System.Drawing.Point(358, 172);
     this.TextBox9.Name = "TextBox9";
     this.TextBox9.Size = new System.Drawing.Size(137, 21);
     this.TextBox9.TabIndex = 100;
     //
     // Label9
     //
     this.Label9.AutoSize = true;
     this.Label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label9.Location = new System.Drawing.Point(245, 176);
     this.Label9.Name = "Label9";
     this.Label9.Size = new System.Drawing.Size(112, 16);
     this.Label9.TabIndex = 99;
     this.Label9.Text = "N° Doc. Identidad";
     //
     // Button1
     //
     this.Button1.BackColor = System.Drawing.Color.Gainsboro;
     this.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.Button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Button1.Location = new System.Drawing.Point(210, 172);
     this.Button1.Name = "Button1";
     this.Button1.Size = new System.Drawing.Size(29, 20);
     this.Button1.TabIndex = 98;
     this.Button1.Text = "...";
     this.Button1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Button1.UseVisualStyleBackColor = false;
     //
     // TextBox8
     //
     this.TextBox8.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox8.Location = new System.Drawing.Point(122, 172);
     this.TextBox8.Name = "TextBox8";
     this.TextBox8.Size = new System.Drawing.Size(117, 21);
     this.TextBox8.TabIndex = 97;
     this.TextBox8.Text = "RUC";
     //
     // Label8
     //
     this.Label8.AutoSize = true;
     this.Label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label8.Location = new System.Drawing.Point(12, 172);
     this.Label8.Name = "Label8";
     this.Label8.Size = new System.Drawing.Size(95, 16);
     this.Label8.TabIndex = 96;
     this.Label8.Text = "Doc. Identidad";
     //
     // TextBox7
     //
     this.TextBox7.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox7.Location = new System.Drawing.Point(122, 140);
     this.TextBox7.Name = "TextBox7";
     this.TextBox7.Size = new System.Drawing.Size(373, 21);
     this.TextBox7.TabIndex = 95;
     this.TextBox7.Text = "Jr. almenara 365 - San Juan de Miraflores";
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(12, 140);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(65, 16);
     this.Label7.TabIndex = 94;
     this.Label7.Text = "Dirección";
     //
     // Button9
     //
     this.Button9.BackColor = System.Drawing.Color.Gainsboro;
     this.Button9.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.Button9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Button9.Location = new System.Drawing.Point(466, 19);
     this.Button9.Name = "Button9";
     this.Button9.Size = new System.Drawing.Size(29, 20);
     this.Button9.TabIndex = 93;
     this.Button9.Text = "...";
     this.Button9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Button9.UseVisualStyleBackColor = false;
     //
     // TextBox14
     //
     this.TextBox14.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox14.Location = new System.Drawing.Point(358, 19);
     this.TextBox14.Name = "TextBox14";
     this.TextBox14.Size = new System.Drawing.Size(137, 21);
     this.TextBox14.TabIndex = 92;
     this.TextBox14.Text = "Persona Jurídica";
     //
     // Label15
     //
     this.Label15.AutoSize = true;
     this.Label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label15.Location = new System.Drawing.Point(256, 19);
     this.Label15.Name = "Label15";
     this.Label15.Size = new System.Drawing.Size(90, 16);
     this.Label15.TabIndex = 91;
     this.Label15.Text = "Tipo Persona";
     //
     // TextBox5
     //
     this.TextBox5.BackColor = System.Drawing.SystemColors.ControlLight;
     this.TextBox5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox5.Enabled = false;
     this.TextBox5.Location = new System.Drawing.Point(358, 106);
     this.TextBox5.Name = "TextBox5";
     this.TextBox5.Size = new System.Drawing.Size(137, 21);
     this.TextBox5.TabIndex = 89;
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label4.Location = new System.Drawing.Point(245, 110);
     this.Label4.Name = "Label4";
     this.Label4.Size = new System.Drawing.Size(115, 16);
     this.Label4.TabIndex = 90;
     this.Label4.Text = "Segundo Nombre";
     //
     // TextBox6
     //
     this.TextBox6.BackColor = System.Drawing.SystemColors.ControlLight;
     this.TextBox6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox6.Enabled = false;
     this.TextBox6.Location = new System.Drawing.Point(358, 77);
     this.TextBox6.Name = "TextBox6";
     this.TextBox6.Size = new System.Drawing.Size(137, 21);
     this.TextBox6.TabIndex = 87;
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label5.Location = new System.Drawing.Point(245, 81);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(110, 16);
     this.Label5.TabIndex = 88;
     this.Label5.Text = "Apellido Materno";
     //
     // TextBox3
     //
     this.TextBox3.BackColor = System.Drawing.SystemColors.ControlLight;
     this.TextBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox3.Enabled = false;
     this.TextBox3.Location = new System.Drawing.Point(122, 106);
     this.TextBox3.Name = "TextBox3";
     this.TextBox3.Size = new System.Drawing.Size(117, 21);
     this.TextBox3.TabIndex = 85;
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Location = new System.Drawing.Point(12, 110);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(99, 16);
     this.Label3.TabIndex = 86;
     this.Label3.Text = "Primer Nombre";
     //
     // TextBox2
     //
     this.TextBox2.BackColor = System.Drawing.SystemColors.ControlLight;
     this.TextBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox2.Enabled = false;
     this.TextBox2.Location = new System.Drawing.Point(122, 77);
     this.TextBox2.Name = "TextBox2";
     this.TextBox2.Size = new System.Drawing.Size(117, 21);
     this.TextBox2.TabIndex = 83;
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location = new System.Drawing.Point(12, 81);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(108, 16);
     this.Label2.TabIndex = 84;
     this.Label2.Text = "Apellido Paterno";
     //
     // TextBox1
     //
     this.TextBox1.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox1.Location = new System.Drawing.Point(122, 45);
     this.TextBox1.Name = "TextBox1";
     this.TextBox1.Size = new System.Drawing.Size(373, 21);
     this.TextBox1.TabIndex = 81;
     this.TextBox1.Text = "Distribuidor del Sur S.A.";
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Location = new System.Drawing.Point(12, 49);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(88, 16);
     this.Label1.TabIndex = 82;
     this.Label1.Text = "Razón Social";
     //
     // TextBox4
     //
     this.TextBox4.BackColor = System.Drawing.Color.LightCyan;
     this.TextBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TextBox4.Location = new System.Drawing.Point(122, 19);
     this.TextBox4.Name = "TextBox4";
     this.TextBox4.Size = new System.Drawing.Size(117, 21);
     this.TextBox4.TabIndex = 79;
     this.TextBox4.Text = "000002";
     //
     // Label6
     //
     this.Label6.AutoSize = true;
     this.Label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label6.Location = new System.Drawing.Point(12, 19);
     this.Label6.Name = "Label6";
     this.Label6.Size = new System.Drawing.Size(52, 16);
     this.Label6.TabIndex = 80;
     this.Label6.Text = "Código";
     //
     // frmCliente
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(509, 449);
     this.Controls.Add(this.Button5);
     this.Controls.Add(this.Button6);
     this.Controls.Add(this.TabControl1);
     this.Controls.Add(this.CheckBox2);
     this.Controls.Add(this.TextBox9);
     this.Controls.Add(this.Label9);
     this.Controls.Add(this.Button1);
     this.Controls.Add(this.TextBox8);
     this.Controls.Add(this.Label8);
     this.Controls.Add(this.TextBox7);
     this.Controls.Add(this.Label7);
     this.Controls.Add(this.Button9);
     this.Controls.Add(this.TextBox14);
     this.Controls.Add(this.Label15);
     this.Controls.Add(this.TextBox5);
     this.Controls.Add(this.Label4);
     this.Controls.Add(this.TextBox6);
     this.Controls.Add(this.Label5);
     this.Controls.Add(this.TextBox3);
     this.Controls.Add(this.Label3);
     this.Controls.Add(this.TextBox2);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.TextBox1);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.TextBox4);
     this.Controls.Add(this.Label6);
     this.Name = "frmCliente";
     this.Text = "Cliente";
     this.Load += new System.EventHandler(this.frmCliente_Load);
     this.TabControl1.ResumeLayout(false);
     this.TabPage1.ResumeLayout(false);
     this.Panel1.ResumeLayout(false);
     this.Panel1.PerformLayout();
     this.TabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DataGridView1)).EndInit();
     this.TabPage3.ResumeLayout(false);
     this.Panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DataGridView2)).EndInit();
     this.TabPage4.ResumeLayout(false);
     this.Panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DataGridView3)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 5
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(FormSchemaConfig));
     this.SchemaDataGridView = new System.Windows.Forms.DataGridView();
     this.DataBaseDataSet = new CMData.Schemas.XsdDataBase();
     this.CancelarButton = new System.Windows.Forms.Button();
     this.BotonesPanel = new System.Windows.Forms.Panel();
     this.AceptarButton = new System.Windows.Forms.Button();
     this.BottomPanel = new System.Windows.Forms.Panel();
     this.schemaNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.schemaAliasDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Maping_Schema = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.SchemaDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataBaseDataSet)).BeginInit();
     this.BotonesPanel.SuspendLayout();
     this.BottomPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // SchemaDataGridView
     //
     this.SchemaDataGridView.AllowUserToAddRows = false;
     this.SchemaDataGridView.AllowUserToDeleteRows = false;
     this.SchemaDataGridView.AutoGenerateColumns = false;
     this.SchemaDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.SchemaDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.schemaNameDataGridViewTextBoxColumn,
     this.schemaAliasDataGridViewTextBoxColumn,
     this.Maping_Schema});
     this.SchemaDataGridView.DataMember = "TBL_Schema";
     this.SchemaDataGridView.DataSource = this.DataBaseDataSet;
     this.SchemaDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.SchemaDataGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.SchemaDataGridView.Location = new System.Drawing.Point(10, 10);
     this.SchemaDataGridView.Name = "SchemaDataGridView";
     this.SchemaDataGridView.Size = new System.Drawing.Size(446, 205);
     this.SchemaDataGridView.TabIndex = 14;
     //
     // DataBaseDataSet
     //
     this.DataBaseDataSet.DataSetName = "XsdDataBase";
     this.DataBaseDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // CancelarButton
     //
     this.CancelarButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.CancelarButton.Location = new System.Drawing.Point(54, 14);
     this.CancelarButton.Name = "CancelarButton";
     this.CancelarButton.Size = new System.Drawing.Size(89, 23);
     this.CancelarButton.TabIndex = 12;
     this.CancelarButton.Text = "Cancelar";
     this.CancelarButton.UseVisualStyleBackColor = true;
     this.CancelarButton.Click += new System.EventHandler(this.CancelarButton_Click);
     //
     // BotonesPanel
     //
     this.BotonesPanel.Controls.Add(this.AceptarButton);
     this.BotonesPanel.Controls.Add(this.CancelarButton);
     this.BotonesPanel.Dock = System.Windows.Forms.DockStyle.Right;
     this.BotonesPanel.Location = new System.Drawing.Point(187, 0);
     this.BotonesPanel.Name = "BotonesPanel";
     this.BotonesPanel.Size = new System.Drawing.Size(259, 40);
     this.BotonesPanel.TabIndex = 13;
     //
     // AceptarButton
     //
     this.AceptarButton.Location = new System.Drawing.Point(162, 14);
     this.AceptarButton.Name = "AceptarButton";
     this.AceptarButton.Size = new System.Drawing.Size(94, 23);
     this.AceptarButton.TabIndex = 11;
     this.AceptarButton.Text = "Aceptar";
     this.AceptarButton.UseVisualStyleBackColor = true;
     this.AceptarButton.Click += new System.EventHandler(this.AceptarButton_Click);
     //
     // BottomPanel
     //
     this.BottomPanel.Controls.Add(this.BotonesPanel);
     this.BottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.BottomPanel.Location = new System.Drawing.Point(10, 215);
     this.BottomPanel.Name = "BottomPanel";
     this.BottomPanel.Padding = new System.Windows.Forms.Padding(5, 0, 0, 2);
     this.BottomPanel.Size = new System.Drawing.Size(446, 42);
     this.BottomPanel.TabIndex = 13;
     //
     // schemaNameDataGridViewTextBoxColumn
     //
     this.schemaNameDataGridViewTextBoxColumn.DataPropertyName = "Schema_Name";
     this.schemaNameDataGridViewTextBoxColumn.HeaderText = "Esquema";
     this.schemaNameDataGridViewTextBoxColumn.Name = "schemaNameDataGridViewTextBoxColumn";
     this.schemaNameDataGridViewTextBoxColumn.ReadOnly = true;
     this.schemaNameDataGridViewTextBoxColumn.ToolTipText = "Nombre del esquema";
     this.schemaNameDataGridViewTextBoxColumn.Width = 150;
     //
     // schemaAliasDataGridViewTextBoxColumn
     //
     this.schemaAliasDataGridViewTextBoxColumn.DataPropertyName = "Schema_Alias";
     this.schemaAliasDataGridViewTextBoxColumn.HeaderText = "Alias";
     this.schemaAliasDataGridViewTextBoxColumn.Name = "schemaAliasDataGridViewTextBoxColumn";
     this.schemaAliasDataGridViewTextBoxColumn.Width = 200;
     //
     // Maping_Schema
     //
     this.Maping_Schema.DataPropertyName = "Maping_Schema";
     this.Maping_Schema.HeaderText = "Usar";
     this.Maping_Schema.Name = "Maping_Schema";
     this.Maping_Schema.Width = 40;
     //
     // FormSchemaConfig
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(466, 262);
     this.Controls.Add(this.SchemaDataGridView);
     this.Controls.Add(this.BottomPanel);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormSchemaConfig";
     this.Padding = new System.Windows.Forms.Padding(10, 10, 10, 5);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Configuración de esquemas";
     ((System.ComponentModel.ISupportInitialize)(this.SchemaDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataBaseDataSet)).EndInit();
     this.BotonesPanel.ResumeLayout(false);
     this.BottomPanel.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(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.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>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.grdExceptionAdmin = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colCreateOn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colMessage = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colThreadName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colFormattedMessage = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCreateBy = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnBatchDelete = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.btnClearException = new System.Windows.Forms.Button();
     this.btnExport = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.grdExceptionAdmin)).BeginInit();
     this.SuspendLayout();
     //
     // grdExceptionAdmin
     //
     this.grdExceptionAdmin.AllowUserToAddRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.AliceBlue;
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(168)))), ((int)(((byte)(168)))), ((int)(((byte)(255)))));
     this.grdExceptionAdmin.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.grdExceptionAdmin.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.grdExceptionAdmin.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdExceptionAdmin.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdExceptionAdmin.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdExceptionAdmin.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colCreateOn,
     this.colMessage,
     this.colThreadName,
     this.colFormattedMessage,
     this.colCreateBy});
     this.grdExceptionAdmin.Location = new System.Drawing.Point(7, 42);
     this.grdExceptionAdmin.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.grdExceptionAdmin.MultiSelect = false;
     this.grdExceptionAdmin.Name = "grdExceptionAdmin";
     this.grdExceptionAdmin.RowTemplate.Height = 23;
     this.grdExceptionAdmin.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdExceptionAdmin.Size = new System.Drawing.Size(850, 456);
     this.grdExceptionAdmin.TabIndex = 0;
     this.grdExceptionAdmin.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdExceptionAdmin_CellDoubleClick);
     this.grdExceptionAdmin.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.grdExceptionAdmin_UserDeletingRow);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colSelected.Width = 50;
     //
     // colCreateOn
     //
     this.colCreateOn.DataPropertyName = "CreateOn";
     this.colCreateOn.HeaderText = "发生时间";
     this.colCreateOn.MaxInputLength = 20;
     this.colCreateOn.Name = "colCreateOn";
     this.colCreateOn.ReadOnly = true;
     this.colCreateOn.Width = 120;
     //
     // colMessage
     //
     this.colMessage.DataPropertyName = "Message";
     this.colMessage.HeaderText = "异常信息";
     this.colMessage.MaxInputLength = 800;
     this.colMessage.Name = "colMessage";
     this.colMessage.ReadOnly = true;
     this.colMessage.Width = 400;
     //
     // colThreadName
     //
     this.colThreadName.DataPropertyName = "ThreadName";
     this.colThreadName.HeaderText = "异常信息来源";
     this.colThreadName.MaxInputLength = 200;
     this.colThreadName.Name = "colThreadName";
     this.colThreadName.ReadOnly = true;
     //
     // colFormattedMessage
     //
     this.colFormattedMessage.DataPropertyName = "FormattedMessage";
     this.colFormattedMessage.HeaderText = "异常信息描述";
     this.colFormattedMessage.MaxInputLength = 800;
     this.colFormattedMessage.Name = "colFormattedMessage";
     this.colFormattedMessage.ReadOnly = true;
     this.colFormattedMessage.Width = 200;
     //
     // colCreateBy
     //
     this.colCreateBy.DataPropertyName = "CreateBy";
     this.colCreateBy.HeaderText = "创建者";
     this.colCreateBy.MaxInputLength = 20;
     this.colCreateBy.Name = "colCreateBy";
     this.colCreateBy.ReadOnly = true;
     this.colCreateBy.Width = 120;
     //
     // btnBatchDelete
     //
     this.btnBatchDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchDelete.Location = new System.Drawing.Point(597, 504);
     this.btnBatchDelete.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.btnBatchDelete.Name = "btnBatchDelete";
     this.btnBatchDelete.Size = new System.Drawing.Size(74, 23);
     this.btnBatchDelete.TabIndex = 4;
     this.btnBatchDelete.Text = "删除(&D)";
     this.btnBatchDelete.UseVisualStyleBackColor = true;
     this.btnBatchDelete.Click += new System.EventHandler(this.btnBatchDelete_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(783, 504);
     this.btnClose.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(74, 23);
     this.btnClose.TabIndex = 6;
     this.btnClose.Text = "关闭";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Location = new System.Drawing.Point(92, 504);
     this.btnInvertSelect.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(78, 23);
     this.btnInvertSelect.TabIndex = 2;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Location = new System.Drawing.Point(6, 504);
     this.btnSelectAll.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(78, 23);
     this.btnSelectAll.TabIndex = 1;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // btnClearException
     //
     this.btnClearException.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClearException.Location = new System.Drawing.Point(679, 504);
     this.btnClearException.Name = "btnClearException";
     this.btnClearException.Size = new System.Drawing.Size(97, 23);
     this.btnClearException.TabIndex = 5;
     this.btnClearException.Text = "全部清除(&C)";
     this.btnClearException.UseVisualStyleBackColor = true;
     this.btnClearException.Click += new System.EventHandler(this.btnClearException_Click);
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Location = new System.Drawing.Point(745, 11);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(111, 23);
     this.btnExport.TabIndex = 3;
     this.btnExport.Text = "导出Excel...";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // FrmExceptionAdmin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(866, 531);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.btnClearException);
     this.Controls.Add(this.btnInvertSelect);
     this.Controls.Add(this.btnSelectAll);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnBatchDelete);
     this.Controls.Add(this.grdExceptionAdmin);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
     this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.Name = "FrmExceptionAdmin";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "系统异常情况记录";
     ((System.ComponentModel.ISupportInitialize)(this.grdExceptionAdmin)).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()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.topPanel = new System.Windows.Forms.Panel();
     this.label1 = 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.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.logToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.bottonPanel = new System.Windows.Forms.Panel();
     this.FlooderStatusIndicatorsGroupBox = new System.Windows.Forms.GroupBox();
     this.YellowLabel = new System.Windows.Forms.Label();
     this.RedLabel = new System.Windows.Forms.Label();
     this.GreenLabel = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.ProgressLabel = new System.Windows.Forms.Label();
     this.ProgressSpinnerPictureBox = new System.Windows.Forms.PictureBox();
     this.clockLabel = new System.Windows.Forms.Label();
     this.AddDeleteFlooderGroupBox = new System.Windows.Forms.GroupBox();
     this.DeleteFlooderButton = new System.Windows.Forms.Button();
     this.AddFlooderButton = new System.Windows.Forms.Button();
     this.mainPanel = new System.Windows.Forms.Panel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.FlooderTimerIntervalGroupBox = new System.Windows.Forms.GroupBox();
     this.FlooderIntervalTextBox = new System.Windows.Forms.TextBox();
     this.FlooderTargetGroupBox = new System.Windows.Forms.GroupBox();
     this.TargetIpAddressTextBox = new System.Windows.Forms.TextBox();
     this.TargetPortTextBox = new System.Windows.Forms.TextBox();
     this.DatabaseResetGroupBox = new System.Windows.Forms.GroupBox();
     this.DatabaseResetCheckBox = new System.Windows.Forms.CheckBox();
     this.ParseCaptureFilesServiceGroupBox = new System.Windows.Forms.GroupBox();
     this.StartParseFilesServiceButton = new System.Windows.Forms.Button();
     this.ParseFilesServiceStatusLabel = new System.Windows.Forms.Label();
     this.ClockButton = new System.Windows.Forms.Button();
     this.FlooderStatusDataGridView = new System.Windows.Forms.DataGridView();
     this.SelectFlooder = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Pid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Flooder = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Port = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FlooderTarget = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.RunTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FlooderControl = new System.Windows.Forms.DataGridViewButtonColumn();
     this.topPanel.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.bottonPanel.SuspendLayout();
     this.FlooderStatusIndicatorsGroupBox.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ProgressSpinnerPictureBox)).BeginInit();
     this.AddDeleteFlooderGroupBox.SuspendLayout();
     this.mainPanel.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.FlooderTimerIntervalGroupBox.SuspendLayout();
     this.FlooderTargetGroupBox.SuspendLayout();
     this.DatabaseResetGroupBox.SuspendLayout();
     this.ParseCaptureFilesServiceGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FlooderStatusDataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // topPanel
     //
     this.topPanel.BackColor = System.Drawing.SystemColors.Control;
     this.topPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.topPanel.Controls.Add(this.label1);
     this.topPanel.Controls.Add(this.menuStrip1);
     this.topPanel.Dock = System.Windows.Forms.DockStyle.Top;
     this.topPanel.Location = new System.Drawing.Point(0, 0);
     this.topPanel.Name = "topPanel";
     this.topPanel.Size = new System.Drawing.Size(982, 128);
     this.topPanel.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 53);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(399, 25);
     this.label1.TabIndex = 0;
     this.label1.Text = "Virtual Machine Co-Residency Probe";
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.viewToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(980, 24);
     this.menuStrip1.TabIndex = 1;
     this.menuStrip1.Text = "MainMenuMenuStrip";
     //
     // 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(92, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.logToolStripMenuItem});
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "View";
     //
     // logToolStripMenuItem
     //
     this.logToolStripMenuItem.Name = "logToolStripMenuItem";
     this.logToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.logToolStripMenuItem.Text = "Log";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
     this.aboutToolStripMenuItem.Text = "About";
     //
     // bottonPanel
     //
     this.bottonPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.bottonPanel.Controls.Add(this.FlooderStatusIndicatorsGroupBox);
     this.bottonPanel.Controls.Add(this.groupBox1);
     this.bottonPanel.Controls.Add(this.AddDeleteFlooderGroupBox);
     this.bottonPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bottonPanel.Location = new System.Drawing.Point(0, 531);
     this.bottonPanel.Name = "bottonPanel";
     this.bottonPanel.Size = new System.Drawing.Size(982, 100);
     this.bottonPanel.TabIndex = 1;
     //
     // FlooderStatusIndicatorsGroupBox
     //
     this.FlooderStatusIndicatorsGroupBox.Controls.Add(this.YellowLabel);
     this.FlooderStatusIndicatorsGroupBox.Controls.Add(this.RedLabel);
     this.FlooderStatusIndicatorsGroupBox.Controls.Add(this.GreenLabel);
     this.FlooderStatusIndicatorsGroupBox.Location = new System.Drawing.Point(237, 5);
     this.FlooderStatusIndicatorsGroupBox.Name = "FlooderStatusIndicatorsGroupBox";
     this.FlooderStatusIndicatorsGroupBox.Size = new System.Drawing.Size(506, 82);
     this.FlooderStatusIndicatorsGroupBox.TabIndex = 9;
     this.FlooderStatusIndicatorsGroupBox.TabStop = false;
     //
     // YellowLabel
     //
     this.YellowLabel.BackColor = System.Drawing.Color.Khaki;
     this.YellowLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.YellowLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.YellowLabel.Location = new System.Drawing.Point(193, 32);
     this.YellowLabel.Name = "YellowLabel";
     this.YellowLabel.Size = new System.Drawing.Size(121, 25);
     this.YellowLabel.TabIndex = 4;
     this.YellowLabel.Text = "Non-Resident";
     this.YellowLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // RedLabel
     //
     this.RedLabel.BackColor = System.Drawing.Color.LightCoral;
     this.RedLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.RedLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RedLabel.Location = new System.Drawing.Point(349, 32);
     this.RedLabel.Name = "RedLabel";
     this.RedLabel.Size = new System.Drawing.Size(121, 25);
     this.RedLabel.TabIndex = 6;
     this.RedLabel.Text = "Not Connected";
     this.RedLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // GreenLabel
     //
     this.GreenLabel.BackColor = System.Drawing.Color.LightGreen;
     this.GreenLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.GreenLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.GreenLabel.Location = new System.Drawing.Point(37, 32);
     this.GreenLabel.Name = "GreenLabel";
     this.GreenLabel.Size = new System.Drawing.Size(121, 25);
     this.GreenLabel.TabIndex = 2;
     this.GreenLabel.Text = "Co-Resident";
     this.GreenLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.ProgressLabel);
     this.groupBox1.Controls.Add(this.ProgressSpinnerPictureBox);
     this.groupBox1.Controls.Add(this.clockLabel);
     this.groupBox1.Location = new System.Drawing.Point(749, 5);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(220, 82);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     //
     // ProgressLabel
     //
     this.ProgressLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ProgressLabel.Location = new System.Drawing.Point(54, 16);
     this.ProgressLabel.Name = "ProgressLabel";
     this.ProgressLabel.Size = new System.Drawing.Size(160, 58);
     this.ProgressLabel.TabIndex = 2;
     this.ProgressLabel.Text = "Progress Label";
     this.ProgressLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ProgressSpinnerPictureBox
     //
     this.ProgressSpinnerPictureBox.Image = global::COWE.Client.Properties.Resources.fedora_spinner;
     this.ProgressSpinnerPictureBox.InitialImage = null;
     this.ProgressSpinnerPictureBox.Location = new System.Drawing.Point(10, 29);
     this.ProgressSpinnerPictureBox.Name = "ProgressSpinnerPictureBox";
     this.ProgressSpinnerPictureBox.Size = new System.Drawing.Size(38, 31);
     this.ProgressSpinnerPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.ProgressSpinnerPictureBox.TabIndex = 1;
     this.ProgressSpinnerPictureBox.TabStop = false;
     //
     // clockLabel
     //
     this.clockLabel.Location = new System.Drawing.Point(29, 26);
     this.clockLabel.Name = "clockLabel";
     this.clockLabel.Size = new System.Drawing.Size(172, 31);
     this.clockLabel.TabIndex = 0;
     this.clockLabel.Text = "Clock";
     this.clockLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // AddDeleteFlooderGroupBox
     //
     this.AddDeleteFlooderGroupBox.Controls.Add(this.DeleteFlooderButton);
     this.AddDeleteFlooderGroupBox.Controls.Add(this.AddFlooderButton);
     this.AddDeleteFlooderGroupBox.Location = new System.Drawing.Point(11, 5);
     this.AddDeleteFlooderGroupBox.Name = "AddDeleteFlooderGroupBox";
     this.AddDeleteFlooderGroupBox.Size = new System.Drawing.Size(220, 82);
     this.AddDeleteFlooderGroupBox.TabIndex = 7;
     this.AddDeleteFlooderGroupBox.TabStop = false;
     //
     // DeleteFlooderButton
     //
     this.DeleteFlooderButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DeleteFlooderButton.Location = new System.Drawing.Point(39, 47);
     this.DeleteFlooderButton.Name = "DeleteFlooderButton";
     this.DeleteFlooderButton.Size = new System.Drawing.Size(139, 27);
     this.DeleteFlooderButton.TabIndex = 7;
     this.DeleteFlooderButton.Text = "Delete Flooder";
     this.DeleteFlooderButton.UseVisualStyleBackColor = true;
     this.DeleteFlooderButton.Click += new System.EventHandler(this.DeleteFlooderButton_Click);
     //
     // AddFlooderButton
     //
     this.AddFlooderButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AddFlooderButton.Location = new System.Drawing.Point(39, 13);
     this.AddFlooderButton.Name = "AddFlooderButton";
     this.AddFlooderButton.Size = new System.Drawing.Size(139, 27);
     this.AddFlooderButton.TabIndex = 6;
     this.AddFlooderButton.Text = "Add Flooder";
     this.AddFlooderButton.UseVisualStyleBackColor = true;
     this.AddFlooderButton.Click += new System.EventHandler(this.AddFlooderButton_Click);
     //
     // mainPanel
     //
     this.mainPanel.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.mainPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.mainPanel.Controls.Add(this.groupBox2);
     this.mainPanel.Controls.Add(this.ClockButton);
     this.mainPanel.Controls.Add(this.FlooderStatusDataGridView);
     this.mainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mainPanel.Location = new System.Drawing.Point(0, 128);
     this.mainPanel.Name = "mainPanel";
     this.mainPanel.Size = new System.Drawing.Size(982, 403);
     this.mainPanel.TabIndex = 2;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.FlooderTimerIntervalGroupBox);
     this.groupBox2.Controls.Add(this.FlooderTargetGroupBox);
     this.groupBox2.Controls.Add(this.DatabaseResetGroupBox);
     this.groupBox2.Controls.Add(this.ParseCaptureFilesServiceGroupBox);
     this.groupBox2.Location = new System.Drawing.Point(21, 5);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(942, 95);
     this.groupBox2.TabIndex = 11;
     this.groupBox2.TabStop = false;
     //
     // FlooderTimerIntervalGroupBox
     //
     this.FlooderTimerIntervalGroupBox.Controls.Add(this.FlooderIntervalTextBox);
     this.FlooderTimerIntervalGroupBox.Location = new System.Drawing.Point(275, 24);
     this.FlooderTimerIntervalGroupBox.Name = "FlooderTimerIntervalGroupBox";
     this.FlooderTimerIntervalGroupBox.Size = new System.Drawing.Size(132, 63);
     this.FlooderTimerIntervalGroupBox.TabIndex = 8;
     this.FlooderTimerIntervalGroupBox.TabStop = false;
     this.FlooderTimerIntervalGroupBox.Text = "Flooder Interval (sec)";
     //
     // FlooderIntervalTextBox
     //
     this.FlooderIntervalTextBox.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.FlooderIntervalTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FlooderIntervalTextBox.Location = new System.Drawing.Point(31, 23);
     this.FlooderIntervalTextBox.Name = "FlooderIntervalTextBox";
     this.FlooderIntervalTextBox.Size = new System.Drawing.Size(66, 26);
     this.FlooderIntervalTextBox.TabIndex = 6;
     this.FlooderIntervalTextBox.Text = "120";
     this.FlooderIntervalTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // FlooderTargetGroupBox
     //
     this.FlooderTargetGroupBox.Controls.Add(this.TargetIpAddressTextBox);
     this.FlooderTargetGroupBox.Controls.Add(this.TargetPortTextBox);
     this.FlooderTargetGroupBox.Location = new System.Drawing.Point(23, 24);
     this.FlooderTargetGroupBox.Name = "FlooderTargetGroupBox";
     this.FlooderTargetGroupBox.Size = new System.Drawing.Size(246, 63);
     this.FlooderTargetGroupBox.TabIndex = 9;
     this.FlooderTargetGroupBox.TabStop = false;
     this.FlooderTargetGroupBox.Text = "Target (Server) - IP Address and Port Number";
     //
     // TargetIpAddressTextBox
     //
     this.TargetIpAddressTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TargetIpAddressTextBox.Location = new System.Drawing.Point(14, 23);
     this.TargetIpAddressTextBox.Name = "TargetIpAddressTextBox";
     this.TargetIpAddressTextBox.Size = new System.Drawing.Size(138, 26);
     this.TargetIpAddressTextBox.TabIndex = 2;
     this.TargetIpAddressTextBox.Text = "255.255.255.255";
     this.TargetIpAddressTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // TargetPortTextBox
     //
     this.TargetPortTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TargetPortTextBox.Location = new System.Drawing.Point(165, 23);
     this.TargetPortTextBox.Name = "TargetPortTextBox";
     this.TargetPortTextBox.Size = new System.Drawing.Size(66, 26);
     this.TargetPortTextBox.TabIndex = 3;
     this.TargetPortTextBox.Text = "65536";
     this.TargetPortTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // DatabaseResetGroupBox
     //
     this.DatabaseResetGroupBox.Controls.Add(this.DatabaseResetCheckBox);
     this.DatabaseResetGroupBox.Location = new System.Drawing.Point(413, 24);
     this.DatabaseResetGroupBox.Name = "DatabaseResetGroupBox";
     this.DatabaseResetGroupBox.Size = new System.Drawing.Size(234, 63);
     this.DatabaseResetGroupBox.TabIndex = 10;
     this.DatabaseResetGroupBox.TabStop = false;
     this.DatabaseResetGroupBox.Text = "Database Reset /  Purge Old Files";
     //
     // DatabaseResetCheckBox
     //
     this.DatabaseResetCheckBox.AutoSize = true;
     this.DatabaseResetCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DatabaseResetCheckBox.Location = new System.Drawing.Point(9, 25);
     this.DatabaseResetCheckBox.Name = "DatabaseResetCheckBox";
     this.DatabaseResetCheckBox.Size = new System.Drawing.Size(213, 24);
     this.DatabaseResetCheckBox.TabIndex = 0;
     this.DatabaseResetCheckBox.Text = "Reset Database and Files";
     this.DatabaseResetCheckBox.UseVisualStyleBackColor = true;
     //
     // ParseCaptureFilesServiceGroupBox
     //
     this.ParseCaptureFilesServiceGroupBox.Controls.Add(this.StartParseFilesServiceButton);
     this.ParseCaptureFilesServiceGroupBox.Controls.Add(this.ParseFilesServiceStatusLabel);
     this.ParseCaptureFilesServiceGroupBox.Location = new System.Drawing.Point(653, 24);
     this.ParseCaptureFilesServiceGroupBox.Name = "ParseCaptureFilesServiceGroupBox";
     this.ParseCaptureFilesServiceGroupBox.Size = new System.Drawing.Size(266, 63);
     this.ParseCaptureFilesServiceGroupBox.TabIndex = 9;
     this.ParseCaptureFilesServiceGroupBox.TabStop = false;
     this.ParseCaptureFilesServiceGroupBox.Text = "Parse Capture Files Service";
     //
     // StartParseFilesServiceButton
     //
     this.StartParseFilesServiceButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.StartParseFilesServiceButton.Location = new System.Drawing.Point(22, 21);
     this.StartParseFilesServiceButton.Name = "StartParseFilesServiceButton";
     this.StartParseFilesServiceButton.Size = new System.Drawing.Size(85, 30);
     this.StartParseFilesServiceButton.TabIndex = 8;
     this.StartParseFilesServiceButton.Text = "Start";
     this.StartParseFilesServiceButton.UseVisualStyleBackColor = true;
     this.StartParseFilesServiceButton.Click += new System.EventHandler(this.StartParseFilesServiceButton_Click);
     //
     // ParseFilesServiceStatusLabel
     //
     this.ParseFilesServiceStatusLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ParseFilesServiceStatusLabel.Location = new System.Drawing.Point(128, 25);
     this.ParseFilesServiceStatusLabel.Name = "ParseFilesServiceStatusLabel";
     this.ParseFilesServiceStatusLabel.Size = new System.Drawing.Size(100, 23);
     this.ParseFilesServiceStatusLabel.TabIndex = 0;
     this.ParseFilesServiceStatusLabel.Text = "Status";
     this.ParseFilesServiceStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ClockButton
     //
     this.ClockButton.Location = new System.Drawing.Point(902, 373);
     this.ClockButton.Name = "ClockButton";
     this.ClockButton.Size = new System.Drawing.Size(75, 23);
     this.ClockButton.TabIndex = 10;
     this.ClockButton.Text = "Start Clock";
     this.ClockButton.UseVisualStyleBackColor = true;
     this.ClockButton.Click += new System.EventHandler(this.ClockButton_Click);
     //
     // FlooderStatusDataGridView
     //
     this.FlooderStatusDataGridView.AllowUserToAddRows = false;
     this.FlooderStatusDataGridView.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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.FlooderStatusDataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.FlooderStatusDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.FlooderStatusDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.SelectFlooder,
     this.Pid,
     this.Flooder,
     this.Port,
     this.FlooderTarget,
     this.RunTime,
     this.Status,
     this.FlooderControl});
     this.FlooderStatusDataGridView.Location = new System.Drawing.Point(66, 116);
     this.FlooderStatusDataGridView.Name = "FlooderStatusDataGridView";
     this.FlooderStatusDataGridView.ReadOnly = true;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FlooderStatusDataGridView.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.FlooderStatusDataGridView.Size = new System.Drawing.Size(887, 153);
     this.FlooderStatusDataGridView.TabIndex = 0;
     this.FlooderStatusDataGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.FlooderStatusDataGridView_CellContentClick);
     //
     // SelectFlooder
     //
     this.SelectFlooder.HeaderText = "";
     this.SelectFlooder.MinimumWidth = 30;
     this.SelectFlooder.Name = "SelectFlooder";
     this.SelectFlooder.ReadOnly = true;
     this.SelectFlooder.Width = 30;
     //
     // Pid
     //
     this.Pid.HeaderText = "PID";
     this.Pid.MinimumWidth = 60;
     this.Pid.Name = "Pid";
     this.Pid.ReadOnly = true;
     this.Pid.Width = 60;
     //
     // Flooder
     //
     this.Flooder.HeaderText = "Flooder";
     this.Flooder.MinimumWidth = 150;
     this.Flooder.Name = "Flooder";
     this.Flooder.ReadOnly = true;
     this.Flooder.ToolTipText = "IP address";
     this.Flooder.Width = 150;
     //
     // Port
     //
     this.Port.HeaderText = "Port";
     this.Port.MinimumWidth = 80;
     this.Port.Name = "Port";
     this.Port.ReadOnly = true;
     this.Port.Width = 80;
     //
     // FlooderTarget
     //
     this.FlooderTarget.HeaderText = "Destination";
     this.FlooderTarget.MinimumWidth = 150;
     this.FlooderTarget.Name = "FlooderTarget";
     this.FlooderTarget.ReadOnly = true;
     this.FlooderTarget.Width = 150;
     //
     // RunTime
     //
     this.RunTime.HeaderText = "Run Time (sec)";
     this.RunTime.Name = "RunTime";
     this.RunTime.ReadOnly = true;
     //
     // Status
     //
     this.Status.HeaderText = "Status";
     this.Status.MinimumWidth = 122;
     this.Status.Name = "Status";
     this.Status.ReadOnly = true;
     this.Status.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.Status.Width = 122;
     //
     // FlooderControl
     //
     this.FlooderControl.HeaderText = "";
     this.FlooderControl.MinimumWidth = 100;
     this.FlooderControl.Name = "FlooderControl";
     this.FlooderControl.ReadOnly = true;
     this.FlooderControl.Text = "Start";
     this.FlooderControl.UseColumnTextForButtonValue = true;
     //
     // Client
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(982, 631);
     this.Controls.Add(this.mainPanel);
     this.Controls.Add(this.bottonPanel);
     this.Controls.Add(this.topPanel);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Client";
     this.Text = "Co-Residency Probe (Client)";
     this.topPanel.ResumeLayout(false);
     this.topPanel.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.bottonPanel.ResumeLayout(false);
     this.FlooderStatusIndicatorsGroupBox.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ProgressSpinnerPictureBox)).EndInit();
     this.AddDeleteFlooderGroupBox.ResumeLayout(false);
     this.mainPanel.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.FlooderTimerIntervalGroupBox.ResumeLayout(false);
     this.FlooderTimerIntervalGroupBox.PerformLayout();
     this.FlooderTargetGroupBox.ResumeLayout(false);
     this.FlooderTargetGroupBox.PerformLayout();
     this.DatabaseResetGroupBox.ResumeLayout(false);
     this.DatabaseResetGroupBox.PerformLayout();
     this.ParseCaptureFilesServiceGroupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.FlooderStatusDataGridView)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 10
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();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.ownDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.wantDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.titleDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.issueNumDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gradeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.descriptionDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.comicBookDetails1BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.comicBookDataSet = new Comics.ComicBookDataSet();
     this.button1 = new System.Windows.Forms.Button();
     this.btnPrintWantList = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.txtShowAll = new System.Windows.Forms.Button();
     this.txtSearch = new System.Windows.Forms.Button();
     this.txtSearchWant = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.comicBookDetails1TableAdapter = new Comics.ComicBookDataSetTableAdapters.ComicBookDetails1TableAdapter();
     this.txtTotalNumber = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comicBookDetails1BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comicBookDataSet)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToResizeColumns = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.AutoGenerateColumns = false;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ownDataGridViewCheckBoxColumn,
     this.wantDataGridViewCheckBoxColumn,
     this.titleDataGridViewTextBoxColumn,
     this.issueNumDataGridViewTextBoxColumn,
     this.gradeDataGridViewTextBoxColumn,
     this.descriptionDataGridViewTextBoxColumn});
     this.dataGridView1.DataSource = this.comicBookDetails1BindingSource;
     this.dataGridView1.Location = new System.Drawing.Point(12, 21);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(849, 237);
     this.dataGridView1.TabIndex = 0;
     //
     // ownDataGridViewCheckBoxColumn
     //
     this.ownDataGridViewCheckBoxColumn.DataPropertyName = "Own";
     this.ownDataGridViewCheckBoxColumn.HeaderText = "Own";
     this.ownDataGridViewCheckBoxColumn.Name = "ownDataGridViewCheckBoxColumn";
     //
     // wantDataGridViewCheckBoxColumn
     //
     this.wantDataGridViewCheckBoxColumn.DataPropertyName = "Want";
     this.wantDataGridViewCheckBoxColumn.HeaderText = "Want";
     this.wantDataGridViewCheckBoxColumn.Name = "wantDataGridViewCheckBoxColumn";
     //
     // titleDataGridViewTextBoxColumn
     //
     this.titleDataGridViewTextBoxColumn.DataPropertyName = "Title";
     this.titleDataGridViewTextBoxColumn.HeaderText = "Title";
     this.titleDataGridViewTextBoxColumn.Name = "titleDataGridViewTextBoxColumn";
     //
     // issueNumDataGridViewTextBoxColumn
     //
     this.issueNumDataGridViewTextBoxColumn.DataPropertyName = "IssueNum";
     this.issueNumDataGridViewTextBoxColumn.HeaderText = "IssueNum";
     this.issueNumDataGridViewTextBoxColumn.Name = "issueNumDataGridViewTextBoxColumn";
     //
     // gradeDataGridViewTextBoxColumn
     //
     this.gradeDataGridViewTextBoxColumn.DataPropertyName = "Grade";
     this.gradeDataGridViewTextBoxColumn.HeaderText = "Grade";
     this.gradeDataGridViewTextBoxColumn.Name = "gradeDataGridViewTextBoxColumn";
     //
     // descriptionDataGridViewTextBoxColumn
     //
     this.descriptionDataGridViewTextBoxColumn.DataPropertyName = "Description";
     this.descriptionDataGridViewTextBoxColumn.HeaderText = "Description";
     this.descriptionDataGridViewTextBoxColumn.Name = "descriptionDataGridViewTextBoxColumn";
     //
     // comicBookDetails1BindingSource
     //
     this.comicBookDetails1BindingSource.DataMember = "ComicBookDetails1";
     this.comicBookDetails1BindingSource.DataSource = this.comicBookDataSet;
     //
     // comicBookDataSet
     //
     this.comicBookDataSet.DataSetName = "ComicBookDataSet";
     this.comicBookDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(511, 387);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(198, 27);
     this.button1.TabIndex = 1;
     this.button1.Text = "Close Window";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // btnPrintWantList
     //
     this.btnPrintWantList.Location = new System.Drawing.Point(166, 387);
     this.btnPrintWantList.Name = "btnPrintWantList";
     this.btnPrintWantList.Size = new System.Drawing.Size(194, 27);
     this.btnPrintWantList.TabIndex = 2;
     this.btnPrintWantList.Text = "Print";
     this.btnPrintWantList.UseVisualStyleBackColor = true;
     this.btnPrintWantList.Click += new System.EventHandler(this.btnPrintWantList_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.txtShowAll);
     this.groupBox3.Controls.Add(this.txtSearch);
     this.groupBox3.Controls.Add(this.txtSearchWant);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Location = new System.Drawing.Point(32, 304);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(802, 54);
     this.groupBox3.TabIndex = 34;
     this.groupBox3.TabStop = false;
     //
     // txtShowAll
     //
     this.txtShowAll.Location = new System.Drawing.Point(595, 19);
     this.txtShowAll.Name = "txtShowAll";
     this.txtShowAll.Size = new System.Drawing.Size(136, 20);
     this.txtShowAll.TabIndex = 21;
     this.txtShowAll.Text = "Show All Titles";
     this.txtShowAll.UseVisualStyleBackColor = true;
     this.txtShowAll.Click += new System.EventHandler(this.txtShowAll_Click);
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(428, 19);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(139, 20);
     this.txtSearch.TabIndex = 20;
     this.txtSearch.Text = "Search";
     this.txtSearch.UseVisualStyleBackColor = true;
     this.txtSearch.Click += new System.EventHandler(this.txtSearch_Click);
     //
     // txtSearchWant
     //
     this.txtSearchWant.Location = new System.Drawing.Point(69, 16);
     this.txtSearchWant.Name = "txtSearchWant";
     this.txtSearchWant.Size = new System.Drawing.Size(298, 20);
     this.txtSearchWant.TabIndex = 18;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(22, 19);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(41, 13);
     this.label3.TabIndex = 17;
     this.label3.Text = "Search";
     //
     // comicBookDetails1TableAdapter
     //
     this.comicBookDetails1TableAdapter.ClearBeforeFill = true;
     //
     // txtTotalNumber
     //
     this.txtTotalNumber.BackColor = System.Drawing.SystemColors.Info;
     this.txtTotalNumber.Location = new System.Drawing.Point(474, 273);
     this.txtTotalNumber.Name = "txtTotalNumber";
     this.txtTotalNumber.Size = new System.Drawing.Size(77, 20);
     this.txtTotalNumber.TabIndex = 40;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(264, 276);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(194, 13);
     this.label1.TabIndex = 39;
     this.label1.Text = "Total Number of Comics in Current View";
     //
     // WantList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(876, 426);
     this.Controls.Add(this.txtTotalNumber);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.btnPrintWantList);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.dataGridView1);
     this.Name = "WantList";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Want List";
     this.TopMost = true;
     this.Load += new System.EventHandler(this.WantList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comicBookDetails1BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comicBookDataSet)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="ContactDataGridViewBase"/> class.
        /// </summary>
        public ContactDataGridViewBase()
        {
            this.components = new System.ComponentModel.Container();

            this.uxContactDataGridView                     = new System.Windows.Forms.DataGridView();
            this.uxContactBindingSource                    = new System.Windows.Forms.BindingSource(this.components);
            this.uxContactErrorProvider                    = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxContactIdDataGridViewColumn             = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxNameStyleDataGridViewColumn             = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.uxTitleDataGridViewColumn                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxFirstNameDataGridViewColumn             = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxMiddleNameDataGridViewColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxLastNameDataGridViewColumn              = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxSuffixDataGridViewColumn                = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxEmailAddressDataGridViewColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxEmailPromotionDataGridViewColumn        = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxPhoneDataGridViewColumn                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxPasswordHashDataGridViewColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxPasswordSaltDataGridViewColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxAdditionalContactInfoDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxRowguidDataGridViewColumn               = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxModifiedDateDataGridViewColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.uxContactDataGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxContactBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxContactErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxContactErrorProvider
            //
            this.uxContactErrorProvider.ContainerControl = this;
            this.uxContactErrorProvider.DataSource       = this.uxContactBindingSource;
            //
            // uxContactDataGridView
            //
            this.uxContactDataGridView.AutoGenerateColumns         = false;
            this.uxContactDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.uxContactDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
                this.uxContactIdDataGridViewColumn,
                this.uxNameStyleDataGridViewColumn,
                this.uxTitleDataGridViewColumn,
                this.uxFirstNameDataGridViewColumn,
                this.uxMiddleNameDataGridViewColumn,
                this.uxLastNameDataGridViewColumn,
                this.uxSuffixDataGridViewColumn,
                this.uxEmailAddressDataGridViewColumn,
                this.uxEmailPromotionDataGridViewColumn,
                this.uxPhoneDataGridViewColumn,
                this.uxPasswordHashDataGridViewColumn,
                this.uxPasswordSaltDataGridViewColumn,
                this.uxAdditionalContactInfoDataGridViewColumn,
                this.uxRowguidDataGridViewColumn,
                this.uxModifiedDateDataGridViewColumn
            });
            this.uxContactDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
            this.uxContactDataGridView.Location                  = new System.Drawing.Point(0, 0);
            this.uxContactDataGridView.Name                      = "uxContactDataGridView";
            this.uxContactDataGridView.Size                      = new System.Drawing.Size(470, 300);
            this.uxContactDataGridView.TabIndex                  = 0;
            this.uxContactDataGridView.BackgroundColor           = System.Drawing.Color.WhiteSmoke;
            this.uxContactDataGridView.EnableHeadersVisualStyles = false;
            this.uxContactDataGridView.DataError                += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnContactDataGridViewDataError);
            this.uxContactDataGridView.CellValueNeeded          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnContactDataGridViewCellValueNeeded);
            this.uxContactDataGridView.CellValuePushed          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnContactDataGridViewCellValuePushed);

            //
            // uxContactIdDataGridViewColumn
            //
            this.uxContactIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxContactIdDataGridViewColumn.DataPropertyName = "ContactId";
            this.uxContactIdDataGridViewColumn.HeaderText       = "ContactId";
            this.uxContactIdDataGridViewColumn.Name             = "uxContactIdDataGridViewColumn";
            this.uxContactIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxContactIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxContactIdDataGridViewColumn.ReadOnly         = true;
            //
            // uxNameStyleDataGridViewColumn
            //
            this.uxNameStyleDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxNameStyleDataGridViewColumn.DataPropertyName = "NameStyle";
            this.uxNameStyleDataGridViewColumn.HeaderText       = "NameStyle";
            this.uxNameStyleDataGridViewColumn.Name             = "uxNameStyleDataGridViewColumn";
            this.uxNameStyleDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxNameStyleDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxNameStyleDataGridViewColumn.ReadOnly         = false;
            //
            // uxTitleDataGridViewColumn
            //
            this.uxTitleDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxTitleDataGridViewColumn.DataPropertyName = "Title";
            this.uxTitleDataGridViewColumn.HeaderText       = "Title";
            this.uxTitleDataGridViewColumn.Name             = "uxTitleDataGridViewColumn";
            this.uxTitleDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxTitleDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxTitleDataGridViewColumn.ReadOnly         = false;
            //
            // uxFirstNameDataGridViewColumn
            //
            this.uxFirstNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxFirstNameDataGridViewColumn.DataPropertyName = "FirstName";
            this.uxFirstNameDataGridViewColumn.HeaderText       = "FirstName";
            this.uxFirstNameDataGridViewColumn.Name             = "uxFirstNameDataGridViewColumn";
            this.uxFirstNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxFirstNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxFirstNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxMiddleNameDataGridViewColumn
            //
            this.uxMiddleNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxMiddleNameDataGridViewColumn.DataPropertyName = "MiddleName";
            this.uxMiddleNameDataGridViewColumn.HeaderText       = "MiddleName";
            this.uxMiddleNameDataGridViewColumn.Name             = "uxMiddleNameDataGridViewColumn";
            this.uxMiddleNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxMiddleNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxMiddleNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxLastNameDataGridViewColumn
            //
            this.uxLastNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxLastNameDataGridViewColumn.DataPropertyName = "LastName";
            this.uxLastNameDataGridViewColumn.HeaderText       = "LastName";
            this.uxLastNameDataGridViewColumn.Name             = "uxLastNameDataGridViewColumn";
            this.uxLastNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxLastNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxLastNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxSuffixDataGridViewColumn
            //
            this.uxSuffixDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxSuffixDataGridViewColumn.DataPropertyName = "Suffix";
            this.uxSuffixDataGridViewColumn.HeaderText       = "Suffix";
            this.uxSuffixDataGridViewColumn.Name             = "uxSuffixDataGridViewColumn";
            this.uxSuffixDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxSuffixDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxSuffixDataGridViewColumn.ReadOnly         = false;
            //
            // uxEmailAddressDataGridViewColumn
            //
            this.uxEmailAddressDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxEmailAddressDataGridViewColumn.DataPropertyName = "EmailAddress";
            this.uxEmailAddressDataGridViewColumn.HeaderText       = "EmailAddress";
            this.uxEmailAddressDataGridViewColumn.Name             = "uxEmailAddressDataGridViewColumn";
            this.uxEmailAddressDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxEmailAddressDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxEmailAddressDataGridViewColumn.ReadOnly         = false;
            //
            // uxEmailPromotionDataGridViewColumn
            //
            this.uxEmailPromotionDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxEmailPromotionDataGridViewColumn.DataPropertyName = "EmailPromotion";
            this.uxEmailPromotionDataGridViewColumn.HeaderText       = "EmailPromotion";
            this.uxEmailPromotionDataGridViewColumn.Name             = "uxEmailPromotionDataGridViewColumn";
            this.uxEmailPromotionDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxEmailPromotionDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxEmailPromotionDataGridViewColumn.ReadOnly         = false;
            //
            // uxPhoneDataGridViewColumn
            //
            this.uxPhoneDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxPhoneDataGridViewColumn.DataPropertyName = "Phone";
            this.uxPhoneDataGridViewColumn.HeaderText       = "Phone";
            this.uxPhoneDataGridViewColumn.Name             = "uxPhoneDataGridViewColumn";
            this.uxPhoneDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxPhoneDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxPhoneDataGridViewColumn.ReadOnly         = false;
            //
            // uxPasswordHashDataGridViewColumn
            //
            this.uxPasswordHashDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxPasswordHashDataGridViewColumn.DataPropertyName = "PasswordHash";
            this.uxPasswordHashDataGridViewColumn.HeaderText       = "PasswordHash";
            this.uxPasswordHashDataGridViewColumn.Name             = "uxPasswordHashDataGridViewColumn";
            this.uxPasswordHashDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxPasswordHashDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxPasswordHashDataGridViewColumn.ReadOnly         = false;
            //
            // uxPasswordSaltDataGridViewColumn
            //
            this.uxPasswordSaltDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxPasswordSaltDataGridViewColumn.DataPropertyName = "PasswordSalt";
            this.uxPasswordSaltDataGridViewColumn.HeaderText       = "PasswordSalt";
            this.uxPasswordSaltDataGridViewColumn.Name             = "uxPasswordSaltDataGridViewColumn";
            this.uxPasswordSaltDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxPasswordSaltDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxPasswordSaltDataGridViewColumn.ReadOnly         = false;
            //
            // uxAdditionalContactInfoDataGridViewColumn
            //
            this.uxAdditionalContactInfoDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxAdditionalContactInfoDataGridViewColumn.DataPropertyName = "AdditionalContactInfo";
            this.uxAdditionalContactInfoDataGridViewColumn.HeaderText       = "AdditionalContactInfo";
            this.uxAdditionalContactInfoDataGridViewColumn.Name             = "uxAdditionalContactInfoDataGridViewColumn";
            this.uxAdditionalContactInfoDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxAdditionalContactInfoDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxAdditionalContactInfoDataGridViewColumn.ReadOnly         = false;
            //
            // uxRowguidDataGridViewColumn
            //
            this.uxRowguidDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxRowguidDataGridViewColumn.DataPropertyName = "Rowguid";
            this.uxRowguidDataGridViewColumn.HeaderText       = "Rowguid";
            this.uxRowguidDataGridViewColumn.Name             = "uxRowguidDataGridViewColumn";
            this.uxRowguidDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxRowguidDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxRowguidDataGridViewColumn.ReadOnly         = true;
            //
            // uxModifiedDateDataGridViewColumn
            //
            this.uxModifiedDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.HeaderText       = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.Name             = "uxModifiedDateDataGridViewColumn";
            this.uxModifiedDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxModifiedDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxModifiedDateDataGridViewColumn.ReadOnly         = false;

            // this
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.uxContactDataGridView);
            this.Name = "ContactDataGridView";
            this.Size = new System.Drawing.Size(470, 300);
            ((System.ComponentModel.ISupportInitialize)(this.uxContactErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxContactDataGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxContactBindingSource)).EndInit();
            this.ResumeLayout(false);
        }
        /// <summary>
        /// Initializes a new instance of the <see cref="VendorDataGridViewBase"/> class.
        /// </summary>
        public VendorDataGridViewBase()
        {
            this.components = new System.ComponentModel.Container();

            this.uxVendorDataGridView                        = new System.Windows.Forms.DataGridView();
            this.uxVendorBindingSource                       = new System.Windows.Forms.BindingSource(this.components);
            this.uxVendorErrorProvider                       = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxVendorIdDataGridViewColumn                = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxAccountNumberDataGridViewColumn           = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxNameDataGridViewColumn                    = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxCreditRatingDataGridViewColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxPreferredVendorStatusDataGridViewColumn   = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.uxActiveFlagDataGridViewColumn              = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.uxPurchasingWebServiceUrlDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxModifiedDateDataGridViewColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.uxVendorDataGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxVendorBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxVendorErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxVendorErrorProvider
            //
            this.uxVendorErrorProvider.ContainerControl = this;
            this.uxVendorErrorProvider.DataSource       = this.uxVendorBindingSource;
            //
            // uxVendorDataGridView
            //
            this.uxVendorDataGridView.AutoGenerateColumns         = false;
            this.uxVendorDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.uxVendorDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
                this.uxVendorIdDataGridViewColumn,
                this.uxAccountNumberDataGridViewColumn,
                this.uxNameDataGridViewColumn,
                this.uxCreditRatingDataGridViewColumn,
                this.uxPreferredVendorStatusDataGridViewColumn,
                this.uxActiveFlagDataGridViewColumn,
                this.uxPurchasingWebServiceUrlDataGridViewColumn,
                this.uxModifiedDateDataGridViewColumn
            });
            this.uxVendorDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
            this.uxVendorDataGridView.Location                  = new System.Drawing.Point(0, 0);
            this.uxVendorDataGridView.Name                      = "uxVendorDataGridView";
            this.uxVendorDataGridView.Size                      = new System.Drawing.Size(470, 300);
            this.uxVendorDataGridView.TabIndex                  = 0;
            this.uxVendorDataGridView.BackgroundColor           = System.Drawing.Color.WhiteSmoke;
            this.uxVendorDataGridView.EnableHeadersVisualStyles = false;
            this.uxVendorDataGridView.DataError                += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnVendorDataGridViewDataError);
            this.uxVendorDataGridView.CellValueNeeded          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnVendorDataGridViewCellValueNeeded);
            this.uxVendorDataGridView.CellValuePushed          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnVendorDataGridViewCellValuePushed);

            //
            // uxVendorIdDataGridViewColumn
            //
            this.uxVendorIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxVendorIdDataGridViewColumn.DataPropertyName = "VendorId";
            this.uxVendorIdDataGridViewColumn.HeaderText       = "VendorId";
            this.uxVendorIdDataGridViewColumn.Name             = "uxVendorIdDataGridViewColumn";
            this.uxVendorIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxVendorIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxVendorIdDataGridViewColumn.ReadOnly         = true;
            //
            // uxAccountNumberDataGridViewColumn
            //
            this.uxAccountNumberDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxAccountNumberDataGridViewColumn.DataPropertyName = "AccountNumber";
            this.uxAccountNumberDataGridViewColumn.HeaderText       = "AccountNumber";
            this.uxAccountNumberDataGridViewColumn.Name             = "uxAccountNumberDataGridViewColumn";
            this.uxAccountNumberDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxAccountNumberDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxAccountNumberDataGridViewColumn.ReadOnly         = false;
            //
            // uxNameDataGridViewColumn
            //
            this.uxNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxNameDataGridViewColumn.DataPropertyName = "Name";
            this.uxNameDataGridViewColumn.HeaderText       = "Name";
            this.uxNameDataGridViewColumn.Name             = "uxNameDataGridViewColumn";
            this.uxNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxCreditRatingDataGridViewColumn
            //
            this.uxCreditRatingDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxCreditRatingDataGridViewColumn.DataPropertyName = "CreditRating";
            this.uxCreditRatingDataGridViewColumn.HeaderText       = "CreditRating";
            this.uxCreditRatingDataGridViewColumn.Name             = "uxCreditRatingDataGridViewColumn";
            this.uxCreditRatingDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxCreditRatingDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxCreditRatingDataGridViewColumn.ReadOnly         = false;
            //
            // uxPreferredVendorStatusDataGridViewColumn
            //
            this.uxPreferredVendorStatusDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxPreferredVendorStatusDataGridViewColumn.DataPropertyName = "PreferredVendorStatus";
            this.uxPreferredVendorStatusDataGridViewColumn.HeaderText       = "PreferredVendorStatus";
            this.uxPreferredVendorStatusDataGridViewColumn.Name             = "uxPreferredVendorStatusDataGridViewColumn";
            this.uxPreferredVendorStatusDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxPreferredVendorStatusDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxPreferredVendorStatusDataGridViewColumn.ReadOnly         = false;
            //
            // uxActiveFlagDataGridViewColumn
            //
            this.uxActiveFlagDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxActiveFlagDataGridViewColumn.DataPropertyName = "ActiveFlag";
            this.uxActiveFlagDataGridViewColumn.HeaderText       = "ActiveFlag";
            this.uxActiveFlagDataGridViewColumn.Name             = "uxActiveFlagDataGridViewColumn";
            this.uxActiveFlagDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxActiveFlagDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxActiveFlagDataGridViewColumn.ReadOnly         = false;
            //
            // uxPurchasingWebServiceUrlDataGridViewColumn
            //
            this.uxPurchasingWebServiceUrlDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxPurchasingWebServiceUrlDataGridViewColumn.DataPropertyName = "PurchasingWebServiceUrl";
            this.uxPurchasingWebServiceUrlDataGridViewColumn.HeaderText       = "PurchasingWebServiceUrl";
            this.uxPurchasingWebServiceUrlDataGridViewColumn.Name             = "uxPurchasingWebServiceUrlDataGridViewColumn";
            this.uxPurchasingWebServiceUrlDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxPurchasingWebServiceUrlDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxPurchasingWebServiceUrlDataGridViewColumn.ReadOnly         = false;
            //
            // uxModifiedDateDataGridViewColumn
            //
            this.uxModifiedDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.HeaderText       = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.Name             = "uxModifiedDateDataGridViewColumn";
            this.uxModifiedDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxModifiedDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxModifiedDateDataGridViewColumn.ReadOnly         = false;

            // this
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.uxVendorDataGridView);
            this.Name = "VendorDataGridView";
            this.Size = new System.Drawing.Size(470, 300);
            ((System.ComponentModel.ISupportInitialize)(this.uxVendorErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxVendorDataGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxVendorBindingSource)).EndInit();
            this.ResumeLayout(false);
        }
Ejemplo n.º 13
0
 /// <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();
     this.panelRecuadro = new System.Windows.Forms.Panel();
     this.dataListProyectos = new System.Windows.Forms.DataGridView();
     this.lblTotal = new System.Windows.Forms.Label();
     this.txtBuscarProyecto = new System.Windows.Forms.TextBox();
     this.Eliminar = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.panelRecuadro.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataListProyectos)).BeginInit();
     this.SuspendLayout();
     //
     // panelRecuadro
     //
     this.panelRecuadro.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.panelRecuadro.BackColor = System.Drawing.Color.Gold;
     this.panelRecuadro.Controls.Add(this.dataListProyectos);
     this.panelRecuadro.Location = new System.Drawing.Point(12, 65);
     this.panelRecuadro.Name = "panelRecuadro";
     this.panelRecuadro.Size = new System.Drawing.Size(775, 411);
     this.panelRecuadro.TabIndex = 20;
     //
     // dataListProyectos
     //
     this.dataListProyectos.AllowUserToAddRows = false;
     this.dataListProyectos.AllowUserToDeleteRows = false;
     this.dataListProyectos.AllowUserToOrderColumns = true;
     this.dataListProyectos.AllowUserToResizeRows = false;
     this.dataListProyectos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataListProyectos.BackgroundColor = System.Drawing.Color.LightGray;
     this.dataListProyectos.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.dataListProyectos.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.dataListProyectos.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.Gray;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.Gray;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataListProyectos.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataListProyectos.ColumnHeadersHeight = 34;
     this.dataListProyectos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dataListProyectos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Eliminar});
     this.dataListProyectos.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataListProyectos.EnableHeadersVisualStyles = false;
     this.dataListProyectos.GridColor = System.Drawing.Color.DimGray;
     this.dataListProyectos.Location = new System.Drawing.Point(0, 0);
     this.dataListProyectos.Name = "dataListProyectos";
     this.dataListProyectos.ReadOnly = true;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.LightGray;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataListProyectos.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dataListProyectos.RowHeadersVisible = false;
     this.dataListProyectos.RowHeadersWidth = 51;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.Silver;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.White;
     this.dataListProyectos.RowsDefaultCellStyle = dataGridViewCellStyle3;
     this.dataListProyectos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataListProyectos.Size = new System.Drawing.Size(775, 411);
     this.dataListProyectos.TabIndex = 4;
     this.dataListProyectos.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataListProyectos_CellContentClick_1);
     this.dataListProyectos.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataListProyectos_CellDoubleClick);
     //
     // lblTotal
     //
     this.lblTotal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblTotal.AutoSize = true;
     this.lblTotal.Location = new System.Drawing.Point(641, 43);
     this.lblTotal.Name = "lblTotal";
     this.lblTotal.Size = new System.Drawing.Size(111, 13);
     this.lblTotal.TabIndex = 17;
     this.lblTotal.Text = "Número de proyectos:";
     //
     // txtBuscarProyecto
     //
     this.txtBuscarProyecto.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtBuscarProyecto.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtBuscarProyecto.Location = new System.Drawing.Point(12, 12);
     this.txtBuscarProyecto.Name = "txtBuscarProyecto";
     this.txtBuscarProyecto.Size = new System.Drawing.Size(775, 20);
     this.txtBuscarProyecto.TabIndex = 14;
     this.txtBuscarProyecto.TextChanged += new System.EventHandler(this.txtBuscarProyecto_TextChanged);
     //
     // Eliminar
     //
     this.Eliminar.HeaderText = "Proyecto";
     this.Eliminar.MinimumWidth = 2;
     this.Eliminar.Name = "Eliminar";
     this.Eliminar.ReadOnly = true;
     this.Eliminar.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Eliminar.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // FrmProyecto
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ClientSize = new System.Drawing.Size(799, 488);
     this.Controls.Add(this.panelRecuadro);
     this.Controls.Add(this.lblTotal);
     this.Controls.Add(this.txtBuscarProyecto);
     this.Name = "FrmProyecto";
     this.Text = "FrmProyecto";
     this.Load += new System.EventHandler(this.FrmProyecto_Load);
     this.panelRecuadro.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataListProyectos)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 14
0
        /// <summary>
        /// Initializes a new instance of the <see cref="EmployeeDataGridViewBase"/> class.
        /// </summary>
        public EmployeeDataGridViewBase()
        {
            this.components = new System.ComponentModel.Container();

            this.uxEmployeeDataGridView               = new System.Windows.Forms.DataGridView();
            this.uxEmployeeBindingSource              = new System.Windows.Forms.BindingSource(this.components);
            this.uxEmployeeErrorProvider              = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxEmployeeIdDataGridViewColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxNationalIdNumberDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxContactIdDataGridViewColumn        = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.uxLoginIdDataGridViewColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxManagerIdDataGridViewColumn        = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.uxTitleDataGridViewColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxBirthDateDataGridViewColumn        = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxMaritalStatusDataGridViewColumn    = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxGenderDataGridViewColumn           = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxHireDateDataGridViewColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxSalariedFlagDataGridViewColumn     = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.uxVacationHoursDataGridViewColumn    = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxSickLeaveHoursDataGridViewColumn   = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxCurrentFlagDataGridViewColumn      = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.uxRowguidDataGridViewColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxModifiedDateDataGridViewColumn     = new System.Windows.Forms.DataGridViewTextBoxColumn();
            //this.uxContactIdBindingSource = new ContactBindingSource(this.components);
            //((System.ComponentModel.ISupportInitialize)(this.uxContactIdBindingSource)).BeginInit();
            //this.uxManagerIdBindingSource = new EmployeeBindingSource(this.components);
            //((System.ComponentModel.ISupportInitialize)(this.uxManagerIdBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxEmployeeDataGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxEmployeeBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxEmployeeErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxEmployeeErrorProvider
            //
            this.uxEmployeeErrorProvider.ContainerControl = this;
            this.uxEmployeeErrorProvider.DataSource       = this.uxEmployeeBindingSource;
            //
            // uxEmployeeDataGridView
            //
            this.uxEmployeeDataGridView.AutoGenerateColumns         = false;
            this.uxEmployeeDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.uxEmployeeDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
                this.uxEmployeeIdDataGridViewColumn,
                this.uxNationalIdNumberDataGridViewColumn,
                this.uxContactIdDataGridViewColumn,
                this.uxLoginIdDataGridViewColumn,
                this.uxManagerIdDataGridViewColumn,
                this.uxTitleDataGridViewColumn,
                this.uxBirthDateDataGridViewColumn,
                this.uxMaritalStatusDataGridViewColumn,
                this.uxGenderDataGridViewColumn,
                this.uxHireDateDataGridViewColumn,
                this.uxSalariedFlagDataGridViewColumn,
                this.uxVacationHoursDataGridViewColumn,
                this.uxSickLeaveHoursDataGridViewColumn,
                this.uxCurrentFlagDataGridViewColumn,
                this.uxRowguidDataGridViewColumn,
                this.uxModifiedDateDataGridViewColumn
            });
            this.uxEmployeeDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
            this.uxEmployeeDataGridView.Location                  = new System.Drawing.Point(0, 0);
            this.uxEmployeeDataGridView.Name                      = "uxEmployeeDataGridView";
            this.uxEmployeeDataGridView.Size                      = new System.Drawing.Size(470, 300);
            this.uxEmployeeDataGridView.TabIndex                  = 0;
            this.uxEmployeeDataGridView.BackgroundColor           = System.Drawing.Color.WhiteSmoke;
            this.uxEmployeeDataGridView.EnableHeadersVisualStyles = false;
            this.uxEmployeeDataGridView.DataError                += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnEmployeeDataGridViewDataError);
            this.uxEmployeeDataGridView.CellValueNeeded          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnEmployeeDataGridViewCellValueNeeded);
            this.uxEmployeeDataGridView.CellValuePushed          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnEmployeeDataGridViewCellValuePushed);

            //
            // uxEmployeeIdDataGridViewColumn
            //
            this.uxEmployeeIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxEmployeeIdDataGridViewColumn.DataPropertyName = "EmployeeId";
            this.uxEmployeeIdDataGridViewColumn.HeaderText       = "EmployeeId";
            this.uxEmployeeIdDataGridViewColumn.Name             = "uxEmployeeIdDataGridViewColumn";
            this.uxEmployeeIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxEmployeeIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxEmployeeIdDataGridViewColumn.ReadOnly         = true;
            //
            // uxNationalIdNumberDataGridViewColumn
            //
            this.uxNationalIdNumberDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxNationalIdNumberDataGridViewColumn.DataPropertyName = "NationalIdNumber";
            this.uxNationalIdNumberDataGridViewColumn.HeaderText       = "NationalIdNumber";
            this.uxNationalIdNumberDataGridViewColumn.Name             = "uxNationalIdNumberDataGridViewColumn";
            this.uxNationalIdNumberDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxNationalIdNumberDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxNationalIdNumberDataGridViewColumn.ReadOnly         = false;
            //
            // uxContactIdDataGridViewColumn
            //
            this.uxContactIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxContactIdDataGridViewColumn.DataPropertyName = "ContactId";
            this.uxContactIdDataGridViewColumn.HeaderText       = "ContactId";
            this.uxContactIdDataGridViewColumn.Name             = "uxContactIdDataGridViewColumn";
            this.uxContactIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxContactIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxContactIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxLoginIdDataGridViewColumn
            //
            this.uxLoginIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxLoginIdDataGridViewColumn.DataPropertyName = "LoginId";
            this.uxLoginIdDataGridViewColumn.HeaderText       = "LoginId";
            this.uxLoginIdDataGridViewColumn.Name             = "uxLoginIdDataGridViewColumn";
            this.uxLoginIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxLoginIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxLoginIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxManagerIdDataGridViewColumn
            //
            this.uxManagerIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxManagerIdDataGridViewColumn.DataPropertyName = "ManagerId";
            this.uxManagerIdDataGridViewColumn.HeaderText       = "ManagerId";
            this.uxManagerIdDataGridViewColumn.Name             = "uxManagerIdDataGridViewColumn";
            this.uxManagerIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxManagerIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxManagerIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxTitleDataGridViewColumn
            //
            this.uxTitleDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxTitleDataGridViewColumn.DataPropertyName = "Title";
            this.uxTitleDataGridViewColumn.HeaderText       = "Title";
            this.uxTitleDataGridViewColumn.Name             = "uxTitleDataGridViewColumn";
            this.uxTitleDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxTitleDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxTitleDataGridViewColumn.ReadOnly         = false;
            //
            // uxBirthDateDataGridViewColumn
            //
            this.uxBirthDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxBirthDateDataGridViewColumn.DataPropertyName = "BirthDate";
            this.uxBirthDateDataGridViewColumn.HeaderText       = "BirthDate";
            this.uxBirthDateDataGridViewColumn.Name             = "uxBirthDateDataGridViewColumn";
            this.uxBirthDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxBirthDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxBirthDateDataGridViewColumn.ReadOnly         = false;
            //
            // uxMaritalStatusDataGridViewColumn
            //
            this.uxMaritalStatusDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxMaritalStatusDataGridViewColumn.DataPropertyName = "MaritalStatus";
            this.uxMaritalStatusDataGridViewColumn.HeaderText       = "MaritalStatus";
            this.uxMaritalStatusDataGridViewColumn.Name             = "uxMaritalStatusDataGridViewColumn";
            this.uxMaritalStatusDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxMaritalStatusDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxMaritalStatusDataGridViewColumn.ReadOnly         = false;
            //
            // uxGenderDataGridViewColumn
            //
            this.uxGenderDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxGenderDataGridViewColumn.DataPropertyName = "Gender";
            this.uxGenderDataGridViewColumn.HeaderText       = "Gender";
            this.uxGenderDataGridViewColumn.Name             = "uxGenderDataGridViewColumn";
            this.uxGenderDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxGenderDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxGenderDataGridViewColumn.ReadOnly         = false;
            //
            // uxHireDateDataGridViewColumn
            //
            this.uxHireDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxHireDateDataGridViewColumn.DataPropertyName = "HireDate";
            this.uxHireDateDataGridViewColumn.HeaderText       = "HireDate";
            this.uxHireDateDataGridViewColumn.Name             = "uxHireDateDataGridViewColumn";
            this.uxHireDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxHireDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxHireDateDataGridViewColumn.ReadOnly         = false;
            //
            // uxSalariedFlagDataGridViewColumn
            //
            this.uxSalariedFlagDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxSalariedFlagDataGridViewColumn.DataPropertyName = "SalariedFlag";
            this.uxSalariedFlagDataGridViewColumn.HeaderText       = "SalariedFlag";
            this.uxSalariedFlagDataGridViewColumn.Name             = "uxSalariedFlagDataGridViewColumn";
            this.uxSalariedFlagDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxSalariedFlagDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxSalariedFlagDataGridViewColumn.ReadOnly         = false;
            //
            // uxVacationHoursDataGridViewColumn
            //
            this.uxVacationHoursDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxVacationHoursDataGridViewColumn.DataPropertyName = "VacationHours";
            this.uxVacationHoursDataGridViewColumn.HeaderText       = "VacationHours";
            this.uxVacationHoursDataGridViewColumn.Name             = "uxVacationHoursDataGridViewColumn";
            this.uxVacationHoursDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxVacationHoursDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxVacationHoursDataGridViewColumn.ReadOnly         = false;
            //
            // uxSickLeaveHoursDataGridViewColumn
            //
            this.uxSickLeaveHoursDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxSickLeaveHoursDataGridViewColumn.DataPropertyName = "SickLeaveHours";
            this.uxSickLeaveHoursDataGridViewColumn.HeaderText       = "SickLeaveHours";
            this.uxSickLeaveHoursDataGridViewColumn.Name             = "uxSickLeaveHoursDataGridViewColumn";
            this.uxSickLeaveHoursDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxSickLeaveHoursDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxSickLeaveHoursDataGridViewColumn.ReadOnly         = false;
            //
            // uxCurrentFlagDataGridViewColumn
            //
            this.uxCurrentFlagDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxCurrentFlagDataGridViewColumn.DataPropertyName = "CurrentFlag";
            this.uxCurrentFlagDataGridViewColumn.HeaderText       = "CurrentFlag";
            this.uxCurrentFlagDataGridViewColumn.Name             = "uxCurrentFlagDataGridViewColumn";
            this.uxCurrentFlagDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxCurrentFlagDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxCurrentFlagDataGridViewColumn.ReadOnly         = false;
            //
            // uxRowguidDataGridViewColumn
            //
            this.uxRowguidDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxRowguidDataGridViewColumn.DataPropertyName = "Rowguid";
            this.uxRowguidDataGridViewColumn.HeaderText       = "Rowguid";
            this.uxRowguidDataGridViewColumn.Name             = "uxRowguidDataGridViewColumn";
            this.uxRowguidDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxRowguidDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxRowguidDataGridViewColumn.ReadOnly         = true;
            //
            // uxModifiedDateDataGridViewColumn
            //
            this.uxModifiedDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.HeaderText       = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.Name             = "uxModifiedDateDataGridViewColumn";
            this.uxModifiedDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxModifiedDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxModifiedDateDataGridViewColumn.ReadOnly         = false;
            //
            // uxContactIdDataGridViewColumn
            //
            this.uxContactIdDataGridViewColumn.DisplayMember = "NameStyle";
            this.uxContactIdDataGridViewColumn.ValueMember   = "ContactId";
            this.uxContactIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
            //uxContactIdDataGridViewColumn.DataSource = uxContactIdBindingSource;

            //
            // uxManagerIdDataGridViewColumn
            //
            this.uxManagerIdDataGridViewColumn.DisplayMember = "NationalIdNumber";
            this.uxManagerIdDataGridViewColumn.ValueMember   = "EmployeeId";
            this.uxManagerIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
            //uxManagerIdDataGridViewColumn.DataSource = uxManagerIdBindingSource;


            // this
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.uxEmployeeDataGridView);
            this.Name = "EmployeeDataGridView";
            this.Size = new System.Drawing.Size(470, 300);
            //((System.ComponentModel.ISupportInitialize)(this.uxContactIdBindingSource)).EndInit();
            //((System.ComponentModel.ISupportInitialize)(this.uxManagerIdBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxEmployeeErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxEmployeeDataGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxEmployeeBindingSource)).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();
     System.Windows.Forms.Label label1;
     System.Windows.Forms.Label прим0Label;
     System.Windows.Forms.Label телефонLabel;
     System.Windows.Forms.Label отчествоLabel;
     System.Windows.Forms.Label имяLabel;
     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();
     this.поселокTextBox = new System.Windows.Forms.TextBox();
     this.button5 = new System.Windows.Forms.Button();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.прим0TextBox = new System.Windows.Forms.TextBox();
     this.телефонTextBox = new System.Windows.Forms.TextBox();
     this.отчествоTextBox = new System.Windows.Forms.TextBox();
     this.имяTextBox = new System.Windows.Forms.TextBox();
     this.button4 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.button3 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.адресColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.фиоColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.услугаColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.годColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.месяцColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.долг_месColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.должникColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.отключитьColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.действуетColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.звонокColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.договор_сColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.отклColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.подклColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.примColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     label1 = new System.Windows.Forms.Label();
     прим0Label = new System.Windows.Forms.Label();
     телефонLabel = new System.Windows.Forms.Label();
     отчествоLabel = new System.Windows.Forms.Label();
     имяLabel = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(4, 44);
     label1.Name = "label1";
     label1.Size = new System.Drawing.Size(49, 13);
     label1.TabIndex = 15;
     label1.Text = "поселок";
     //
     // прим0Label
     //
     прим0Label.AutoSize = true;
     прим0Label.Location = new System.Drawing.Point(794, 46);
     прим0Label.Name = "прим0Label";
     прим0Label.Size = new System.Drawing.Size(69, 13);
     прим0Label.TabIndex = 10;
     прим0Label.Text = "общее прим";
     //
     // телефонLabel
     //
     телефонLabel.AutoSize = true;
     телефонLabel.Location = new System.Drawing.Point(567, 46);
     телефонLabel.Name = "телефонLabel";
     телефонLabel.Size = new System.Drawing.Size(53, 13);
     телефонLabel.TabIndex = 8;
     телефонLabel.Text = "телефон:";
     //
     // отчествоLabel
     //
     отчествоLabel.AutoSize = true;
     отчествоLabel.Location = new System.Drawing.Point(386, 46);
     отчествоLabel.Name = "отчествоLabel";
     отчествоLabel.Size = new System.Drawing.Size(57, 13);
     отчествоLabel.TabIndex = 6;
     отчествоLabel.Text = "Отчество:";
     //
     // имяLabel
     //
     имяLabel.AutoSize = true;
     имяLabel.Location = new System.Drawing.Point(231, 46);
     имяLabel.Name = "имяLabel";
     имяLabel.Size = new System.Drawing.Size(32, 13);
     имяLabel.TabIndex = 4;
     имяLabel.Text = "Имя:";
     //
     // поселокTextBox
     //
     this.поселокTextBox.Enabled = false;
     this.поселокTextBox.Location = new System.Drawing.Point(63, 42);
     this.поселокTextBox.Name = "поселокTextBox";
     this.поселокTextBox.Size = new System.Drawing.Size(151, 20);
     this.поселокTextBox.TabIndex = 16;
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(698, 7);
     this.button5.Margin = new System.Windows.Forms.Padding(2);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(148, 19);
     this.button5.TabIndex = 14;
     this.button5.Text = "Записать звонок или смс";
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.button5_Click);
     //
     // checkBox1
     //
     this.checkBox1.Appearance = System.Windows.Forms.Appearance.Button;
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(322, 3);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(70, 23);
     this.checkBox1.TabIndex = 12;
     this.checkBox1.Text = "Должники";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // прим0TextBox
     //
     this.прим0TextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.прим0TextBox.Location = new System.Drawing.Point(869, 39);
     this.прим0TextBox.MaxLength = 50;
     this.прим0TextBox.Name = "прим0TextBox";
     this.прим0TextBox.Size = new System.Drawing.Size(242, 20);
     this.прим0TextBox.TabIndex = 11;
     //
     // телефонTextBox
     //
     this.телефонTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.телефонTextBox.Location = new System.Drawing.Point(622, 42);
     this.телефонTextBox.MaxLength = 50;
     this.телефонTextBox.Name = "телефонTextBox";
     this.телефонTextBox.Size = new System.Drawing.Size(141, 20);
     this.телефонTextBox.TabIndex = 9;
     //
     // отчествоTextBox
     //
     this.отчествоTextBox.Enabled = false;
     this.отчествоTextBox.Location = new System.Drawing.Point(449, 42);
     this.отчествоTextBox.Name = "отчествоTextBox";
     this.отчествоTextBox.Size = new System.Drawing.Size(100, 20);
     this.отчествоTextBox.TabIndex = 7;
     //
     // имяTextBox
     //
     this.имяTextBox.Enabled = false;
     this.имяTextBox.Location = new System.Drawing.Point(270, 42);
     this.имяTextBox.Name = "имяTextBox";
     this.имяTextBox.Size = new System.Drawing.Size(100, 20);
     this.имяTextBox.TabIndex = 5;
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(12, 4);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(139, 23);
     this.button4.TabIndex = 3;
     this.button4.Text = "Задание на отключение";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // button1
     //
     this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.button1.ForeColor = System.Drawing.Color.Blue;
     this.button1.Location = new System.Drawing.Point(944, 4);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 26);
     this.button1.TabIndex = 0;
     this.button1.Text = "Выход";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.button3);
     this.panel1.Controls.Add(label1);
     this.panel1.Controls.Add(this.поселокTextBox);
     this.panel1.Controls.Add(this.button5);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(прим0Label);
     this.panel1.Controls.Add(this.прим0TextBox);
     this.panel1.Controls.Add(телефонLabel);
     this.panel1.Controls.Add(this.телефонTextBox);
     this.panel1.Controls.Add(отчествоLabel);
     this.panel1.Controls.Add(this.отчествоTextBox);
     this.panel1.Controls.Add(имяLabel);
     this.panel1.Controls.Add(this.имяTextBox);
     this.panel1.Controls.Add(this.button4);
     this.panel1.Controls.Add(this.button2);
     this.panel1.Controls.Add(this.button1);
     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(1202, 69);
     this.panel1.TabIndex = 12;
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(437, 5);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(217, 23);
     this.button3.TabIndex = 17;
     this.button3.Text = "Задание на проверку подключений";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click_1);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(175, 4);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(102, 23);
     this.button2.TabIndex = 1;
     this.button2.Text = "Подробности";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.dataGridView1.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridView1.AutoGenerateColumns = false;
     this.dataGridView1.ColumnHeadersHeight = 50;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.адресColumn,
     this.фиоColumn,
     this.услугаColumn,
     this.годColumn,
     this.месяцColumn,
     this.долг_месColumn,
     this.должникColumn,
     this.отключитьColumn,
     this.действуетColumn,
     this.звонокColumn,
     this.договор_сColumn,
     this.отклColumn,
     this.подклColumn,
     this.примColumn});
     this.dataGridView1.DataSource = this.bindingSource1;
     this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView1.Location = new System.Drawing.Point(0, 69);
     this.dataGridView1.Margin = new System.Windows.Forms.Padding(2);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.RowTemplate.Height = 24;
     this.dataGridView1.Size = new System.Drawing.Size(1202, 574);
     this.dataGridView1.TabIndex = 13;
     //
     // адресColumn
     //
     this.адресColumn.DataPropertyName = "адрес";
     this.адресColumn.HeaderText = "адрес";
     this.адресColumn.Name = "адресColumn";
     this.адресColumn.ReadOnly = true;
     this.адресColumn.Width = 150;
     //
     // фиоColumn
     //
     this.фиоColumn.DataPropertyName = "фио";
     this.фиоColumn.HeaderText = "фио";
     this.фиоColumn.Name = "фиоColumn";
     this.фиоColumn.ReadOnly = true;
     //
     // услугаColumn
     //
     this.услугаColumn.DataPropertyName = "наимен_услуги";
     this.услугаColumn.HeaderText = "услуга";
     this.услугаColumn.Name = "услугаColumn";
     this.услугаColumn.ReadOnly = true;
     //
     // годColumn
     //
     this.годColumn.DataPropertyName = "год";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle2.Format = "0;#;#";
     this.годColumn.DefaultCellStyle = dataGridViewCellStyle2;
     this.годColumn.HeaderText = "год";
     this.годColumn.Name = "годColumn";
     this.годColumn.ReadOnly = true;
     this.годColumn.Width = 50;
     //
     // месяцColumn
     //
     this.месяцColumn.DataPropertyName = "месяц";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle3.Format = "0;#;#";
     this.месяцColumn.DefaultCellStyle = dataGridViewCellStyle3;
     this.месяцColumn.HeaderText = "месяц";
     this.месяцColumn.Name = "месяцColumn";
     this.месяцColumn.ReadOnly = true;
     this.месяцColumn.Width = 30;
     //
     // долг_месColumn
     //
     this.долг_месColumn.DataPropertyName = "долг_мес";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.Format = "0;-0;#";
     this.долг_месColumn.DefaultCellStyle = dataGridViewCellStyle4;
     this.долг_месColumn.HeaderText = "долг мес";
     this.долг_месColumn.Name = "долг_месColumn";
     this.долг_месColumn.ReadOnly = true;
     this.долг_месColumn.Width = 40;
     //
     // должникColumn
     //
     this.должникColumn.DataPropertyName = "должник";
     this.должникColumn.HeaderText = "должник";
     this.должникColumn.Name = "должникColumn";
     this.должникColumn.ReadOnly = true;
     this.должникColumn.Width = 40;
     //
     // отключитьColumn
     //
     this.отключитьColumn.DataPropertyName = "отключить";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     dataGridViewCellStyle5.NullValue = false;
     this.отключитьColumn.DefaultCellStyle = dataGridViewCellStyle5;
     this.отключитьColumn.HeaderText = "отключить";
     this.отключитьColumn.Name = "отключитьColumn";
     this.отключитьColumn.Width = 40;
     //
     // действуетColumn
     //
     this.действуетColumn.DataPropertyName = "наш";
     this.действуетColumn.HeaderText = "наш клиент";
     this.действуетColumn.Name = "действуетColumn";
     this.действуетColumn.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.действуетColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.действуетColumn.Width = 40;
     //
     // звонокColumn
     //
     this.звонокColumn.DataPropertyName = "звонок";
     this.звонокColumn.HeaderText = "последний  звонок";
     this.звонокColumn.Name = "звонокColumn";
     //
     // договор_сColumn
     //
     this.договор_сColumn.DataPropertyName = "договор_с";
     this.договор_сColumn.HeaderText = "договор с";
     this.договор_сColumn.Name = "договор_сColumn";
     this.договор_сColumn.ReadOnly = true;
     this.договор_сColumn.Width = 80;
     //
     // отклColumn
     //
     this.отклColumn.DataPropertyName = "отключен";
     this.отклColumn.HeaderText = "отключен";
     this.отклColumn.Name = "отклColumn";
     this.отклColumn.ReadOnly = true;
     this.отклColumn.Width = 80;
     //
     // подклColumn
     //
     this.подклColumn.DataPropertyName = "повтор";
     this.подклColumn.HeaderText = "подключен";
     this.подклColumn.Name = "подклColumn";
     this.подклColumn.ReadOnly = true;
     this.подклColumn.Width = 80;
     //
     // примColumn
     //
     this.примColumn.DataPropertyName = "прим";
     dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.примColumn.DefaultCellStyle = dataGridViewCellStyle6;
     this.примColumn.HeaderText = "примечание";
     this.примColumn.Name = "примColumn";
     this.примColumn.Width = 150;
     //
     // дом1вид
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1202, 643);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.panel1);
     this.Name = "дом1вид";
     this.Text = "дом1вид";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.дом1вид_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 16
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPermisos));
     this.kryptonHeader1 = new ComponentFactory.Krypton.Toolkit.KryptonHeader();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.dgvUsuarios = new ComponentFactory.Krypton.Toolkit.KryptonDataGridView();
     this.usuarioBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.usuarioBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.gbxInformacion = new System.Windows.Forms.GroupBox();
     this.chkEsPrincipal = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     this.kryptonLabel2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.dtpFechaRegistro = new ComponentFactory.Krypton.Toolkit.KryptonDateTimePicker();
     this.cmbEmpleados = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.txtPassword = new ExactTarget.Windows.Controles.CustomKryptonTextBox();
     this.txtUsername = new ExactTarget.Windows.Controles.CustomKryptonTextBox();
     this.label6 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.label3 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.label2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.TsMenu = new System.Windows.Forms.ToolStrip();
     this.TsbNuevo = new System.Windows.Forms.ToolStripButton();
     this.TsbEditar = new System.Windows.Forms.ToolStripButton();
     this.TsbEliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.TsbGuardar = new System.Windows.Forms.ToolStripButton();
     this.TsbCancelar = new System.Windows.Forms.ToolStripButton();
     this.perUsuario = new ExactTarget.Windows.Controles.PermisosFormulario();
     this.errValidator = new System.Windows.Forms.ErrorProvider(this.components);
     this.usuarioIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usernameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.passwordDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.esPrincipalDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.fechaRegistroDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.personalDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.permisosBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.personalBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingNavigator)).BeginInit();
     this.usuarioBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.gbxInformacion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEmpleados)).BeginInit();
     this.TsMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errValidator)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.permisosBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.personalBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonHeader1
     //
     this.kryptonHeader1.Dock = System.Windows.Forms.DockStyle.Top;
     this.kryptonHeader1.Location = new System.Drawing.Point(0, 0);
     this.kryptonHeader1.Name = "kryptonHeader1";
     this.kryptonHeader1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonHeader1.Size = new System.Drawing.Size(753, 31);
     this.kryptonHeader1.TabIndex = 0;
     this.kryptonHeader1.Text = "Permisos de Usuario";
     this.kryptonHeader1.Values.Description = "";
     this.kryptonHeader1.Values.Heading = "Permisos de Usuario";
     this.kryptonHeader1.Values.Image = null;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 31);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.perUsuario);
     this.splitContainer1.Size = new System.Drawing.Size(753, 480);
     this.splitContainer1.SplitterDistance = 236;
     this.splitContainer1.TabIndex = 1;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.AutoScroll = true;
     this.splitContainer2.Panel1.Controls.Add(this.dgvUsuarios);
     this.splitContainer2.Panel1.Controls.Add(this.usuarioBindingNavigator);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.kryptonPanel1);
     this.splitContainer2.Panel2.Controls.Add(this.TsMenu);
     this.splitContainer2.Size = new System.Drawing.Size(753, 236);
     this.splitContainer2.SplitterDistance = 274;
     this.splitContainer2.TabIndex = 0;
     //
     // dgvUsuarios
     //
     this.dgvUsuarios.AllowUserToAddRows = false;
     this.dgvUsuarios.AllowUserToDeleteRows = false;
     this.dgvUsuarios.AutoGenerateColumns = false;
     this.dgvUsuarios.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.usuarioIDDataGridViewTextBoxColumn,
     this.usernameDataGridViewTextBoxColumn,
     this.passwordDataGridViewTextBoxColumn,
     this.esPrincipalDataGridViewCheckBoxColumn,
     this.fechaRegistroDataGridViewTextBoxColumn,
     this.personalDataGridViewTextBoxColumn});
     this.dgvUsuarios.DataSource = this.usuarioBindingSource;
     this.dgvUsuarios.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvUsuarios.GridStyles.Style = ComponentFactory.Krypton.Toolkit.DataGridViewStyle.Sheet;
     this.dgvUsuarios.GridStyles.StyleBackground = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.GridBackgroundSheet;
     this.dgvUsuarios.GridStyles.StyleColumn = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.dgvUsuarios.GridStyles.StyleDataCells = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.dgvUsuarios.GridStyles.StyleRow = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.dgvUsuarios.Location = new System.Drawing.Point(0, 25);
     this.dgvUsuarios.Name = "dgvUsuarios";
     this.dgvUsuarios.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.dgvUsuarios.ReadOnly = true;
     this.dgvUsuarios.RowHeadersWidth = 10;
     this.dgvUsuarios.Size = new System.Drawing.Size(274, 211);
     this.dgvUsuarios.StateCommon.BackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.GridBackgroundSheet;
     this.dgvUsuarios.TabIndex = 0;
     this.dgvUsuarios.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUsuarios_CellEnter);
     //
     // usuarioBindingSource
     //
     this.usuarioBindingSource.DataSource = typeof(ExactTarget.Business.Entities.Usuario);
     //
     // usuarioBindingNavigator
     //
     this.usuarioBindingNavigator.AddNewItem = null;
     this.usuarioBindingNavigator.BindingSource = this.usuarioBindingSource;
     this.usuarioBindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.usuarioBindingNavigator.DeleteItem = null;
     this.usuarioBindingNavigator.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.usuarioBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem});
     this.usuarioBindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.usuarioBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.usuarioBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.usuarioBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.usuarioBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.usuarioBindingNavigator.Name = "usuarioBindingNavigator";
     this.usuarioBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.usuarioBindingNavigator.Size = new System.Drawing.Size(274, 25);
     this.usuarioBindingNavigator.TabIndex = 2;
     this.usuarioBindingNavigator.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.gbxInformacion);
     this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 25);
     this.kryptonPanel1.Name = "kryptonPanel1";
     this.kryptonPanel1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonPanel1.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.PanelClient;
     this.kryptonPanel1.Size = new System.Drawing.Size(475, 211);
     this.kryptonPanel1.TabIndex = 3;
     //
     // gbxInformacion
     //
     this.gbxInformacion.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.gbxInformacion.BackColor = System.Drawing.Color.Transparent;
     this.gbxInformacion.Controls.Add(this.chkEsPrincipal);
     this.gbxInformacion.Controls.Add(this.kryptonLabel2);
     this.gbxInformacion.Controls.Add(this.kryptonLabel1);
     this.gbxInformacion.Controls.Add(this.dtpFechaRegistro);
     this.gbxInformacion.Controls.Add(this.cmbEmpleados);
     this.gbxInformacion.Controls.Add(this.txtPassword);
     this.gbxInformacion.Controls.Add(this.txtUsername);
     this.gbxInformacion.Controls.Add(this.label6);
     this.gbxInformacion.Controls.Add(this.label3);
     this.gbxInformacion.Controls.Add(this.label2);
     this.gbxInformacion.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbxInformacion.ForeColor = System.Drawing.Color.Navy;
     this.gbxInformacion.Location = new System.Drawing.Point(14, 14);
     this.gbxInformacion.Name = "gbxInformacion";
     this.gbxInformacion.Size = new System.Drawing.Size(449, 183);
     this.gbxInformacion.TabIndex = 2;
     this.gbxInformacion.TabStop = false;
     this.gbxInformacion.Text = "Datos Usuario";
     //
     // chkEsPrincipal
     //
     this.chkEsPrincipal.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.chkEsPrincipal.Location = new System.Drawing.Point(117, 137);
     this.chkEsPrincipal.Name = "chkEsPrincipal";
     this.chkEsPrincipal.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.chkEsPrincipal.Size = new System.Drawing.Size(19, 13);
     this.chkEsPrincipal.TabIndex = 31;
     this.chkEsPrincipal.Values.ExtraText = "";
     this.chkEsPrincipal.Values.Image = null;
     this.chkEsPrincipal.Values.Text = "";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.kryptonLabel2.Location = new System.Drawing.Point(19, 135);
     this.kryptonLabel2.Name = "kryptonLabel2";
     this.kryptonLabel2.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonLabel2.Size = new System.Drawing.Size(91, 20);
     this.kryptonLabel2.TabIndex = 30;
     this.kryptonLabel2.Text = "Administrador:";
     this.kryptonLabel2.Values.ExtraText = "";
     this.kryptonLabel2.Values.Image = null;
     this.kryptonLabel2.Values.Text = "Administrador:";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.kryptonLabel1.Location = new System.Drawing.Point(19, 109);
     this.kryptonLabel1.Name = "kryptonLabel1";
     this.kryptonLabel1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonLabel1.Size = new System.Drawing.Size(93, 20);
     this.kryptonLabel1.TabIndex = 29;
     this.kryptonLabel1.Text = "Fecha Registro:";
     this.kryptonLabel1.Values.ExtraText = "";
     this.kryptonLabel1.Values.Image = null;
     this.kryptonLabel1.Values.Text = "Fecha Registro:";
     //
     // dtpFechaRegistro
     //
     this.dtpFechaRegistro.CalendarDayOfWeekStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.CalendarDay;
     this.dtpFechaRegistro.CalendarDayStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.CalendarDay;
     this.dtpFechaRegistro.CalendarHeaderStyle = ComponentFactory.Krypton.Toolkit.HeaderStyle.Calendar;
     this.dtpFechaRegistro.CalendarTodayDate = new System.DateTime(2010, 4, 28, 0, 0, 0, 0);
     this.dtpFechaRegistro.DropButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.InputControl;
     this.dtpFechaRegistro.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.dtpFechaRegistro.Location = new System.Drawing.Point(115, 106);
     this.dtpFechaRegistro.Name = "dtpFechaRegistro";
     this.dtpFechaRegistro.Size = new System.Drawing.Size(204, 21);
     this.dtpFechaRegistro.TabIndex = 28;
     this.dtpFechaRegistro.UpDownButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.InputControl;
     //
     // cmbEmpleados
     //
     this.cmbEmpleados.DataSource = this.personalBindingSource;
     this.cmbEmpleados.DisplayMember = "nombreCompleto";
     this.cmbEmpleados.DropBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlClient;
     this.cmbEmpleados.DropButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.InputControl;
     this.cmbEmpleados.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbEmpleados.DropDownWidth = 258;
     this.cmbEmpleados.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.cmbEmpleados.ItemStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.ListItem;
     this.cmbEmpleados.Location = new System.Drawing.Point(115, 25);
     this.cmbEmpleados.Name = "cmbEmpleados";
     this.cmbEmpleados.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.cmbEmpleados.Size = new System.Drawing.Size(301, 21);
     this.cmbEmpleados.TabIndex = 27;
     this.cmbEmpleados.ValueMember = "personalID";
     //
     // txtPassword
     //
     this.txtPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPassword.BackColorEnter = System.Drawing.SystemColors.Window;
     this.txtPassword.BackColorLeave = System.Drawing.SystemColors.Window;
     this.txtPassword.DataType = ExactTarget.Windows.Controles.DataType.Alfanumerico;
     this.txtPassword.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.txtPassword.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.txtPassword.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.txtPassword.IsMayusculas = false;
     this.txtPassword.Location = new System.Drawing.Point(115, 80);
     this.txtPassword.MaxValue = 0;
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.NumberDecimals = 3;
     this.txtPassword.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2007Blue;
     this.txtPassword.Size = new System.Drawing.Size(213, 20);
     this.txtPassword.TabIndex = 23;
     //
     // txtUsername
     //
     this.txtUsername.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUsername.BackColorEnter = System.Drawing.SystemColors.Window;
     this.txtUsername.BackColorLeave = System.Drawing.SystemColors.Window;
     this.txtUsername.DataType = ExactTarget.Windows.Controles.DataType.Alfanumerico;
     this.txtUsername.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.txtUsername.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.txtUsername.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.txtUsername.IsMayusculas = false;
     this.txtUsername.Location = new System.Drawing.Point(115, 54);
     this.txtUsername.MaxValue = 0;
     this.txtUsername.Name = "txtUsername";
     this.txtUsername.NumberDecimals = 3;
     this.txtUsername.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2007Blue;
     this.txtUsername.Size = new System.Drawing.Size(213, 20);
     this.txtUsername.TabIndex = 22;
     //
     // label6
     //
     this.label6.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.label6.Location = new System.Drawing.Point(19, 83);
     this.label6.Name = "label6";
     this.label6.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.label6.Size = new System.Drawing.Size(65, 20);
     this.label6.TabIndex = 10;
     this.label6.Text = "Password:"******"";
     this.label6.Values.Image = null;
     this.label6.Values.Text = "Password:"******"label3";
     this.label3.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.label3.Size = new System.Drawing.Size(55, 20);
     this.label3.TabIndex = 4;
     this.label3.Text = "Usuario:";
     this.label3.Values.ExtraText = "";
     this.label3.Values.Image = null;
     this.label3.Values.Text = "Usuario:";
     //
     // label2
     //
     this.label2.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.label2.Location = new System.Drawing.Point(19, 28);
     this.label2.Name = "label2";
     this.label2.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.label2.Size = new System.Drawing.Size(68, 20);
     this.label2.TabIndex = 2;
     this.label2.Text = "Empleado:";
     this.label2.Values.ExtraText = "";
     this.label2.Values.Image = null;
     this.label2.Values.Text = "Empleado:";
     //
     // TsMenu
     //
     this.TsMenu.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.TsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsbNuevo,
     this.TsbEditar,
     this.TsbEliminar,
     this.toolStripSeparator,
     this.TsbGuardar,
     this.TsbCancelar});
     this.TsMenu.Location = new System.Drawing.Point(0, 0);
     this.TsMenu.Name = "TsMenu";
     this.TsMenu.Size = new System.Drawing.Size(475, 25);
     this.TsMenu.TabIndex = 2;
     this.TsMenu.Text = "Barra de Menu";
     //
     // TsbNuevo
     //
     this.TsbNuevo.Image = global::ExactTarget.Windows.Properties.Resources.Add1;
     this.TsbNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbNuevo.Name = "TsbNuevo";
     this.TsbNuevo.Size = new System.Drawing.Size(62, 22);
     this.TsbNuevo.Text = "&Nuevo";
     this.TsbNuevo.Click += new System.EventHandler(this.TsbNuevo_Click);
     //
     // TsbEditar
     //
     this.TsbEditar.Image = global::ExactTarget.Windows.Properties.Resources.Modify1;
     this.TsbEditar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbEditar.Name = "TsbEditar";
     this.TsbEditar.Size = new System.Drawing.Size(57, 22);
     this.TsbEditar.Text = "E&ditar";
     this.TsbEditar.Click += new System.EventHandler(this.TsbEditar_Click);
     //
     // TsbEliminar
     //
     this.TsbEliminar.Image = global::ExactTarget.Windows.Properties.Resources.Delete1;
     this.TsbEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbEliminar.Name = "TsbEliminar";
     this.TsbEliminar.Size = new System.Drawing.Size(70, 22);
     this.TsbEliminar.Text = "&Eliminar";
     this.TsbEliminar.Click += new System.EventHandler(this.TsbEliminar_Click);
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // TsbGuardar
     //
     this.TsbGuardar.Image = global::ExactTarget.Windows.Properties.Resources.Save1;
     this.TsbGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbGuardar.Name = "TsbGuardar";
     this.TsbGuardar.Size = new System.Drawing.Size(69, 22);
     this.TsbGuardar.Text = "&Guardar";
     this.TsbGuardar.Click += new System.EventHandler(this.TsbGuardar_Click);
     //
     // TsbCancelar
     //
     this.TsbCancelar.Image = global::ExactTarget.Windows.Properties.Resources.Back1;
     this.TsbCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbCancelar.Name = "TsbCancelar";
     this.TsbCancelar.Size = new System.Drawing.Size(73, 22);
     this.TsbCancelar.Text = "&Cancelar";
     this.TsbCancelar.Click += new System.EventHandler(this.TsbCancelar_Click);
     //
     // perUsuario
     //
     this.perUsuario.Dock = System.Windows.Forms.DockStyle.Fill;
     this.perUsuario.EnabledPermisos = true;
     this.perUsuario.Location = new System.Drawing.Point(0, 0);
     this.perUsuario.Name = "perUsuario";
     this.perUsuario.PersonaID = ((short)(0));
     this.perUsuario.Size = new System.Drawing.Size(753, 240);
     this.perUsuario.TabIndex = 0;
     //
     // errValidator
     //
     this.errValidator.ContainerControl = this;
     //
     // usuarioIDDataGridViewTextBoxColumn
     //
     this.usuarioIDDataGridViewTextBoxColumn.DataPropertyName = "usuarioID";
     this.usuarioIDDataGridViewTextBoxColumn.HeaderText = "usuarioID";
     this.usuarioIDDataGridViewTextBoxColumn.Name = "usuarioIDDataGridViewTextBoxColumn";
     this.usuarioIDDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // usernameDataGridViewTextBoxColumn
     //
     this.usernameDataGridViewTextBoxColumn.DataPropertyName = "username";
     this.usernameDataGridViewTextBoxColumn.HeaderText = "username";
     this.usernameDataGridViewTextBoxColumn.Name = "usernameDataGridViewTextBoxColumn";
     this.usernameDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // passwordDataGridViewTextBoxColumn
     //
     this.passwordDataGridViewTextBoxColumn.DataPropertyName = "password";
     this.passwordDataGridViewTextBoxColumn.HeaderText = "password";
     this.passwordDataGridViewTextBoxColumn.Name = "passwordDataGridViewTextBoxColumn";
     this.passwordDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // esPrincipalDataGridViewCheckBoxColumn
     //
     this.esPrincipalDataGridViewCheckBoxColumn.DataPropertyName = "esPrincipal";
     this.esPrincipalDataGridViewCheckBoxColumn.HeaderText = "esPrincipal";
     this.esPrincipalDataGridViewCheckBoxColumn.Name = "esPrincipalDataGridViewCheckBoxColumn";
     this.esPrincipalDataGridViewCheckBoxColumn.ReadOnly = true;
     //
     // fechaRegistroDataGridViewTextBoxColumn
     //
     this.fechaRegistroDataGridViewTextBoxColumn.DataPropertyName = "fechaRegistro";
     this.fechaRegistroDataGridViewTextBoxColumn.HeaderText = "fechaRegistro";
     this.fechaRegistroDataGridViewTextBoxColumn.Name = "fechaRegistroDataGridViewTextBoxColumn";
     this.fechaRegistroDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // personalDataGridViewTextBoxColumn
     //
     this.personalDataGridViewTextBoxColumn.DataPropertyName = "Personal";
     this.personalDataGridViewTextBoxColumn.HeaderText = "Personal";
     this.personalDataGridViewTextBoxColumn.Name = "personalDataGridViewTextBoxColumn";
     this.personalDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // permisosBindingSource
     //
     this.permisosBindingSource.DataSource = typeof(ExactTarget.Business.Entities.Permiso);
     //
     // personalBindingSource
     //
     this.personalBindingSource.DataSource = typeof(ExactTarget.Business.Entities.Usuario);
     //
     // FrmPermisos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(753, 511);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.kryptonHeader1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "FrmPermisos";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "FrmPermisos";
     this.Load += new System.EventHandler(this.FrmPermisos_Load);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.Panel2.PerformLayout();
     this.splitContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingNavigator)).EndInit();
     this.usuarioBindingNavigator.ResumeLayout(false);
     this.usuarioBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.gbxInformacion.ResumeLayout(false);
     this.gbxInformacion.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEmpleados)).EndInit();
     this.TsMenu.ResumeLayout(false);
     this.TsMenu.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errValidator)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.permisosBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.personalBindingSource)).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();
     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.codigoBusca = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.dependenteGridView = new System.Windows.Forms.DataGridView();
     this.depParentesco = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.depNome = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.depIndCadastro = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.depObservacao = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.contatoGridView = new System.Windows.Forms.DataGridView();
     this.conTipoContato = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.conContato = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.conObservacao = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.pispasep4 = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.pispasep3 = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.pispasep2 = new System.Windows.Forms.TextBox();
     this.label42 = new System.Windows.Forms.Label();
     this.label44 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.pispasep1 = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.nit4 = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.nit3 = new System.Windows.Forms.TextBox();
     this.label41 = new System.Windows.Forms.Label();
     this.nit2 = new System.Windows.Forms.TextBox();
     this.label43 = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.label46 = new System.Windows.Forms.Label();
     this.nit1 = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.ctpsSerie5 = new System.Windows.Forms.TextBox();
     this.label34 = new System.Windows.Forms.Label();
     this.ctps5 = new System.Windows.Forms.TextBox();
     this.label35 = new System.Windows.Forms.Label();
     this.ctpsSerie4 = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.ctps4 = new System.Windows.Forms.TextBox();
     this.label33 = new System.Windows.Forms.Label();
     this.ctpsSerie3 = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.ctps3 = new System.Windows.Forms.TextBox();
     this.label31 = new System.Windows.Forms.Label();
     this.ctpsSerie2 = new System.Windows.Forms.TextBox();
     this.label29 = new System.Windows.Forms.Label();
     this.ctps2 = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.ctpsSerie1 = new System.Windows.Forms.TextBox();
     this.label27 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.ctps1 = new System.Windows.Forms.TextBox();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.enderecoCEP = new System.Windows.Forms.MaskedTextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.enderecoUF = new System.Windows.Forms.ComboBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.dataFalecimento = new System.Windows.Forms.MaskedTextBox();
     this.nome = new System.Windows.Forms.TextBox();
     this.naturalidade = new System.Windows.Forms.TextBox();
     this.enderecoCidade = new System.Windows.Forms.TextBox();
     this.nacionalidade = new System.Windows.Forms.TextBox();
     this.enderecoBairro = new System.Windows.Forms.TextBox();
     this.enderecoComplemento = new System.Windows.Forms.TextBox();
     this.profissao = new System.Windows.Forms.TextBox();
     this.enderecoNumero = new System.Windows.Forms.TextBox();
     this.endereco = new System.Windows.Forms.TextBox();
     this.nomeMae = new System.Windows.Forms.TextBox();
     this.nomePai = new System.Windows.Forms.TextBox();
     this.indFalecido = new System.Windows.Forms.CheckBox();
     this.label10 = 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.label15 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.estadoCivil = new System.Windows.Forms.ComboBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.dataNascimento = new System.Windows.Forms.MaskedTextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.groupBox12 = new System.Windows.Forms.GroupBox();
     this.rbPessoaJuridica = new System.Windows.Forms.RadioButton();
     this.rbPessoaFisica = new System.Windows.Forms.RadioButton();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.pnlCPF = new System.Windows.Forms.Panel();
     this.cpf = new System.Windows.Forms.MaskedTextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.pnlRG = new System.Windows.Forms.Panel();
     this.rg = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.pnlOrgaoExpedidor = new System.Windows.Forms.Panel();
     this.orgaoExpedidorRG = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.pnlDataEmissao = new System.Windows.Forms.Panel();
     this.dataEmissaoRG = new System.Windows.Forms.MaskedTextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.pnlTituloEleitor = new System.Windows.Forms.Panel();
     this.tituloEleitor = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.pnlZona = new System.Windows.Forms.Panel();
     this.zonaEleitoral = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.pnlSecao = new System.Windows.Forms.Panel();
     this.secaoEleitoral = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.pnlCNPJ = new System.Windows.Forms.Panel();
     this.cnpj = new System.Windows.Forms.MaskedTextBox();
     this.label37 = new System.Windows.Forms.Label();
     this.codigo = new System.Windows.Forms.TextBox();
     this.label67 = new System.Windows.Forms.Label();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.beneficiosGridView = new System.Windows.Forms.DataGridView();
     this.benTipoBeneficio = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.benNumero = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benDIB = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benSSCC = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benDivisor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benMedia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benFP = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benSB = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benCC = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benRMI = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benTS = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.grupoGridView = new System.Windows.Forms.DataGridView();
     this.grpNome = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.colorComboBox1 = new VisaoControles.ColorComboBox();
     this.buttonBar = new TXTextControl.ButtonBar();
     this.txtAtendimento = new TXTextControl.TextControl();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.btnSair = new System.Windows.Forms.Button();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnSalvar = new System.Windows.Forms.Button();
     this.btnPesquisar = new System.Windows.Forms.Button();
     this.btnLimpar = new System.Windows.Forms.Button();
     this.btnNovo = new System.Windows.Forms.Button();
     this.btnExcluir = new System.Windows.Forms.Button();
     this.btnPDF = new System.Windows.Forms.Button();
     this.menuGridView = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.removerLinhaContextButton = new System.Windows.Forms.ToolStripMenuItem();
     this.tabPage4.SuspendLayout();
     this.groupBox9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dependenteGridView)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.groupBox10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.contatoGridView)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.groupBox12.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.pnlCPF.SuspendLayout();
     this.pnlRG.SuspendLayout();
     this.pnlOrgaoExpedidor.SuspendLayout();
     this.pnlDataEmissao.SuspendLayout();
     this.pnlTituloEleitor.SuspendLayout();
     this.pnlZona.SuspendLayout();
     this.pnlSecao.SuspendLayout();
     this.pnlCNPJ.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.groupBox8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.beneficiosGridView)).BeginInit();
     this.tabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grupoGridView)).BeginInit();
     this.tabPage7.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox11.SuspendLayout();
     this.menuGridView.SuspendLayout();
     this.SuspendLayout();
     //
     // codigoBusca
     //
     this.codigoBusca.Location = new System.Drawing.Point(760, 29);
     this.codigoBusca.Name = "codigoBusca";
     this.codigoBusca.Size = new System.Drawing.Size(136, 20);
     this.codigoBusca.TabIndex = 0;
     this.codigoBusca.Visible = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(648, 32);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(108, 15);
     this.label1.TabIndex = 0;
     this.label1.Text = "Código do Cliente:";
     this.label1.Visible = false;
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage4.Controls.Add(this.groupBox9);
     this.tabPage4.Location = new System.Drawing.Point(4, 25);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(1142, 517);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "Dependentes";
     //
     // groupBox9
     //
     this.groupBox9.Controls.Add(this.dependenteGridView);
     this.groupBox9.Location = new System.Drawing.Point(7, 6);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(1005, 508);
     this.groupBox9.TabIndex = 48;
     this.groupBox9.TabStop = false;
     //
     // dependenteGridView
     //
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.dependenteGridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dependenteGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dependenteGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.depParentesco,
     this.depNome,
     this.depIndCadastro,
     this.depObservacao});
     this.dependenteGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.dependenteGridView.Location = new System.Drawing.Point(6, 19);
     this.dependenteGridView.Name = "dependenteGridView";
     this.dependenteGridView.Size = new System.Drawing.Size(990, 483);
     this.dependenteGridView.TabIndex = 7;
     //
     // depParentesco
     //
     this.depParentesco.DataPropertyName = "GrauParentesco";
     this.depParentesco.HeaderText = "Parentesco";
     this.depParentesco.Name = "depParentesco";
     this.depParentesco.Width = 150;
     //
     // depNome
     //
     this.depNome.DataPropertyName = "Nome";
     this.depNome.HeaderText = "Nome";
     this.depNome.MinimumWidth = 350;
     this.depNome.Name = "depNome";
     this.depNome.Width = 350;
     //
     // depIndCadastro
     //
     this.depIndCadastro.DataPropertyName = "IndCadastro";
     this.depIndCadastro.HeaderText = "Cadastro";
     this.depIndCadastro.Name = "depIndCadastro";
     //
     // depObservacao
     //
     this.depObservacao.DataPropertyName = "Observacao";
     this.depObservacao.HeaderText = "Observação";
     this.depObservacao.MinimumWidth = 409;
     this.depObservacao.Name = "depObservacao";
     this.depObservacao.Width = 409;
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage3.Controls.Add(this.groupBox10);
     this.tabPage3.Location = new System.Drawing.Point(4, 25);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(1142, 517);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "Contatos";
     //
     // groupBox10
     //
     this.groupBox10.Controls.Add(this.contatoGridView);
     this.groupBox10.Location = new System.Drawing.Point(7, 6);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(1002, 508);
     this.groupBox10.TabIndex = 99;
     this.groupBox10.TabStop = false;
     //
     // contatoGridView
     //
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.WhiteSmoke;
     this.contatoGridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle2;
     this.contatoGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.contatoGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.conTipoContato,
     this.conContato,
     this.conObservacao});
     this.contatoGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.contatoGridView.Location = new System.Drawing.Point(6, 19);
     this.contatoGridView.Name = "contatoGridView";
     this.contatoGridView.Size = new System.Drawing.Size(986, 483);
     this.contatoGridView.TabIndex = 98;
     //
     // conTipoContato
     //
     this.conTipoContato.DataPropertyName = "TipoContato";
     this.conTipoContato.HeaderText = "Tipo";
     this.conTipoContato.Items.AddRange(new object[] {
     "Telefone Residencial",
     "Telefone Celular",
     "Telefone Comercial",
     "E-Mail",
     "Fax",
     "Website"});
     this.conTipoContato.MinimumWidth = 160;
     this.conTipoContato.Name = "conTipoContato";
     this.conTipoContato.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.conTipoContato.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.conTipoContato.Width = 160;
     //
     // conContato
     //
     this.conContato.DataPropertyName = "Contato";
     this.conContato.HeaderText = "Telefone, E-Mail, etc";
     this.conContato.MinimumWidth = 200;
     this.conContato.Name = "conContato";
     this.conContato.Width = 200;
     //
     // conObservacao
     //
     this.conObservacao.DataPropertyName = "Observacao";
     this.conObservacao.HeaderText = "Observação";
     this.conObservacao.MinimumWidth = 490;
     this.conObservacao.Name = "conObservacao";
     this.conObservacao.Width = 490;
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage2.Controls.Add(this.groupBox4);
     this.tabPage2.Controls.Add(this.groupBox3);
     this.tabPage2.Controls.Add(this.groupBox2);
     this.tabPage2.Location = new System.Drawing.Point(4, 25);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(1142, 517);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Documentos Adicionais";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.pispasep4);
     this.groupBox4.Controls.Add(this.label38);
     this.groupBox4.Controls.Add(this.pispasep3);
     this.groupBox4.Controls.Add(this.label40);
     this.groupBox4.Controls.Add(this.pispasep2);
     this.groupBox4.Controls.Add(this.label42);
     this.groupBox4.Controls.Add(this.label44);
     this.groupBox4.Controls.Add(this.label47);
     this.groupBox4.Controls.Add(this.pispasep1);
     this.groupBox4.Location = new System.Drawing.Point(568, 85);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(185, 188);
     this.groupBox4.TabIndex = 74;
     this.groupBox4.TabStop = false;
     //
     // pispasep4
     //
     this.pispasep4.Location = new System.Drawing.Point(38, 128);
     this.pispasep4.MaxLength = 12;
     this.pispasep4.Name = "pispasep4";
     this.pispasep4.Size = new System.Drawing.Size(113, 20);
     this.pispasep4.TabIndex = 63;
     //
     // 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(10, 131);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(25, 13);
     this.label38.TabIndex = 62;
     this.label38.Text = "4 >";
     //
     // pispasep3
     //
     this.pispasep3.Location = new System.Drawing.Point(38, 102);
     this.pispasep3.MaxLength = 12;
     this.pispasep3.Name = "pispasep3";
     this.pispasep3.Size = new System.Drawing.Size(113, 20);
     this.pispasep3.TabIndex = 59;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.Location = new System.Drawing.Point(10, 105);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(25, 13);
     this.label40.TabIndex = 58;
     this.label40.Text = "3 >";
     //
     // pispasep2
     //
     this.pispasep2.Location = new System.Drawing.Point(38, 76);
     this.pispasep2.MaxLength = 12;
     this.pispasep2.Name = "pispasep2";
     this.pispasep2.Size = new System.Drawing.Size(113, 20);
     this.pispasep2.TabIndex = 55;
     //
     // 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(10, 79);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(25, 13);
     this.label42.TabIndex = 54;
     this.label42.Text = "2 >";
     //
     // 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(10, 50);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(25, 13);
     this.label44.TabIndex = 51;
     this.label44.Text = "1 >";
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label47.Location = new System.Drawing.Point(35, 16);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(81, 13);
     this.label47.TabIndex = 50;
     this.label47.Text = "PIS / PASEP";
     //
     // pispasep1
     //
     this.pispasep1.Location = new System.Drawing.Point(38, 47);
     this.pispasep1.MaxLength = 12;
     this.pispasep1.Name = "pispasep1";
     this.pispasep1.Size = new System.Drawing.Size(113, 20);
     this.pispasep1.TabIndex = 50;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.nit4);
     this.groupBox3.Controls.Add(this.label39);
     this.groupBox3.Controls.Add(this.nit3);
     this.groupBox3.Controls.Add(this.label41);
     this.groupBox3.Controls.Add(this.nit2);
     this.groupBox3.Controls.Add(this.label43);
     this.groupBox3.Controls.Add(this.label45);
     this.groupBox3.Controls.Add(this.label46);
     this.groupBox3.Controls.Add(this.nit1);
     this.groupBox3.Location = new System.Drawing.Point(349, 85);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(211, 188);
     this.groupBox3.TabIndex = 73;
     this.groupBox3.TabStop = false;
     //
     // nit4
     //
     this.nit4.Location = new System.Drawing.Point(38, 128);
     this.nit4.MaxLength = 12;
     this.nit4.Name = "nit4";
     this.nit4.Size = new System.Drawing.Size(141, 20);
     this.nit4.TabIndex = 63;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.Location = new System.Drawing.Point(10, 131);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(25, 13);
     this.label39.TabIndex = 62;
     this.label39.Text = "4 >";
     //
     // nit3
     //
     this.nit3.Location = new System.Drawing.Point(38, 102);
     this.nit3.MaxLength = 12;
     this.nit3.Name = "nit3";
     this.nit3.Size = new System.Drawing.Size(141, 20);
     this.nit3.TabIndex = 59;
     //
     // 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(10, 105);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(25, 13);
     this.label41.TabIndex = 58;
     this.label41.Text = "3 >";
     //
     // nit2
     //
     this.nit2.Location = new System.Drawing.Point(38, 76);
     this.nit2.MaxLength = 12;
     this.nit2.Name = "nit2";
     this.nit2.Size = new System.Drawing.Size(141, 20);
     this.nit2.TabIndex = 55;
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label43.Location = new System.Drawing.Point(10, 79);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(25, 13);
     this.label43.TabIndex = 54;
     this.label43.Text = "2 >";
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label45.Location = new System.Drawing.Point(10, 50);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(25, 13);
     this.label45.TabIndex = 51;
     this.label45.Text = "1 >";
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label46.Location = new System.Drawing.Point(35, 16);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(28, 13);
     this.label46.TabIndex = 50;
     this.label46.Text = "NIT";
     //
     // nit1
     //
     this.nit1.Location = new System.Drawing.Point(38, 47);
     this.nit1.MaxLength = 12;
     this.nit1.Name = "nit1";
     this.nit1.Size = new System.Drawing.Size(141, 20);
     this.nit1.TabIndex = 50;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.ctpsSerie5);
     this.groupBox2.Controls.Add(this.label34);
     this.groupBox2.Controls.Add(this.ctps5);
     this.groupBox2.Controls.Add(this.label35);
     this.groupBox2.Controls.Add(this.ctpsSerie4);
     this.groupBox2.Controls.Add(this.label32);
     this.groupBox2.Controls.Add(this.ctps4);
     this.groupBox2.Controls.Add(this.label33);
     this.groupBox2.Controls.Add(this.ctpsSerie3);
     this.groupBox2.Controls.Add(this.label30);
     this.groupBox2.Controls.Add(this.ctps3);
     this.groupBox2.Controls.Add(this.label31);
     this.groupBox2.Controls.Add(this.ctpsSerie2);
     this.groupBox2.Controls.Add(this.label29);
     this.groupBox2.Controls.Add(this.ctps2);
     this.groupBox2.Controls.Add(this.label28);
     this.groupBox2.Controls.Add(this.ctpsSerie1);
     this.groupBox2.Controls.Add(this.label27);
     this.groupBox2.Controls.Add(this.label26);
     this.groupBox2.Controls.Add(this.label25);
     this.groupBox2.Controls.Add(this.ctps1);
     this.groupBox2.Location = new System.Drawing.Point(57, 85);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(283, 188);
     this.groupBox2.TabIndex = 72;
     this.groupBox2.TabStop = false;
     //
     // ctpsSerie5
     //
     this.ctpsSerie5.Location = new System.Drawing.Point(172, 154);
     this.ctpsSerie5.MaxLength = 12;
     this.ctpsSerie5.Name = "ctpsSerie5";
     this.ctpsSerie5.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie5.TabIndex = 69;
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.Location = new System.Drawing.Point(157, 157);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(13, 13);
     this.label34.TabIndex = 68;
     this.label34.Text = "/";
     //
     // ctps5
     //
     this.ctps5.Location = new System.Drawing.Point(38, 154);
     this.ctps5.MaxLength = 12;
     this.ctps5.Name = "ctps5";
     this.ctps5.Size = new System.Drawing.Size(113, 20);
     this.ctps5.TabIndex = 67;
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(10, 157);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(25, 13);
     this.label35.TabIndex = 66;
     this.label35.Text = "5 >";
     //
     // ctpsSerie4
     //
     this.ctpsSerie4.Location = new System.Drawing.Point(172, 128);
     this.ctpsSerie4.MaxLength = 12;
     this.ctpsSerie4.Name = "ctpsSerie4";
     this.ctpsSerie4.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie4.TabIndex = 65;
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.Location = new System.Drawing.Point(157, 131);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(13, 13);
     this.label32.TabIndex = 64;
     this.label32.Text = "/";
     //
     // ctps4
     //
     this.ctps4.Location = new System.Drawing.Point(38, 128);
     this.ctps4.MaxLength = 12;
     this.ctps4.Name = "ctps4";
     this.ctps4.Size = new System.Drawing.Size(113, 20);
     this.ctps4.TabIndex = 63;
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(10, 131);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(25, 13);
     this.label33.TabIndex = 62;
     this.label33.Text = "4 >";
     //
     // ctpsSerie3
     //
     this.ctpsSerie3.Location = new System.Drawing.Point(172, 102);
     this.ctpsSerie3.MaxLength = 12;
     this.ctpsSerie3.Name = "ctpsSerie3";
     this.ctpsSerie3.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie3.TabIndex = 61;
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(157, 105);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(13, 13);
     this.label30.TabIndex = 60;
     this.label30.Text = "/";
     //
     // ctps3
     //
     this.ctps3.Location = new System.Drawing.Point(38, 102);
     this.ctps3.MaxLength = 12;
     this.ctps3.Name = "ctps3";
     this.ctps3.Size = new System.Drawing.Size(113, 20);
     this.ctps3.TabIndex = 59;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(10, 105);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(25, 13);
     this.label31.TabIndex = 58;
     this.label31.Text = "3 >";
     //
     // ctpsSerie2
     //
     this.ctpsSerie2.Location = new System.Drawing.Point(172, 76);
     this.ctpsSerie2.MaxLength = 12;
     this.ctpsSerie2.Name = "ctpsSerie2";
     this.ctpsSerie2.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie2.TabIndex = 57;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(157, 79);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(13, 13);
     this.label29.TabIndex = 56;
     this.label29.Text = "/";
     //
     // ctps2
     //
     this.ctps2.Location = new System.Drawing.Point(38, 76);
     this.ctps2.MaxLength = 12;
     this.ctps2.Name = "ctps2";
     this.ctps2.Size = new System.Drawing.Size(113, 20);
     this.ctps2.TabIndex = 55;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(10, 79);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(25, 13);
     this.label28.TabIndex = 54;
     this.label28.Text = "2 >";
     //
     // ctpsSerie1
     //
     this.ctpsSerie1.Location = new System.Drawing.Point(172, 47);
     this.ctpsSerie1.MaxLength = 12;
     this.ctpsSerie1.Name = "ctpsSerie1";
     this.ctpsSerie1.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie1.TabIndex = 53;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(157, 50);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(13, 13);
     this.label27.TabIndex = 52;
     this.label27.Text = "/";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.Location = new System.Drawing.Point(10, 50);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(25, 13);
     this.label26.TabIndex = 51;
     this.label26.Text = "1 >";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(35, 16);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(90, 13);
     this.label25.TabIndex = 50;
     this.label25.Text = "CTPS / SÉRIE";
     //
     // ctps1
     //
     this.ctps1.Location = new System.Drawing.Point(38, 47);
     this.ctps1.MaxLength = 12;
     this.ctps1.Name = "ctps1";
     this.ctps1.Size = new System.Drawing.Size(113, 20);
     this.ctps1.TabIndex = 50;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage1.Controls.Add(this.enderecoCEP);
     this.tabPage1.Controls.Add(this.label17);
     this.tabPage1.Controls.Add(this.enderecoUF);
     this.tabPage1.Controls.Add(this.label16);
     this.tabPage1.Controls.Add(this.label8);
     this.tabPage1.Controls.Add(this.dataFalecimento);
     this.tabPage1.Controls.Add(this.nome);
     this.tabPage1.Controls.Add(this.naturalidade);
     this.tabPage1.Controls.Add(this.enderecoCidade);
     this.tabPage1.Controls.Add(this.nacionalidade);
     this.tabPage1.Controls.Add(this.enderecoBairro);
     this.tabPage1.Controls.Add(this.enderecoComplemento);
     this.tabPage1.Controls.Add(this.profissao);
     this.tabPage1.Controls.Add(this.enderecoNumero);
     this.tabPage1.Controls.Add(this.endereco);
     this.tabPage1.Controls.Add(this.nomeMae);
     this.tabPage1.Controls.Add(this.nomePai);
     this.tabPage1.Controls.Add(this.indFalecido);
     this.tabPage1.Controls.Add(this.label10);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.label15);
     this.tabPage1.Controls.Add(this.label5);
     this.tabPage1.Controls.Add(this.label14);
     this.tabPage1.Controls.Add(this.estadoCivil);
     this.tabPage1.Controls.Add(this.label6);
     this.tabPage1.Controls.Add(this.label13);
     this.tabPage1.Controls.Add(this.label7);
     this.tabPage1.Controls.Add(this.label12);
     this.tabPage1.Controls.Add(this.dataNascimento);
     this.tabPage1.Controls.Add(this.label11);
     this.tabPage1.Controls.Add(this.label9);
     this.tabPage1.Controls.Add(this.groupBox5);
     this.tabPage1.Location = new System.Drawing.Point(4, 25);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(1142, 517);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Dados";
     //
     // enderecoCEP
     //
     this.enderecoCEP.Location = new System.Drawing.Point(866, 230);
     this.enderecoCEP.Mask = "00000-999";
     this.enderecoCEP.Name = "enderecoCEP";
     this.enderecoCEP.Size = new System.Drawing.Size(67, 20);
     this.enderecoCEP.TabIndex = 16;
     this.enderecoCEP.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(866, 214);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(28, 13);
     this.label17.TabIndex = 217;
     this.label17.Text = "CEP";
     //
     // enderecoUF
     //
     this.enderecoUF.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.enderecoUF.FormattingEnabled = true;
     this.enderecoUF.Items.AddRange(new object[] {
     "AC",
     "AL",
     "AM",
     "AP",
     "BA",
     "CE",
     "DF",
     "ES",
     "GO",
     "MA",
     "MG",
     "MS",
     "MT",
     "PA",
     "PB",
     "PE",
     "PI",
     "PR",
     "RJ",
     "RN",
     "RO",
     "RR",
     "RS",
     "SC",
     "SE",
     "SP",
     "TO"});
     this.enderecoUF.Location = new System.Drawing.Point(956, 229);
     this.enderecoUF.Name = "enderecoUF";
     this.enderecoUF.Size = new System.Drawing.Size(46, 21);
     this.enderecoUF.TabIndex = 17;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(953, 214);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(21, 13);
     this.label16.TabIndex = 215;
     this.label16.Text = "UF";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(707, 62);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(90, 13);
     this.label8.TabIndex = 213;
     this.label8.Text = "Data Falecimento";
     //
     // dataFalecimento
     //
     this.dataFalecimento.Enabled = false;
     this.dataFalecimento.Location = new System.Drawing.Point(711, 78);
     this.dataFalecimento.Mask = "00/00/0000";
     this.dataFalecimento.Name = "dataFalecimento";
     this.dataFalecimento.Size = new System.Drawing.Size(73, 20);
     this.dataFalecimento.TabIndex = 3;
     this.dataFalecimento.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     this.dataFalecimento.ValidatingType = typeof(System.DateTime);
     //
     // nome
     //
     this.nome.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.nome.Location = new System.Drawing.Point(13, 82);
     this.nome.Name = "nome";
     this.nome.Size = new System.Drawing.Size(493, 20);
     this.nome.TabIndex = 1;
     //
     // naturalidade
     //
     this.naturalidade.Location = new System.Drawing.Point(13, 127);
     this.naturalidade.Name = "naturalidade";
     this.naturalidade.Size = new System.Drawing.Size(167, 20);
     this.naturalidade.TabIndex = 4;
     //
     // enderecoCidade
     //
     this.enderecoCidade.Location = new System.Drawing.Point(737, 230);
     this.enderecoCidade.Name = "enderecoCidade";
     this.enderecoCidade.Size = new System.Drawing.Size(109, 20);
     this.enderecoCidade.TabIndex = 15;
     //
     // nacionalidade
     //
     this.nacionalidade.Location = new System.Drawing.Point(200, 127);
     this.nacionalidade.Name = "nacionalidade";
     this.nacionalidade.Size = new System.Drawing.Size(167, 20);
     this.nacionalidade.TabIndex = 5;
     //
     // enderecoBairro
     //
     this.enderecoBairro.Location = new System.Drawing.Point(593, 230);
     this.enderecoBairro.Name = "enderecoBairro";
     this.enderecoBairro.Size = new System.Drawing.Size(124, 20);
     this.enderecoBairro.TabIndex = 14;
     //
     // enderecoComplemento
     //
     this.enderecoComplemento.Location = new System.Drawing.Point(465, 230);
     this.enderecoComplemento.Name = "enderecoComplemento";
     this.enderecoComplemento.Size = new System.Drawing.Size(109, 20);
     this.enderecoComplemento.TabIndex = 13;
     //
     // profissao
     //
     this.profissao.Location = new System.Drawing.Point(525, 126);
     this.profissao.Name = "profissao";
     this.profissao.Size = new System.Drawing.Size(167, 20);
     this.profissao.TabIndex = 7;
     //
     // enderecoNumero
     //
     this.enderecoNumero.Location = new System.Drawing.Point(385, 230);
     this.enderecoNumero.MaxLength = 6;
     this.enderecoNumero.Name = "enderecoNumero";
     this.enderecoNumero.Size = new System.Drawing.Size(59, 20);
     this.enderecoNumero.TabIndex = 12;
     //
     // endereco
     //
     this.endereco.Location = new System.Drawing.Point(13, 230);
     this.endereco.Name = "endereco";
     this.endereco.Size = new System.Drawing.Size(354, 20);
     this.endereco.TabIndex = 11;
     //
     // nomeMae
     //
     this.nomeMae.Location = new System.Drawing.Point(385, 176);
     this.nomeMae.Name = "nomeMae";
     this.nomeMae.Size = new System.Drawing.Size(354, 20);
     this.nomeMae.TabIndex = 10;
     //
     // nomePai
     //
     this.nomePai.Location = new System.Drawing.Point(13, 176);
     this.nomePai.Name = "nomePai";
     this.nomePai.Size = new System.Drawing.Size(354, 20);
     this.nomePai.TabIndex = 9;
     //
     // indFalecido
     //
     this.indFalecido.AutoSize = true;
     this.indFalecido.Location = new System.Drawing.Point(564, 82);
     this.indFalecido.Name = "indFalecido";
     this.indFalecido.Size = new System.Drawing.Size(75, 17);
     this.indFalecido.TabIndex = 2;
     this.indFalecido.Text = "Falecido ?";
     this.indFalecido.UseVisualStyleBackColor = true;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(391, 160);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(28, 13);
     this.label10.TabIndex = 187;
     this.label10.Text = "Mãe";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(10, 65);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(35, 13);
     this.label2.TabIndex = 173;
     this.label2.Text = "Nome";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(10, 111);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(67, 13);
     this.label3.TabIndex = 175;
     this.label3.Text = "Naturalidade";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(197, 111);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(75, 13);
     this.label4.TabIndex = 177;
     this.label4.Text = "Nacionalidade";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(734, 214);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(40, 13);
     this.label15.TabIndex = 197;
     this.label15.Text = "Cidade";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(382, 111);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(62, 13);
     this.label5.TabIndex = 179;
     this.label5.Text = "Estado Civil";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(591, 214);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(34, 13);
     this.label14.TabIndex = 195;
     this.label14.Text = "Bairro";
     //
     // estadoCivil
     //
     this.estadoCivil.FormattingEnabled = true;
     this.estadoCivil.Location = new System.Drawing.Point(385, 126);
     this.estadoCivil.Name = "estadoCivil";
     this.estadoCivil.Size = new System.Drawing.Size(121, 21);
     this.estadoCivil.TabIndex = 6;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(524, 111);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(50, 13);
     this.label6.TabIndex = 181;
     this.label6.Text = "Profissão";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(462, 214);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(71, 13);
     this.label13.TabIndex = 193;
     this.label13.Text = "Complemento";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(708, 111);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(89, 13);
     this.label7.TabIndex = 183;
     this.label7.Text = "Data Nascimento";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(382, 214);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(44, 13);
     this.label12.TabIndex = 191;
     this.label12.Text = "Número";
     //
     // dataNascimento
     //
     this.dataNascimento.Location = new System.Drawing.Point(711, 126);
     this.dataNascimento.Mask = "00/00/0000";
     this.dataNascimento.Name = "dataNascimento";
     this.dataNascimento.Size = new System.Drawing.Size(73, 20);
     this.dataNascimento.TabIndex = 8;
     this.dataNascimento.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     this.dataNascimento.ValidatingType = typeof(System.DateTime);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(10, 214);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(53, 13);
     this.label11.TabIndex = 189;
     this.label11.Text = "Endereço";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(10, 160);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(22, 13);
     this.label9.TabIndex = 185;
     this.label9.Text = "Pai";
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.groupBox12);
     this.groupBox5.Controls.Add(this.codigo);
     this.groupBox5.Controls.Add(this.label67);
     this.groupBox5.Location = new System.Drawing.Point(7, 12);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(1004, 380);
     this.groupBox5.TabIndex = 1000;
     this.groupBox5.TabStop = false;
     //
     // groupBox12
     //
     this.groupBox12.Controls.Add(this.rbPessoaJuridica);
     this.groupBox12.Controls.Add(this.rbPessoaFisica);
     this.groupBox12.Controls.Add(this.flowLayoutPanel1);
     this.groupBox12.Location = new System.Drawing.Point(7, 244);
     this.groupBox12.Name = "groupBox12";
     this.groupBox12.Size = new System.Drawing.Size(988, 130);
     this.groupBox12.TabIndex = 18;
     this.groupBox12.TabStop = false;
     this.groupBox12.Text = "Tipo de Cliente";
     //
     // rbPessoaJuridica
     //
     this.rbPessoaJuridica.AutoSize = true;
     this.rbPessoaJuridica.Location = new System.Drawing.Point(130, 31);
     this.rbPessoaJuridica.Name = "rbPessoaJuridica";
     this.rbPessoaJuridica.Size = new System.Drawing.Size(101, 17);
     this.rbPessoaJuridica.TabIndex = 215;
     this.rbPessoaJuridica.TabStop = true;
     this.rbPessoaJuridica.Text = "Pessoa Jurídica";
     this.rbPessoaJuridica.UseVisualStyleBackColor = true;
     this.rbPessoaJuridica.CheckedChanged += new System.EventHandler(this.rbPessoaJuridica_CheckedChanged);
     //
     // rbPessoaFisica
     //
     this.rbPessoaFisica.AutoSize = true;
     this.rbPessoaFisica.Checked = true;
     this.rbPessoaFisica.Location = new System.Drawing.Point(12, 31);
     this.rbPessoaFisica.Name = "rbPessoaFisica";
     this.rbPessoaFisica.Size = new System.Drawing.Size(92, 17);
     this.rbPessoaFisica.TabIndex = 214;
     this.rbPessoaFisica.TabStop = true;
     this.rbPessoaFisica.Text = "Pessoa Física";
     this.rbPessoaFisica.UseVisualStyleBackColor = true;
     this.rbPessoaFisica.CheckedChanged += new System.EventHandler(this.rbPessoaFisica_CheckedChanged);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.pnlCPF);
     this.flowLayoutPanel1.Controls.Add(this.pnlRG);
     this.flowLayoutPanel1.Controls.Add(this.pnlOrgaoExpedidor);
     this.flowLayoutPanel1.Controls.Add(this.pnlDataEmissao);
     this.flowLayoutPanel1.Controls.Add(this.pnlTituloEleitor);
     this.flowLayoutPanel1.Controls.Add(this.pnlZona);
     this.flowLayoutPanel1.Controls.Add(this.pnlSecao);
     this.flowLayoutPanel1.Controls.Add(this.pnlCNPJ);
     this.flowLayoutPanel1.Location = new System.Drawing.Point(9, 63);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(988, 61);
     this.flowLayoutPanel1.TabIndex = 213;
     //
     // pnlCPF
     //
     this.pnlCPF.Controls.Add(this.cpf);
     this.pnlCPF.Controls.Add(this.label18);
     this.pnlCPF.Location = new System.Drawing.Point(3, 3);
     this.pnlCPF.Name = "pnlCPF";
     this.pnlCPF.Size = new System.Drawing.Size(117, 49);
     this.pnlCPF.TabIndex = 0;
     //
     // cpf
     //
     this.cpf.Location = new System.Drawing.Point(13, 26);
     this.cpf.Mask = "999\\.999\\.999-99";
     this.cpf.Name = "cpf";
     this.cpf.Size = new System.Drawing.Size(94, 20);
     this.cpf.TabIndex = 18;
     this.cpf.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(10, 10);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(27, 13);
     this.label18.TabIndex = 199;
     this.label18.Text = "CPF";
     //
     // pnlRG
     //
     this.pnlRG.Controls.Add(this.rg);
     this.pnlRG.Controls.Add(this.label19);
     this.pnlRG.Location = new System.Drawing.Point(126, 3);
     this.pnlRG.Name = "pnlRG";
     this.pnlRG.Size = new System.Drawing.Size(117, 49);
     this.pnlRG.TabIndex = 1;
     //
     // rg
     //
     this.rg.Location = new System.Drawing.Point(12, 26);
     this.rg.Name = "rg";
     this.rg.Size = new System.Drawing.Size(100, 20);
     this.rg.TabIndex = 19;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(9, 10);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(23, 13);
     this.label19.TabIndex = 201;
     this.label19.Text = "RG";
     //
     // pnlOrgaoExpedidor
     //
     this.pnlOrgaoExpedidor.Controls.Add(this.orgaoExpedidorRG);
     this.pnlOrgaoExpedidor.Controls.Add(this.label20);
     this.pnlOrgaoExpedidor.Location = new System.Drawing.Point(249, 3);
     this.pnlOrgaoExpedidor.Name = "pnlOrgaoExpedidor";
     this.pnlOrgaoExpedidor.Size = new System.Drawing.Size(82, 49);
     this.pnlOrgaoExpedidor.TabIndex = 2;
     //
     // orgaoExpedidorRG
     //
     this.orgaoExpedidorRG.Location = new System.Drawing.Point(14, 26);
     this.orgaoExpedidorRG.MaxLength = 8;
     this.orgaoExpedidorRG.Name = "orgaoExpedidorRG";
     this.orgaoExpedidorRG.Size = new System.Drawing.Size(59, 20);
     this.orgaoExpedidorRG.TabIndex = 20;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(11, 10);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(60, 13);
     this.label20.TabIndex = 203;
     this.label20.Text = "Orgão Exp.";
     //
     // pnlDataEmissao
     //
     this.pnlDataEmissao.Controls.Add(this.dataEmissaoRG);
     this.pnlDataEmissao.Controls.Add(this.label21);
     this.pnlDataEmissao.Location = new System.Drawing.Point(337, 3);
     this.pnlDataEmissao.Name = "pnlDataEmissao";
     this.pnlDataEmissao.Size = new System.Drawing.Size(84, 49);
     this.pnlDataEmissao.TabIndex = 3;
     //
     // dataEmissaoRG
     //
     this.dataEmissaoRG.Location = new System.Drawing.Point(6, 26);
     this.dataEmissaoRG.Mask = "00/00/0000";
     this.dataEmissaoRG.Name = "dataEmissaoRG";
     this.dataEmissaoRG.Size = new System.Drawing.Size(69, 20);
     this.dataEmissaoRG.TabIndex = 21;
     this.dataEmissaoRG.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     this.dataEmissaoRG.ValidatingType = typeof(System.DateTime);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(3, 10);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(72, 13);
     this.label21.TabIndex = 205;
     this.label21.Text = "Data Emissão";
     //
     // pnlTituloEleitor
     //
     this.pnlTituloEleitor.Controls.Add(this.tituloEleitor);
     this.pnlTituloEleitor.Controls.Add(this.label22);
     this.pnlTituloEleitor.Location = new System.Drawing.Point(427, 3);
     this.pnlTituloEleitor.Name = "pnlTituloEleitor";
     this.pnlTituloEleitor.Size = new System.Drawing.Size(133, 49);
     this.pnlTituloEleitor.TabIndex = 4;
     //
     // tituloEleitor
     //
     this.tituloEleitor.Location = new System.Drawing.Point(4, 26);
     this.tituloEleitor.MaxLength = 15;
     this.tituloEleitor.Name = "tituloEleitor";
     this.tituloEleitor.Size = new System.Drawing.Size(113, 20);
     this.tituloEleitor.TabIndex = 22;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(1, 10);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(67, 13);
     this.label22.TabIndex = 207;
     this.label22.Text = "Título Eleitor";
     //
     // pnlZona
     //
     this.pnlZona.Controls.Add(this.zonaEleitoral);
     this.pnlZona.Controls.Add(this.label23);
     this.pnlZona.Location = new System.Drawing.Point(566, 3);
     this.pnlZona.Name = "pnlZona";
     this.pnlZona.Size = new System.Drawing.Size(80, 49);
     this.pnlZona.TabIndex = 5;
     //
     // zonaEleitoral
     //
     this.zonaEleitoral.Location = new System.Drawing.Point(3, 26);
     this.zonaEleitoral.MaxLength = 5;
     this.zonaEleitoral.Name = "zonaEleitoral";
     this.zonaEleitoral.Size = new System.Drawing.Size(66, 20);
     this.zonaEleitoral.TabIndex = 23;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(1, 10);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(32, 13);
     this.label23.TabIndex = 209;
     this.label23.Text = "Zona";
     //
     // pnlSecao
     //
     this.pnlSecao.Controls.Add(this.secaoEleitoral);
     this.pnlSecao.Controls.Add(this.label24);
     this.pnlSecao.Location = new System.Drawing.Point(652, 3);
     this.pnlSecao.Name = "pnlSecao";
     this.pnlSecao.Size = new System.Drawing.Size(83, 49);
     this.pnlSecao.TabIndex = 6;
     //
     // secaoEleitoral
     //
     this.secaoEleitoral.Location = new System.Drawing.Point(5, 26);
     this.secaoEleitoral.MaxLength = 7;
     this.secaoEleitoral.Name = "secaoEleitoral";
     this.secaoEleitoral.Size = new System.Drawing.Size(68, 20);
     this.secaoEleitoral.TabIndex = 24;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(2, 10);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(38, 13);
     this.label24.TabIndex = 211;
     this.label24.Text = "Seção";
     //
     // pnlCNPJ
     //
     this.pnlCNPJ.Controls.Add(this.cnpj);
     this.pnlCNPJ.Controls.Add(this.label37);
     this.pnlCNPJ.Location = new System.Drawing.Point(741, 3);
     this.pnlCNPJ.Name = "pnlCNPJ";
     this.pnlCNPJ.Size = new System.Drawing.Size(139, 49);
     this.pnlCNPJ.TabIndex = 7;
     //
     // cnpj
     //
     this.cnpj.Location = new System.Drawing.Point(13, 22);
     this.cnpj.Mask = "99\\.999\\.999/9999-99";
     this.cnpj.Name = "cnpj";
     this.cnpj.Size = new System.Drawing.Size(108, 20);
     this.cnpj.TabIndex = 25;
     this.cnpj.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(10, 6);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(34, 13);
     this.label37.TabIndex = 201;
     this.label37.Text = "CNPJ";
     //
     // codigo
     //
     this.codigo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.codigo.Location = new System.Drawing.Point(7, 30);
     this.codigo.Name = "codigo";
     this.codigo.ReadOnly = true;
     this.codigo.Size = new System.Drawing.Size(74, 20);
     this.codigo.TabIndex = 1;
     this.codigo.TabStop = false;
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Location = new System.Drawing.Point(4, 13);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(40, 13);
     this.label67.TabIndex = 175;
     this.label67.Text = "Codigo";
     //
     // tabControl1
     //
     this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     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.Controls.Add(this.tabPage6);
     this.tabControl1.Controls.Add(this.tabPage7);
     this.tabControl1.Location = new System.Drawing.Point(26, 89);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(1150, 546);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage5
     //
     this.tabPage5.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage5.Controls.Add(this.groupBox8);
     this.tabPage5.Location = new System.Drawing.Point(4, 25);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size = new System.Drawing.Size(1142, 517);
     this.tabPage5.TabIndex = 4;
     this.tabPage5.Text = "Benefícios";
     //
     // groupBox8
     //
     this.groupBox8.Controls.Add(this.beneficiosGridView);
     this.groupBox8.Location = new System.Drawing.Point(7, 6);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(1129, 508);
     this.groupBox8.TabIndex = 49;
     this.groupBox8.TabStop = false;
     //
     // beneficiosGridView
     //
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.beneficiosGridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle3;
     this.beneficiosGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.beneficiosGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.benTipoBeneficio,
     this.benNumero,
     this.benDIB,
     this.benSSCC,
     this.benDivisor,
     this.benMedia,
     this.benFP,
     this.benSB,
     this.benCC,
     this.benRMI,
     this.benTS});
     this.beneficiosGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.beneficiosGridView.Location = new System.Drawing.Point(6, 19);
     this.beneficiosGridView.Name = "beneficiosGridView";
     this.beneficiosGridView.Size = new System.Drawing.Size(1117, 483);
     this.beneficiosGridView.TabIndex = 22;
     //
     // benTipoBeneficio
     //
     this.benTipoBeneficio.DataPropertyName = "TipoBeneficio";
     this.benTipoBeneficio.HeaderText = "Tipo de Beneficio";
     this.benTipoBeneficio.Name = "benTipoBeneficio";
     this.benTipoBeneficio.Width = 125;
     //
     // benNumero
     //
     this.benNumero.DataPropertyName = "Numero";
     this.benNumero.HeaderText = "Nº Benefício";
     this.benNumero.Name = "benNumero";
     this.benNumero.Width = 85;
     //
     // benDIB
     //
     this.benDIB.DataPropertyName = "InicioBeneficio";
     this.benDIB.HeaderText = "DIB";
     this.benDIB.Name = "benDIB";
     this.benDIB.Width = 80;
     //
     // benSSCC
     //
     this.benSSCC.DataPropertyName = "SomaSalariosContribuicao";
     this.benSSCC.HeaderText = "SSCC";
     this.benSSCC.Name = "benSSCC";
     this.benSSCC.Width = 95;
     //
     // benDivisor
     //
     this.benDivisor.DataPropertyName = "Divisor";
     this.benDivisor.HeaderText = "Divisor";
     this.benDivisor.Name = "benDivisor";
     this.benDivisor.Width = 90;
     //
     // benMedia
     //
     this.benMedia.DataPropertyName = "Media";
     this.benMedia.HeaderText = "Média";
     this.benMedia.Name = "benMedia";
     //
     // benFP
     //
     this.benFP.DataPropertyName = "FatorPrevidenciario";
     this.benFP.HeaderText = "FP";
     this.benFP.Name = "benFP";
     //
     // benSB
     //
     this.benSB.DataPropertyName = "SalarioBeneficio";
     this.benSB.HeaderText = "SB";
     this.benSB.Name = "benSB";
     //
     // benCC
     //
     this.benCC.DataPropertyName = "CoeficienteCalculo";
     this.benCC.HeaderText = "CC";
     this.benCC.Name = "benCC";
     //
     // benRMI
     //
     this.benRMI.DataPropertyName = "RendaMensalInicial";
     this.benRMI.HeaderText = "RMI";
     this.benRMI.Name = "benRMI";
     //
     // benTS
     //
     this.benTS.DataPropertyName = "TempoContribuicao";
     this.benTS.HeaderText = "TS";
     this.benTS.Name = "benTS";
     //
     // tabPage6
     //
     this.tabPage6.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage6.Controls.Add(this.grupoGridView);
     this.tabPage6.Controls.Add(this.groupBox7);
     this.tabPage6.Location = new System.Drawing.Point(4, 25);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage6.Size = new System.Drawing.Size(1142, 517);
     this.tabPage6.TabIndex = 5;
     this.tabPage6.Text = "Grupo";
     //
     // grupoGridView
     //
     this.grupoGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grupoGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.grpNome});
     this.grupoGridView.Location = new System.Drawing.Point(18, 25);
     this.grupoGridView.Name = "grupoGridView";
     this.grupoGridView.Size = new System.Drawing.Size(397, 269);
     this.grupoGridView.TabIndex = 1;
     //
     // grpNome
     //
     this.grpNome.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.grpNome.DataPropertyName = "GrupoDiferencial";
     this.grpNome.HeaderText = "Nome do Grupo";
     this.grpNome.Name = "grpNome";
     //
     // groupBox7
     //
     this.groupBox7.Location = new System.Drawing.Point(7, 6);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(419, 294);
     this.groupBox7.TabIndex = 46;
     this.groupBox7.TabStop = false;
     //
     // tabPage7
     //
     this.tabPage7.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage7.Controls.Add(this.groupBox1);
     this.tabPage7.Controls.Add(this.groupBox6);
     this.tabPage7.Location = new System.Drawing.Point(4, 25);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage7.Size = new System.Drawing.Size(1142, 517);
     this.tabPage7.TabIndex = 6;
     this.tabPage7.Text = "Histórico de Atendimento";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.colorComboBox1);
     this.groupBox1.Controls.Add(this.buttonBar);
     this.groupBox1.Controls.Add(this.txtAtendimento);
     this.groupBox1.Location = new System.Drawing.Point(13, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(1117, 496);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Atendimento";
     //
     // colorComboBox1
     //
     this.colorComboBox1.DisplayMember = "Name";
     this.colorComboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.colorComboBox1.FormattingEnabled = true;
     this.colorComboBox1.Items.AddRange(new object[] {
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen"});
     this.colorComboBox1.Location = new System.Drawing.Point(815, 21);
     this.colorComboBox1.Name = "colorComboBox1";
     this.colorComboBox1.SelectedColor = System.Drawing.Color.Black;
     this.colorComboBox1.Size = new System.Drawing.Size(194, 21);
     this.colorComboBox1.TabIndex = 7;
     this.colorComboBox1.ValueMember = "Color";
     //
     // buttonBar
     //
     this.buttonBar.Location = new System.Drawing.Point(9, 20);
     this.buttonBar.Name = "buttonBar";
     this.buttonBar.Size = new System.Drawing.Size(813, 28);
     this.buttonBar.TabIndex = 5;
     this.buttonBar.Text = "buttonBar1";
     //
     // txtAtendimento
     //
     this.txtAtendimento.ButtonBar = this.buttonBar;
     this.txtAtendimento.Font = new System.Drawing.Font("Arial", 10F);
     this.txtAtendimento.HideSelection = false;
     this.txtAtendimento.Location = new System.Drawing.Point(9, 48);
     this.txtAtendimento.Name = "txtAtendimento";
     this.txtAtendimento.Size = new System.Drawing.Size(1102, 442);
     this.txtAtendimento.TabIndex = 4;
     //
     // groupBox6
     //
     this.groupBox6.Location = new System.Drawing.Point(7, 4);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(1129, 510);
     this.groupBox6.TabIndex = 3;
     this.groupBox6.TabStop = false;
     //
     // groupBox11
     //
     this.groupBox11.BackColor = System.Drawing.Color.WhiteSmoke;
     this.groupBox11.Controls.Add(this.btnSair);
     this.groupBox11.Controls.Add(this.label1);
     this.groupBox11.Controls.Add(this.btnCancelar);
     this.groupBox11.Controls.Add(this.codigoBusca);
     this.groupBox11.Controls.Add(this.btnSalvar);
     this.groupBox11.Controls.Add(this.btnPesquisar);
     this.groupBox11.Controls.Add(this.btnLimpar);
     this.groupBox11.Controls.Add(this.btnNovo);
     this.groupBox11.Controls.Add(this.btnExcluir);
     this.groupBox11.Controls.Add(this.btnPDF);
     this.groupBox11.Location = new System.Drawing.Point(12, 12);
     this.groupBox11.Name = "groupBox11";
     this.groupBox11.Size = new System.Drawing.Size(1176, 636);
     this.groupBox11.TabIndex = 0;
     this.groupBox11.TabStop = false;
     this.groupBox11.Text = "Cadastro de Cliente";
     //
     // btnSair
     //
     this.btnSair.Image = global::Visao.Properties.Resources.sair24;
     this.btnSair.Location = new System.Drawing.Point(264, 25);
     this.btnSair.Name = "btnSair";
     this.btnSair.Size = new System.Drawing.Size(35, 28);
     this.btnSair.TabIndex = 9;
     this.btnSair.UseVisualStyleBackColor = true;
     this.btnSair.Click += new System.EventHandler(this.button9_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.Image = global::Visao.Properties.Resources.canc24;
     this.btnCancelar.Location = new System.Drawing.Point(223, 25);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(35, 28);
     this.btnCancelar.TabIndex = 8;
     this.btnCancelar.UseVisualStyleBackColor = true;
     //
     // btnSalvar
     //
     this.btnSalvar.Image = global::Visao.Properties.Resources.conf24;
     this.btnSalvar.Location = new System.Drawing.Point(182, 25);
     this.btnSalvar.Name = "btnSalvar";
     this.btnSalvar.Size = new System.Drawing.Size(35, 28);
     this.btnSalvar.TabIndex = 7;
     this.btnSalvar.UseVisualStyleBackColor = true;
     //
     // btnPesquisar
     //
     this.btnPesquisar.Image = global::Visao.Properties.Resources.search_24x24;
     this.btnPesquisar.Location = new System.Drawing.Point(909, 25);
     this.btnPesquisar.Name = "btnPesquisar";
     this.btnPesquisar.Size = new System.Drawing.Size(35, 28);
     this.btnPesquisar.TabIndex = 2;
     this.btnPesquisar.UseVisualStyleBackColor = true;
     this.btnPesquisar.Visible = false;
     //
     // btnLimpar
     //
     this.btnLimpar.Image = global::Visao.Properties.Resources.limpar;
     this.btnLimpar.Location = new System.Drawing.Point(141, 25);
     this.btnLimpar.Name = "btnLimpar";
     this.btnLimpar.Size = new System.Drawing.Size(35, 28);
     this.btnLimpar.TabIndex = 6;
     this.btnLimpar.UseVisualStyleBackColor = true;
     //
     // btnNovo
     //
     this.btnNovo.Image = global::Visao.Properties.Resources.add24;
     this.btnNovo.Location = new System.Drawing.Point(18, 25);
     this.btnNovo.Name = "btnNovo";
     this.btnNovo.Size = new System.Drawing.Size(35, 28);
     this.btnNovo.TabIndex = 3;
     this.btnNovo.UseVisualStyleBackColor = true;
     //
     // btnExcluir
     //
     this.btnExcluir.Image = global::Visao.Properties.Resources.SairPrograma24x24;
     this.btnExcluir.Location = new System.Drawing.Point(100, 25);
     this.btnExcluir.Name = "btnExcluir";
     this.btnExcluir.Size = new System.Drawing.Size(35, 28);
     this.btnExcluir.TabIndex = 5;
     this.btnExcluir.UseVisualStyleBackColor = true;
     //
     // btnPDF
     //
     this.btnPDF.Image = global::Visao.Properties.Resources.pdf_24x24;
     this.btnPDF.Location = new System.Drawing.Point(59, 25);
     this.btnPDF.Name = "btnPDF";
     this.btnPDF.Size = new System.Drawing.Size(35, 28);
     this.btnPDF.TabIndex = 4;
     this.btnPDF.UseVisualStyleBackColor = true;
     //
     // menuGridView
     //
     this.menuGridView.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.removerLinhaContextButton});
     this.menuGridView.Name = "menuGridView";
     this.menuGridView.Size = new System.Drawing.Size(154, 26);
     //
     // removerLinhaContextButton
     //
     this.removerLinhaContextButton.Name = "removerLinhaContextButton";
     this.removerLinhaContextButton.Size = new System.Drawing.Size(153, 22);
     this.removerLinhaContextButton.Text = "&Remover Linha";
     //
     // CadastroCliente
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ClientSize = new System.Drawing.Size(1200, 722);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.groupBox11);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "CadastroCliente";
     this.ShowIcon = false;
     this.Text = "Cadastro de Clientes";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form1_Load);
     this.tabPage4.ResumeLayout(false);
     this.groupBox9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dependenteGridView)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.groupBox10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.contatoGridView)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.groupBox12.ResumeLayout(false);
     this.groupBox12.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.pnlCPF.ResumeLayout(false);
     this.pnlCPF.PerformLayout();
     this.pnlRG.ResumeLayout(false);
     this.pnlRG.PerformLayout();
     this.pnlOrgaoExpedidor.ResumeLayout(false);
     this.pnlOrgaoExpedidor.PerformLayout();
     this.pnlDataEmissao.ResumeLayout(false);
     this.pnlDataEmissao.PerformLayout();
     this.pnlTituloEleitor.ResumeLayout(false);
     this.pnlTituloEleitor.PerformLayout();
     this.pnlZona.ResumeLayout(false);
     this.pnlZona.PerformLayout();
     this.pnlSecao.ResumeLayout(false);
     this.pnlSecao.PerformLayout();
     this.pnlCNPJ.ResumeLayout(false);
     this.pnlCNPJ.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.tabPage5.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.beneficiosGridView)).EndInit();
     this.tabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grupoGridView)).EndInit();
     this.tabPage7.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox11.ResumeLayout(false);
     this.groupBox11.PerformLayout();
     this.menuGridView.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 18
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMenu));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
     this.btnHide = new System.Windows.Forms.Button();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabExport = new System.Windows.Forms.TabPage();
     this.panel5 = new System.Windows.Forms.Panel();
     this.dgListExport = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.panel4 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.txtPathExport = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.txtLastDateExport = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtLastTagExport = new System.Windows.Forms.TextBox();
     this.tabImport = new System.Windows.Forms.TabPage();
     this.panel7 = new System.Windows.Forms.Panel();
     this.dgListImport = new System.Windows.Forms.DataGridView();
     this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.panel6 = new System.Windows.Forms.Panel();
     this.label4 = new System.Windows.Forms.Label();
     this.txtPathImport = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txtLastDateImport = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtLastTagImport = new System.Windows.Forms.TextBox();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.button2 = new System.Windows.Forms.Button();
     this.lb000 = new System.Windows.Forms.ListBox();
     this.lb001 = new System.Windows.Forms.ListBox();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.button1 = new System.Windows.Forms.Button();
     this.picStatus = new System.Windows.Forms.PictureBox();
     this.lblStatus = new System.Windows.Forms.Label();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.cbAutoHide = new System.Windows.Forms.CheckBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.tabControl1.SuspendLayout();
     this.tabExport.SuspendLayout();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgListExport)).BeginInit();
     this.panel4.SuspendLayout();
     this.tabImport.SuspendLayout();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgListImport)).BeginInit();
     this.panel6.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picStatus)).BeginInit();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // notifyIcon1
     //
     this.notifyIcon1.Text = "Data Transfer";
     this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
     //
     // btnHide
     //
     this.btnHide.Image = ((System.Drawing.Image)(resources.GetObject("btnHide.Image")));
     this.btnHide.Location = new System.Drawing.Point(593, 7);
     this.btnHide.Name = "btnHide";
     this.btnHide.Size = new System.Drawing.Size(112, 48);
     this.btnHide.TabIndex = 0;
     this.btnHide.Text = "Sembunyikan";
     this.btnHide.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnHide.UseVisualStyleBackColor = true;
     this.btnHide.Click += new System.EventHandler(this.btnHide_Click);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabExport);
     this.tabControl1.Controls.Add(this.tabImport);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(827, 248);
     this.tabControl1.TabIndex = 1;
     //
     // tabExport
     //
     this.tabExport.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tabExport.Controls.Add(this.panel5);
     this.tabExport.Controls.Add(this.panel4);
     this.tabExport.Location = new System.Drawing.Point(4, 22);
     this.tabExport.Name = "tabExport";
     this.tabExport.Padding = new System.Windows.Forms.Padding(3);
     this.tabExport.Size = new System.Drawing.Size(819, 222);
     this.tabExport.TabIndex = 0;
     this.tabExport.Text = "Export";
     this.tabExport.UseVisualStyleBackColor = true;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.dgListExport);
     this.panel5.Location = new System.Drawing.Point(540, 41);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(200, 100);
     this.panel5.TabIndex = 1;
     //
     // dgListExport
     //
     this.dgListExport.AllowUserToAddRows = false;
     this.dgListExport.AllowUserToDeleteRows = false;
     this.dgListExport.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dgListExport.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dgListExport.BackgroundColor = System.Drawing.SystemColors.Window;
     this.dgListExport.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgListExport.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgListExport.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgListExport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgListExport.Location = new System.Drawing.Point(0, 0);
     this.dgListExport.Name = "dgListExport";
     this.dgListExport.Size = new System.Drawing.Size(200, 100);
     this.dgListExport.TabIndex = 30;
     //
     // Column1
     //
     this.Column1.HeaderText = "";
     this.Column1.Name = "Column1";
     this.Column1.Width = 5;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.label1);
     this.panel4.Controls.Add(this.txtPathExport);
     this.panel4.Controls.Add(this.label3);
     this.panel4.Controls.Add(this.txtLastDateExport);
     this.panel4.Controls.Add(this.label2);
     this.panel4.Controls.Add(this.txtLastTagExport);
     this.panel4.Location = new System.Drawing.Point(118, 84);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(378, 100);
     this.panel4.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(10, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(61, 13);
     this.label1.TabIndex = 11;
     this.label1.Text = "Path export";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // txtPathExport
     //
     this.txtPathExport.Location = new System.Drawing.Point(80, 6);
     this.txtPathExport.Name = "txtPathExport";
     this.txtPathExport.Size = new System.Drawing.Size(245, 20);
     this.txtPathExport.TabIndex = 10;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(138, 35);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(46, 13);
     this.label3.TabIndex = 15;
     this.label3.Text = "Tanggal";
     //
     // txtLastDateExport
     //
     this.txtLastDateExport.Location = new System.Drawing.Point(185, 32);
     this.txtLastDateExport.Name = "txtLastDateExport";
     this.txtLastDateExport.Size = new System.Drawing.Size(140, 20);
     this.txtLastDateExport.TabIndex = 14;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(10, 35);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(64, 13);
     this.label2.TabIndex = 13;
     this.label2.Text = "Tag terakhir";
     //
     // txtLastTagExport
     //
     this.txtLastTagExport.Location = new System.Drawing.Point(80, 32);
     this.txtLastTagExport.Name = "txtLastTagExport";
     this.txtLastTagExport.Size = new System.Drawing.Size(50, 20);
     this.txtLastTagExport.TabIndex = 12;
     //
     // tabImport
     //
     this.tabImport.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tabImport.Controls.Add(this.panel7);
     this.tabImport.Controls.Add(this.panel6);
     this.tabImport.Location = new System.Drawing.Point(4, 22);
     this.tabImport.Name = "tabImport";
     this.tabImport.Padding = new System.Windows.Forms.Padding(3);
     this.tabImport.Size = new System.Drawing.Size(819, 222);
     this.tabImport.TabIndex = 1;
     this.tabImport.Text = "Import";
     this.tabImport.UseVisualStyleBackColor = true;
     //
     // panel7
     //
     this.panel7.Controls.Add(this.dgListImport);
     this.panel7.Location = new System.Drawing.Point(530, 48);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(200, 100);
     this.panel7.TabIndex = 2;
     //
     // dgListImport
     //
     this.dgListImport.AllowUserToAddRows = false;
     this.dgListImport.AllowUserToDeleteRows = false;
     this.dgListImport.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dgListImport.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dgListImport.BackgroundColor = System.Drawing.SystemColors.Window;
     this.dgListImport.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgListImport.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewCheckBoxColumn1});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgListImport.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgListImport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgListImport.Location = new System.Drawing.Point(0, 0);
     this.dgListImport.Name = "dgListImport";
     this.dgListImport.Size = new System.Drawing.Size(200, 100);
     this.dgListImport.TabIndex = 30;
     //
     // dataGridViewCheckBoxColumn1
     //
     this.dataGridViewCheckBoxColumn1.HeaderText = "";
     this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
     this.dataGridViewCheckBoxColumn1.Width = 5;
     //
     // panel6
     //
     this.panel6.Controls.Add(this.label4);
     this.panel6.Controls.Add(this.txtPathImport);
     this.panel6.Controls.Add(this.label5);
     this.panel6.Controls.Add(this.txtLastDateImport);
     this.panel6.Controls.Add(this.label6);
     this.panel6.Controls.Add(this.txtLastTagImport);
     this.panel6.Location = new System.Drawing.Point(96, 100);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(378, 100);
     this.panel6.TabIndex = 1;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(10, 9);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(60, 13);
     this.label4.TabIndex = 11;
     this.label4.Text = "Path import";
     //
     // txtPathImport
     //
     this.txtPathImport.Location = new System.Drawing.Point(80, 6);
     this.txtPathImport.Name = "txtPathImport";
     this.txtPathImport.Size = new System.Drawing.Size(245, 20);
     this.txtPathImport.TabIndex = 10;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(138, 35);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(46, 13);
     this.label5.TabIndex = 15;
     this.label5.Text = "Tanggal";
     //
     // txtLastDateImport
     //
     this.txtLastDateImport.Location = new System.Drawing.Point(185, 32);
     this.txtLastDateImport.Name = "txtLastDateImport";
     this.txtLastDateImport.Size = new System.Drawing.Size(140, 20);
     this.txtLastDateImport.TabIndex = 14;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(10, 35);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(64, 13);
     this.label6.TabIndex = 13;
     this.label6.Text = "Tag terakhir";
     //
     // txtLastTagImport
     //
     this.txtLastTagImport.Location = new System.Drawing.Point(80, 32);
     this.txtLastTagImport.Name = "txtLastTagImport";
     this.txtLastTagImport.Size = new System.Drawing.Size(50, 20);
     this.txtLastTagImport.TabIndex = 12;
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Window;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(831, 313);
     this.panel1.TabIndex = 2;
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.button2);
     this.panel3.Controls.Add(this.lb000);
     this.panel3.Controls.Add(this.lb001);
     this.panel3.Controls.Add(this.linkLabel2);
     this.panel3.Controls.Add(this.button1);
     this.panel3.Controls.Add(this.picStatus);
     this.panel3.Controls.Add(this.lblStatus);
     this.panel3.Controls.Add(this.linkLabel1);
     this.panel3.Controls.Add(this.cbAutoHide);
     this.panel3.Controls.Add(this.btnHide);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 250);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(829, 61);
     this.panel3.TabIndex = 4;
     //
     // button2
     //
     this.button2.Image = ((System.Drawing.Image)(resources.GetObject("button2.Image")));
     this.button2.Location = new System.Drawing.Point(505, 9);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(82, 48);
     this.button2.TabIndex = 10;
     this.button2.Text = "Test";
     this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // lb000
     //
     this.lb000.FormattingEnabled = true;
     this.lb000.Items.AddRange(new object[] {
     "t_transfer_out_hdr",
     "s_stock_movement",
     "t_delivery_goods_hdr",
     "t_inventory_control_hdr",
     "t_inventory_controlu_hdr",
     "t_product_hdr",
     "t_purchase_order_hdr",
     "t_retur_purchase_hdr",
     "t_sales_order_hdr",
     "t_stock_adj_hdr",
     "t_transfer_in_hdr",
     "t_work_in_process_hdr",
     "t_goods_receipt_hdr",
     "s_stock_master",
     "t_req_stock_hdr"});
     this.lb000.Location = new System.Drawing.Point(485, 73);
     this.lb000.Name = "lb000";
     this.lb000.Size = new System.Drawing.Size(120, 95);
     this.lb000.TabIndex = 9;
     this.lb000.Visible = false;
     //
     // lb001
     //
     this.lb001.FormattingEnabled = true;
     this.lb001.Items.AddRange(new object[] {
     "m_brand",
     "m_category",
     "m_color",
     "m_customer",
     "m_customer_sub",
     "m_item",
     "m_organization",
     "m_size",
     "m_size_group",
     "m_style",
     "m_supplier",
     "m_uom",
     "m_valas",
     "m_basic_cp_mst",
     "m_basic_sp_mst",
     "m_basic_sp_mst_bak",
     "t_transfer_out_hdr",
     "cp_re_pricing",
     "sp_re_pricing",
     "m_gender"});
     this.lb001.Location = new System.Drawing.Point(359, 73);
     this.lb001.Name = "lb001";
     this.lb001.Size = new System.Drawing.Size(120, 95);
     this.lb001.TabIndex = 8;
     this.lb001.Visible = false;
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.Location = new System.Drawing.Point(372, 39);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(129, 13);
     this.linkLabel2.TabIndex = 7;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "Setting table export import";
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // button1
     //
     this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.Location = new System.Drawing.Point(711, 7);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(112, 48);
     this.button1.TabIndex = 6;
     this.button1.Text = "Tutup";
     this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // picStatus
     //
     this.picStatus.Image = ((System.Drawing.Image)(resources.GetObject("picStatus.Image")));
     this.picStatus.Location = new System.Drawing.Point(4, 38);
     this.picStatus.Name = "picStatus";
     this.picStatus.Size = new System.Drawing.Size(18, 17);
     this.picStatus.TabIndex = 5;
     this.picStatus.TabStop = false;
     //
     // lblStatus
     //
     this.lblStatus.AutoSize = true;
     this.lblStatus.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblStatus.Location = new System.Drawing.Point(28, 39);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(35, 13);
     this.lblStatus.TabIndex = 4;
     this.lblStatus.Text = "label1";
     this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Location = new System.Drawing.Point(269, 39);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(74, 13);
     this.linkLabel1.TabIndex = 3;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "Ubah Koneksi";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // cbAutoHide
     //
     this.cbAutoHide.AutoSize = true;
     this.cbAutoHide.Location = new System.Drawing.Point(4, 4);
     this.cbAutoHide.Name = "cbAutoHide";
     this.cbAutoHide.Size = new System.Drawing.Size(132, 17);
     this.cbAutoHide.TabIndex = 2;
     this.cbAutoHide.Text = "Sembunyikan otomatis";
     this.cbAutoHide.UseVisualStyleBackColor = true;
     this.cbAutoHide.CheckedChanged += new System.EventHandler(this.cbAutoHide_CheckedChanged);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.tabControl1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(829, 250);
     this.panel2.TabIndex = 3;
     //
     // timer2
     //
     this.timer2.Enabled = true;
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // frmMenu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(831, 313);
     this.ControlBox = false;
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmMenu";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = " ";
     this.Load += new System.EventHandler(this.frmMenu_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabExport.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgListExport)).EndInit();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.tabImport.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgListImport)).EndInit();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picStatus)).EndInit();
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </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();
     this.btnBatchDelete = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.btnBatchSave = new System.Windows.Forms.Button();
     this.btnRoleUser = new System.Windows.Forms.Button();
     this.btnRolePermission = new System.Windows.Forms.Button();
     this.ucTableSort = new DotNet.WinForm.Common.WinControls.UCTableSort();
     this.grdRole = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRealName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEnabled = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnExport = new System.Windows.Forms.Button();
     this.lblContents = new System.Windows.Forms.Label();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.lblRoleCategories = new System.Windows.Forms.Label();
     this.cmbRoleCategory = new System.Windows.Forms.ComboBox();
     this.btnFrmRoleTableScope = new System.Windows.Forms.Button();
     this.btnBatchPermission = new System.Windows.Forms.Button();
     this.btnRoleUserBatchSet = new System.Windows.Forms.Button();
     this.btnFrmRoleAuthorizationScope = new System.Windows.Forms.Button();
     this.btnFrmRoleAdminScope = new System.Windows.Forms.Button();
     this.btnFrmTableColumnPermission = new System.Windows.Forms.Button();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.grdRole)).BeginInit();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnBatchDelete
     //
     this.btnBatchDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchDelete.Enabled = false;
     this.btnBatchDelete.Location = new System.Drawing.Point(682, 483);
     this.btnBatchDelete.Name = "btnBatchDelete";
     this.btnBatchDelete.Size = new System.Drawing.Size(75, 23);
     this.btnBatchDelete.TabIndex = 16;
     this.btnBatchDelete.Text = "删除(&D)";
     this.btnBatchDelete.UseVisualStyleBackColor = true;
     this.btnBatchDelete.Click += new System.EventHandler(this.btnBatchDelete_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEdit.Enabled = false;
     this.btnEdit.Location = new System.Drawing.Point(327, 483);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(80, 23);
     this.btnEdit.TabIndex = 12;
     this.btnEdit.Text = "编辑(&E)...";
     this.btnEdit.UseVisualStyleBackColor = true;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(834, 483);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 18;
     this.btnClose.Text = "关闭";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Enabled = false;
     this.btnAdd.Location = new System.Drawing.Point(246, 483);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(80, 23);
     this.btnAdd.TabIndex = 11;
     this.btnAdd.Text = "添加(&A)...";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnBatchSave
     //
     this.btnBatchSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchSave.Enabled = false;
     this.btnBatchSave.Location = new System.Drawing.Point(758, 483);
     this.btnBatchSave.Name = "btnBatchSave";
     this.btnBatchSave.Size = new System.Drawing.Size(75, 23);
     this.btnBatchSave.TabIndex = 17;
     this.btnBatchSave.Text = "保存(&S)";
     this.btnBatchSave.UseVisualStyleBackColor = true;
     this.btnBatchSave.Click += new System.EventHandler(this.btnBatchSave_Click);
     //
     // btnRoleUser
     //
     this.btnRoleUser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRoleUser.Enabled = false;
     this.btnRoleUser.Location = new System.Drawing.Point(408, 483);
     this.btnRoleUser.Name = "btnRoleUser";
     this.btnRoleUser.Size = new System.Drawing.Size(80, 23);
     this.btnRoleUser.TabIndex = 13;
     this.btnRoleUser.Text = "用户(&U)...";
     this.btnRoleUser.UseVisualStyleBackColor = true;
     this.btnRoleUser.Click += new System.EventHandler(this.btnRoleUser_Click);
     //
     // btnRolePermission
     //
     this.btnRolePermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRolePermission.Enabled = false;
     this.btnRolePermission.Location = new System.Drawing.Point(489, 483);
     this.btnRolePermission.Name = "btnRolePermission";
     this.btnRolePermission.Size = new System.Drawing.Size(80, 23);
     this.btnRolePermission.TabIndex = 14;
     this.btnRolePermission.Text = "权限(&P)...";
     this.btnRolePermission.UseVisualStyleBackColor = true;
     this.btnRolePermission.Click += new System.EventHandler(this.btnPermission_Click);
     //
     // ucTableSort
     //
     this.ucTableSort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucTableSort.Location = new System.Drawing.Point(7, 481);
     this.ucTableSort.Margin = new System.Windows.Forms.Padding(0);
     this.ucTableSort.Name = "ucTableSort";
     this.ucTableSort.OEntityId = null;
     this.ucTableSort.Padding = new System.Windows.Forms.Padding(1);
     this.ucTableSort.SetBottomEnabled = false;
     this.ucTableSort.SetDownEnabled = false;
     this.ucTableSort.SetTopEnabled = false;
     this.ucTableSort.SetUpEnabled = false;
     this.ucTableSort.Size = new System.Drawing.Size(99, 24);
     this.ucTableSort.TabIndex = 10;
     //
     // grdRole
     //
     this.grdRole.AllowUserToAddRows = false;
     this.grdRole.AllowUserToDeleteRows = false;
     this.grdRole.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.grdRole.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdRole.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdRole.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdRole.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colCode,
     this.colRealName,
     this.colEnabled,
     this.colDescription});
     this.grdRole.Location = new System.Drawing.Point(7, 65);
     this.grdRole.MultiSelect = false;
     this.grdRole.Name = "grdRole";
     this.grdRole.RowTemplate.Height = 23;
     this.grdRole.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdRole.Size = new System.Drawing.Size(900, 411);
     this.grdRole.TabIndex = 9;
     this.grdRole.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdRole_CellDoubleClick);
     this.grdRole.SelectionChanged += new System.EventHandler(this.grdRole_SelectionChanged);
     this.grdRole.Sorted += new System.EventHandler(this.grdRole_Sorted);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Width = 50;
     //
     // colCode
     //
     this.colCode.DataPropertyName = "Code";
     this.colCode.HeaderText = "编号";
     this.colCode.MaxInputLength = 200;
     this.colCode.Name = "colCode";
     this.colCode.ReadOnly = true;
     this.colCode.Width = 180;
     //
     // colRealName
     //
     this.colRealName.DataPropertyName = "RealName";
     this.colRealName.HeaderText = "名称";
     this.colRealName.MaxInputLength = 200;
     this.colRealName.Name = "colRealName";
     this.colRealName.ReadOnly = true;
     this.colRealName.Width = 220;
     //
     // colEnabled
     //
     this.colEnabled.DataPropertyName = "Enabled";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     dataGridViewCellStyle2.NullValue = false;
     this.colEnabled.DefaultCellStyle = dataGridViewCellStyle2;
     this.colEnabled.FalseValue = "0";
     this.colEnabled.HeaderText = "有效";
     this.colEnabled.Name = "colEnabled";
     this.colEnabled.TrueValue = "1";
     this.colEnabled.Width = 80;
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "Description";
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.colDescription.DefaultCellStyle = dataGridViewCellStyle3;
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.Width = 300;
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Enabled = false;
     this.btnExport.Location = new System.Drawing.Point(570, 483);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(111, 23);
     this.btnExport.TabIndex = 15;
     this.btnExport.Text = "导出Excel...";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // lblContents
     //
     this.lblContents.Location = new System.Drawing.Point(30, 40);
     this.lblContents.Name = "lblContents";
     this.lblContents.Size = new System.Drawing.Size(89, 12);
     this.lblContents.TabIndex = 5;
     this.lblContents.Text = "查询内容(&C):";
     this.lblContents.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(124, 36);
     this.txtSearch.MaxLength = 20;
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(157, 21);
     this.txtSearch.TabIndex = 6;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // lblRoleCategories
     //
     this.lblRoleCategories.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblRoleCategories.Location = new System.Drawing.Point(672, 43);
     this.lblRoleCategories.Name = "lblRoleCategories";
     this.lblRoleCategories.Size = new System.Drawing.Size(110, 12);
     this.lblRoleCategories.TabIndex = 7;
     this.lblRoleCategories.Text = "角色分类:";
     this.lblRoleCategories.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmbRoleCategory
     //
     this.cmbRoleCategory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbRoleCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbRoleCategory.Location = new System.Drawing.Point(788, 39);
     this.cmbRoleCategory.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.cmbRoleCategory.Name = "cmbRoleCategory";
     this.cmbRoleCategory.Size = new System.Drawing.Size(118, 20);
     this.cmbRoleCategory.TabIndex = 8;
     this.cmbRoleCategory.SelectedIndexChanged += new System.EventHandler(this.cmbRoleCategory_SelectedIndexChanged);
     //
     // btnFrmRoleTableScope
     //
     this.btnFrmRoleTableScope.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFrmRoleTableScope.Enabled = false;
     this.btnFrmRoleTableScope.Location = new System.Drawing.Point(569, 3);
     this.btnFrmRoleTableScope.Name = "btnFrmRoleTableScope";
     this.btnFrmRoleTableScope.Size = new System.Drawing.Size(135, 23);
     this.btnFrmRoleTableScope.TabIndex = 2;
     this.btnFrmRoleTableScope.Text = "约束条件...";
     this.btnFrmRoleTableScope.UseVisualStyleBackColor = true;
     this.btnFrmRoleTableScope.Click += new System.EventHandler(this.btnFrmRoleOrganizeScope_Click);
     //
     // btnBatchPermission
     //
     this.btnBatchPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchPermission.Enabled = false;
     this.btnBatchPermission.Location = new System.Drawing.Point(146, 3);
     this.btnBatchPermission.Name = "btnBatchPermission";
     this.btnBatchPermission.Size = new System.Drawing.Size(135, 23);
     this.btnBatchPermission.TabIndex = 3;
     this.btnBatchPermission.Text = "批量设置权限...";
     this.btnBatchPermission.UseVisualStyleBackColor = true;
     this.btnBatchPermission.Visible = false;
     this.btnBatchPermission.Click += new System.EventHandler(this.btnBatchPermission_Click);
     //
     // btnRoleUserBatchSet
     //
     this.btnRoleUserBatchSet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRoleUserBatchSet.Enabled = false;
     this.btnRoleUserBatchSet.Location = new System.Drawing.Point(5, 3);
     this.btnRoleUserBatchSet.Name = "btnRoleUserBatchSet";
     this.btnRoleUserBatchSet.Size = new System.Drawing.Size(135, 23);
     this.btnRoleUserBatchSet.TabIndex = 4;
     this.btnRoleUserBatchSet.Text = "角色用户关联...";
     this.btnRoleUserBatchSet.UseVisualStyleBackColor = true;
     this.btnRoleUserBatchSet.Click += new System.EventHandler(this.btnRoleUserBatchSet_Click);
     //
     // btnFrmRoleAuthorizationScope
     //
     this.btnFrmRoleAuthorizationScope.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFrmRoleAuthorizationScope.Enabled = false;
     this.btnFrmRoleAuthorizationScope.Location = new System.Drawing.Point(710, 3);
     this.btnFrmRoleAuthorizationScope.Name = "btnFrmRoleAuthorizationScope";
     this.btnFrmRoleAuthorizationScope.Size = new System.Drawing.Size(135, 23);
     this.btnFrmRoleAuthorizationScope.TabIndex = 0;
     this.btnFrmRoleAuthorizationScope.Text = "角色授权范围...";
     this.btnFrmRoleAuthorizationScope.UseVisualStyleBackColor = true;
     this.btnFrmRoleAuthorizationScope.Click += new System.EventHandler(this.btnFrmRoleAuthorizationScope_Click);
     //
     // btnFrmRoleAdminScope
     //
     this.btnFrmRoleAdminScope.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFrmRoleAdminScope.Enabled = false;
     this.btnFrmRoleAdminScope.Location = new System.Drawing.Point(287, 3);
     this.btnFrmRoleAdminScope.Name = "btnFrmRoleAdminScope";
     this.btnFrmRoleAdminScope.Size = new System.Drawing.Size(135, 23);
     this.btnFrmRoleAdminScope.TabIndex = 1;
     this.btnFrmRoleAdminScope.Text = "角色管理范围...";
     this.btnFrmRoleAdminScope.UseVisualStyleBackColor = true;
     this.btnFrmRoleAdminScope.Click += new System.EventHandler(this.btnFrmRoleAdminScope_Click);
     //
     // btnFrmTableColumnPermission
     //
     this.btnFrmTableColumnPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFrmTableColumnPermission.Enabled = false;
     this.btnFrmTableColumnPermission.Location = new System.Drawing.Point(428, 3);
     this.btnFrmTableColumnPermission.Name = "btnFrmTableColumnPermission";
     this.btnFrmTableColumnPermission.Size = new System.Drawing.Size(135, 23);
     this.btnFrmTableColumnPermission.TabIndex = 19;
     this.btnFrmTableColumnPermission.Text = "表字段权限...";
     this.btnFrmTableColumnPermission.UseVisualStyleBackColor = true;
     this.btnFrmTableColumnPermission.Click += new System.EventHandler(this.btnFrmTableColumnPermission_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnFrmRoleAuthorizationScope);
     this.flowLayoutPanel1.Controls.Add(this.btnFrmRoleTableScope);
     this.flowLayoutPanel1.Controls.Add(this.btnFrmTableColumnPermission);
     this.flowLayoutPanel1.Controls.Add(this.btnFrmRoleAdminScope);
     this.flowLayoutPanel1.Controls.Add(this.btnBatchPermission);
     this.flowLayoutPanel1.Controls.Add(this.btnRoleUserBatchSet);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(62, 3);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(848, 29);
     this.flowLayoutPanel1.TabIndex = 20;
     //
     // FrmRolePermissionAdmin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(915, 510);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.cmbRoleCategory);
     this.Controls.Add(this.lblRoleCategories);
     this.Controls.Add(this.lblContents);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.ucTableSort);
     this.Controls.Add(this.btnBatchSave);
     this.Controls.Add(this.btnRolePermission);
     this.Controls.Add(this.btnRoleUser);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.grdRole);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnBatchDelete);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmRolePermissionAdmin";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "角色权限管理";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmRoleAdmin_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.grdRole)).EndInit();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 20
0
 public FrmInsertText(Framework.Entity.Chapter chapter, object type)
 {
     InitializeComponent();
     @class       = type;
     templateList = contentService.GetContentTemplateByTitle(chapter.Title);
     foreach (Framework.Entity.Template template in templateList)
     {
         if (template.Title == "冬期施工措施" | template.Title == "越冬工程的维护" | template.Title == "桩基工程" | template.Title == "屋面及防水施工方案")
         {
             tempInsertText = template;
         }
     }
     if (@class.GetType().Equals(new Framework.Model.InsertTextWinterMeasure().GetType()))
     {
         this.Text = "冬期施工措施";
         System.Windows.Forms.DataGridViewCheckBoxColumn colState = new System.Windows.Forms.DataGridViewCheckBoxColumn(true);
         colState.ThreeState = false;
         colState.Width      = 30;
         DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colName = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
         colName.HeaderText = "冬期施工措施";
         colName.Width      = 475;
         DataGridView.Columns.Add(colState);
         DataGridView.Columns.Add(colName);
     }
     else if (@class.GetType().Equals(new Framework.Model.InsertTextWinterMaintain().GetType()))
     {
         this.Text = "越冬工程的维护";
         System.Windows.Forms.DataGridViewCheckBoxColumn colState = new System.Windows.Forms.DataGridViewCheckBoxColumn(true);
         colState.ThreeState = false;
         colState.Width      = 30;
         DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colName = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
         colName.HeaderText = "越冬工程的维护";
         colName.Width      = 475;
         DataGridView.Columns.Add(colState);
         DataGridView.Columns.Add(colName);
     }
     else if (@class.GetType().Equals(new Framework.Model.InsertTextPileProject().GetType()))
     {
         this.Text = "常用桩基的施工方案";
         System.Windows.Forms.DataGridViewCheckBoxColumn colState = new System.Windows.Forms.DataGridViewCheckBoxColumn(true);
         colState.ThreeState = false;
         colState.Width      = 30;
         DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colName = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
         colName.HeaderText = "桩基施工方案";
         colName.Width      = 475;
         DataGridView.Columns.Add(colState);
         DataGridView.Columns.Add(colName);
     }
     else if (@class.GetType().Equals(new Framework.Model.InsertTextRoof().GetType()))
     {
         this.Text = "屋面及防水施工方案";
         System.Windows.Forms.DataGridViewCheckBoxColumn colState = new System.Windows.Forms.DataGridViewCheckBoxColumn(true);
         colState.ThreeState = false;
         colState.Width      = 30;
         DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colName = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
         colName.HeaderText = "屋面的做法";
         colName.Width      = 475;
         DataGridView.Columns.Add(colState);
         DataGridView.Columns.Add(colName);
     }
 }
 /// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_linea));
     this.gridlinea = new System.Windows.Forms.DataGridView();
     this.glineaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glineaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gestructuraid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctaalmacen = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctaconsumo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctavarexist = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctacargaimput = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.moduloid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._nostock = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.nostock = new DevExpress.XtraEditors.RadioGroup();
     this.estructuraid = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.lineaid = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.lineaname = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.fechadoc = new System.Windows.Forms.DateTimePicker();
     this.label16 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = 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.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_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.btn_busqueda = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.txt_criterio = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.gridlinea)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nostock.Properties)).BeginInit();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridlinea
     //
     this.gridlinea.AllowUserToAddRows = false;
     this.gridlinea.AllowUserToDeleteRows = false;
     this.gridlinea.AllowUserToResizeColumns = false;
     this.gridlinea.AllowUserToResizeRows = false;
     this.gridlinea.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.gridlinea.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.gridlinea.ColumnHeadersHeight = 20;
     this.gridlinea.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.glineaid,
     this.glineaname,
     this.gestructuraid,
     this.usuar,
     this.feact,
     this.fecre,
     this.ctaalmacen,
     this.ctaconsumo,
     this.ctavarexist,
     this.ctacargaimput,
     this.moduloid,
     this._nostock});
     this.gridlinea.Location = new System.Drawing.Point(4, 238);
     this.gridlinea.MultiSelect = false;
     this.gridlinea.Name = "gridlinea";
     this.gridlinea.RowHeadersVisible = false;
     this.gridlinea.RowHeadersWidth = 10;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridlinea.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.gridlinea.RowTemplate.Height = 20;
     this.gridlinea.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridlinea.Size = new System.Drawing.Size(422, 295);
     this.gridlinea.TabIndex = 19;
     this.gridlinea.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridlinea_CellClick);
     this.gridlinea.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridlinea_CellEnter);
     this.gridlinea.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridlinea_CellLeave);
     this.gridlinea.KeyUp += new System.Windows.Forms.KeyEventHandler(this.gridlinea_KeyUp);
     //
     // glineaid
     //
     this.glineaid.DataPropertyName = "lineaid";
     this.glineaid.HeaderText = "Código";
     this.glineaid.Name = "glineaid";
     this.glineaid.Width = 50;
     //
     // glineaname
     //
     this.glineaname.DataPropertyName = "lineaname";
     this.glineaname.HeaderText = "Línea";
     this.glineaname.Name = "glineaname";
     this.glineaname.Width = 300;
     //
     // gestructuraid
     //
     this.gestructuraid.DataPropertyName = "estructuraid";
     this.gestructuraid.HeaderText = "estructura";
     this.gestructuraid.Name = "gestructuraid";
     this.gestructuraid.Visible = false;
     this.gestructuraid.Width = 70;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "fecre";
     this.fecre.Name = "fecre";
     this.fecre.Visible = false;
     //
     // ctaalmacen
     //
     this.ctaalmacen.DataPropertyName = "ctaalmacen";
     this.ctaalmacen.HeaderText = "ctaalmacen";
     this.ctaalmacen.Name = "ctaalmacen";
     this.ctaalmacen.Visible = false;
     //
     // ctaconsumo
     //
     this.ctaconsumo.DataPropertyName = "ctaconsumo";
     this.ctaconsumo.HeaderText = "ctaconsumo";
     this.ctaconsumo.Name = "ctaconsumo";
     this.ctaconsumo.Visible = false;
     //
     // ctavarexist
     //
     this.ctavarexist.DataPropertyName = "ctavarexist";
     this.ctavarexist.HeaderText = "ctavarexist";
     this.ctavarexist.Name = "ctavarexist";
     this.ctavarexist.Visible = false;
     //
     // ctacargaimput
     //
     this.ctacargaimput.DataPropertyName = "ctacargaimput";
     this.ctacargaimput.HeaderText = "ctacargaimput";
     this.ctacargaimput.Name = "ctacargaimput";
     this.ctacargaimput.Visible = false;
     //
     // moduloid
     //
     this.moduloid.DataPropertyName = "moduloid";
     this.moduloid.HeaderText = "Modulo";
     this.moduloid.Name = "moduloid";
     this.moduloid.Visible = false;
     //
     // _nostock
     //
     this._nostock.DataPropertyName = "nostock";
     this._nostock.HeaderText = "NoStock";
     this._nostock.Name = "_nostock";
     this._nostock.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._nostock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._nostock.Width = 50;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.nostock);
     this.groupBox1.Controls.Add(this.estructuraid);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.lineaid);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.lineaname);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Location = new System.Drawing.Point(4, 69);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(422, 114);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Datos";
     //
     // nostock
     //
     this.nostock.EditValue = true;
     this.nostock.Location = new System.Drawing.Point(91, 84);
     this.nostock.Name = "nostock";
     this.nostock.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "Controla Stock"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "No Controla Stock")});
     this.nostock.Size = new System.Drawing.Size(243, 24);
     this.nostock.TabIndex = 15;
     //
     // estructuraid
     //
     this.estructuraid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.estructuraid.FormattingEnabled = true;
     this.estructuraid.Location = new System.Drawing.Point(91, 60);
     this.estructuraid.Name = "estructuraid";
     this.estructuraid.Size = new System.Drawing.Size(225, 21);
     this.estructuraid.TabIndex = 14;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(8, 63);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(69, 13);
     this.label3.TabIndex = 13;
     this.label3.Text = "Estructura:";
     //
     // lineaid
     //
     this.lineaid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lineaid.Location = new System.Drawing.Point(91, 16);
     this.lineaid.MaxLength = 3;
     this.lineaid.Name = "lineaid";
     this.lineaid.Size = new System.Drawing.Size(48, 20);
     this.lineaid.TabIndex = 11;
     this.lineaid.Text = "ventas al exterior";
     //
     // 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(8, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(44, 13);
     this.label1.TabIndex = 10;
     this.label1.Text = "Línea:";
     //
     // lineaname
     //
     this.lineaname.Location = new System.Drawing.Point(91, 37);
     this.lineaname.Name = "lineaname";
     this.lineaname.Size = new System.Drawing.Size(225, 21);
     this.lineaname.TabIndex = 12;
     this.lineaname.Text = "ventas al exterior";
     //
     // label2
     //
     this.label2.AutoSize = true;
     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(8, 19);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(50, 13);
     this.label2.TabIndex = 9;
     this.label2.Text = "Código:";
     //
     // fechadoc
     //
     this.fechadoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechadoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechadoc.Location = new System.Drawing.Point(339, 5);
     this.fechadoc.Name = "fechadoc";
     this.fechadoc.Size = new System.Drawing.Size(80, 20);
     this.fechadoc.TabIndex = 4;
     this.fechadoc.Value = new System.DateTime(2012, 12, 19, 0, 0, 0, 0);
     //
     // 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(291, 11);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 3;
     this.label16.Text = "Fecha";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.fechadoc);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(426, 34);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(163, 5);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(82, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "LINEAS";
     //
     // Botonera
     //
     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.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_clave,
     this.btn_log,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(430, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     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_undo2;
     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 = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     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 = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // 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_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 = "toolStripButton1";
     this.btn_clave.ToolTipText = "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 = "toolStripButton16";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_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);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.btn_busqueda);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.txt_criterio);
     this.groupBox2.Location = new System.Drawing.Point(4, 185);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(420, 49);
     this.groupBox2.TabIndex = 21;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Buscar";
     //
     // btn_busqueda
     //
     this.btn_busqueda.BackColor = System.Drawing.Color.Transparent;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_busqueda.Image = global::BapFormulariosNet.Properties.Resources.go_search3;
     this.btn_busqueda.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_busqueda.Location = new System.Drawing.Point(324, 12);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(79, 33);
     this.btn_busqueda.TabIndex = 18;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_busqueda.UseVisualStyleBackColor = false;
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // 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.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(8, 22);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(66, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "Descripción:";
     //
     // txt_criterio
     //
     this.txt_criterio.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_criterio.Location = new System.Drawing.Point(75, 19);
     this.txt_criterio.MaxLength = 0;
     this.txt_criterio.Name = "txt_criterio";
     this.txt_criterio.Size = new System.Drawing.Size(242, 21);
     this.txt_criterio.TabIndex = 17;
     this.txt_criterio.TextChanged += new System.EventHandler(this.txt_criterio_TextChanged);
     this.txt_criterio.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     //
     // Frm_linea
     //
     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(430, 534);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.gridlinea);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_linea";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento de Lineas";
     this.Load += new System.EventHandler(this.Frm_linea_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_linea_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.gridlinea)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nostock.Properties)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 22
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoleModulesAssignment));
     this.btnFind = new System.Windows.Forms.ToolStripButton();
     this.btnDelete = new System.Windows.Forms.ToolStripButton();
     this.btnEdit = new System.Windows.Forms.ToolStripButton();
     this.btnSave = new System.Windows.Forms.ToolStripButton();
     this.btnNew = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.btnCancel = new System.Windows.Forms.ToolStripButton();
     this.label1 = new System.Windows.Forms.Label();
     this.txtId = new System.Windows.Forms.TextBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.cboRoles = new System.Windows.Forms.ComboBox();
     this.dgItems = new System.Windows.Forms.DataGridView();
     this.dtlId = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtlModuleId = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtlModule = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtlCanAdd = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dtlCanEdit = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dtlCanSave = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dtlCanDelete = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dtlCanSearch = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dtlCanPrint = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dtlCanExport = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dtlCanAccess = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.btnAddRow = new System.Windows.Forms.ToolStripButton();
     this.btnRemoveRow = new System.Windows.Forms.ToolStripButton();
     this.btnCopyFrom = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCheckAll = new System.Windows.Forms.ToolStripButton();
     this.btnUncheckAll = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgItems)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnFind
     //
     this.btnFind.Image = ((System.Drawing.Image)(resources.GetObject("btnFind.Image")));
     this.btnFind.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnFind.Name = "btnFind";
     this.btnFind.Size = new System.Drawing.Size(61, 24);
     this.btnFind.Text = "&Find";
     //
     // btnDelete
     //
     this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
     this.btnDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(77, 24);
     this.btnDelete.Text = "Delete";
     //
     // btnEdit
     //
     this.btnEdit.Image = ((System.Drawing.Image)(resources.GetObject("btnEdit.Image")));
     this.btnEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(59, 24);
     this.btnEdit.Text = "Edit";
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(64, 24);
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnNew
     //
     this.btnNew.Image = ((System.Drawing.Image)(resources.GetObject("btnNew.Image")));
     this.btnNew.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(63, 24);
     this.btnNew.Text = "New";
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.CountItem = null;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnNew,
     this.btnSave,
     this.btnEdit,
     this.btnDelete,
     this.btnCancel,
     this.btnFind});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 0);
     this.bindingNavigator1.MoveFirstItem = null;
     this.bindingNavigator1.MoveLastItem = null;
     this.bindingNavigator1.MoveNextItem = null;
     this.bindingNavigator1.MovePreviousItem = null;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.PositionItem = null;
     this.bindingNavigator1.Size = new System.Drawing.Size(1103, 27);
     this.bindingNavigator1.TabIndex = 10;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // btnCancel
     //
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(77, 24);
     this.btnCancel.Text = "Cancel";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(35, 26);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(43, 23);
     this.label1.TabIndex = 4;
     this.label1.Text = "Role";
     //
     // txtId
     //
     this.txtId.Location = new System.Drawing.Point(154, 23);
     this.txtId.Name = "txtId";
     this.txtId.Size = new System.Drawing.Size(67, 30);
     this.txtId.TabIndex = 0;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Location = new System.Drawing.Point(0, 27);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.cboRoles);
     this.splitContainer1.Panel1.Controls.Add(this.label1);
     this.splitContainer1.Panel1.Controls.Add(this.txtId);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.dgItems);
     this.splitContainer1.Panel2.Controls.Add(this.toolStrip1);
     this.splitContainer1.Panel2.Padding = new System.Windows.Forms.Padding(5, 2, 5, 2);
     this.splitContainer1.Size = new System.Drawing.Size(1103, 620);
     this.splitContainer1.SplitterDistance = 83;
     this.splitContainer1.TabIndex = 11;
     //
     // cboRoles
     //
     this.cboRoles.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboRoles.FormattingEnabled = true;
     this.cboRoles.Location = new System.Drawing.Point(83, 23);
     this.cboRoles.Name = "cboRoles";
     this.cboRoles.Size = new System.Drawing.Size(357, 31);
     this.cboRoles.TabIndex = 5;
     this.cboRoles.SelectedValueChanged += new System.EventHandler(this.cboRoles_SelectedValueChanged);
     //
     // dgItems
     //
     this.dgItems.AllowUserToAddRows = false;
     this.dgItems.AllowUserToDeleteRows = false;
     this.dgItems.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dgItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgItems.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dtlId,
     this.dtlModuleId,
     this.dtlModule,
     this.dtlCanAdd,
     this.dtlCanEdit,
     this.dtlCanSave,
     this.dtlCanDelete,
     this.dtlCanSearch,
     this.dtlCanPrint,
     this.dtlCanExport,
     this.dtlCanAccess});
     this.dgItems.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgItems.Location = new System.Drawing.Point(5, 29);
     this.dgItems.Name = "dgItems";
     this.dgItems.RowHeadersWidth = 51;
     this.dgItems.RowTemplate.Height = 24;
     this.dgItems.Size = new System.Drawing.Size(1093, 502);
     this.dgItems.TabIndex = 1;
     //
     // dtlId
     //
     this.dtlId.HeaderText = "Id";
     this.dtlId.MinimumWidth = 6;
     this.dtlId.Name = "dtlId";
     this.dtlId.Visible = false;
     this.dtlId.Width = 125;
     //
     // dtlModuleId
     //
     this.dtlModuleId.HeaderText = "ModuleId";
     this.dtlModuleId.MinimumWidth = 6;
     this.dtlModuleId.Name = "dtlModuleId";
     this.dtlModuleId.Visible = false;
     this.dtlModuleId.Width = 125;
     //
     // dtlModule
     //
     this.dtlModule.HeaderText = "Module";
     this.dtlModule.MinimumWidth = 6;
     this.dtlModule.Name = "dtlModule";
     this.dtlModule.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dtlModule.Width = 190;
     //
     // dtlCanAdd
     //
     this.dtlCanAdd.FalseValue = "0";
     this.dtlCanAdd.HeaderText = "Can Add";
     this.dtlCanAdd.MinimumWidth = 6;
     this.dtlCanAdd.Name = "dtlCanAdd";
     this.dtlCanAdd.TrueValue = "1";
     this.dtlCanAdd.Width = 90;
     //
     // dtlCanEdit
     //
     this.dtlCanEdit.FalseValue = "0";
     this.dtlCanEdit.HeaderText = "Can Edit";
     this.dtlCanEdit.MinimumWidth = 6;
     this.dtlCanEdit.Name = "dtlCanEdit";
     this.dtlCanEdit.TrueValue = "1";
     this.dtlCanEdit.Width = 90;
     //
     // dtlCanSave
     //
     this.dtlCanSave.FalseValue = "0";
     this.dtlCanSave.HeaderText = "Can Save";
     this.dtlCanSave.MinimumWidth = 6;
     this.dtlCanSave.Name = "dtlCanSave";
     this.dtlCanSave.TrueValue = "1";
     this.dtlCanSave.Width = 90;
     //
     // dtlCanDelete
     //
     this.dtlCanDelete.FalseValue = "0";
     this.dtlCanDelete.HeaderText = "Can Delete";
     this.dtlCanDelete.MinimumWidth = 6;
     this.dtlCanDelete.Name = "dtlCanDelete";
     this.dtlCanDelete.TrueValue = "1";
     this.dtlCanDelete.Width = 110;
     //
     // dtlCanSearch
     //
     this.dtlCanSearch.FalseValue = "0";
     this.dtlCanSearch.HeaderText = "Can Search";
     this.dtlCanSearch.MinimumWidth = 6;
     this.dtlCanSearch.Name = "dtlCanSearch";
     this.dtlCanSearch.TrueValue = "1";
     this.dtlCanSearch.Width = 110;
     //
     // dtlCanPrint
     //
     this.dtlCanPrint.FalseValue = "0";
     this.dtlCanPrint.HeaderText = "Can Print";
     this.dtlCanPrint.MinimumWidth = 6;
     this.dtlCanPrint.Name = "dtlCanPrint";
     this.dtlCanPrint.TrueValue = "1";
     this.dtlCanPrint.Width = 90;
     //
     // dtlCanExport
     //
     this.dtlCanExport.FalseValue = "0";
     this.dtlCanExport.HeaderText = "Can Export";
     this.dtlCanExport.MinimumWidth = 6;
     this.dtlCanExport.Name = "dtlCanExport";
     this.dtlCanExport.TrueValue = "1";
     this.dtlCanExport.Width = 125;
     //
     // dtlCanAccess
     //
     this.dtlCanAccess.FalseValue = "0";
     this.dtlCanAccess.HeaderText = "Can Access";
     this.dtlCanAccess.MinimumWidth = 6;
     this.dtlCanAccess.Name = "dtlCanAccess";
     this.dtlCanAccess.TrueValue = "1";
     this.dtlCanAccess.Width = 110;
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnAddRow,
     this.btnRemoveRow,
     this.btnCopyFrom,
     this.toolStripSeparator2,
     this.toolStripSeparator1,
     this.btnCheckAll,
     this.btnUncheckAll});
     this.toolStrip1.Location = new System.Drawing.Point(5, 2);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1093, 27);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text = "toolStrip1";
     //
     // btnAddRow
     //
     this.btnAddRow.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddRow.Image = ((System.Drawing.Image)(resources.GetObject("btnAddRow.Image")));
     this.btnAddRow.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAddRow.Name = "btnAddRow";
     this.btnAddRow.Size = new System.Drawing.Size(94, 24);
     this.btnAddRow.Text = "Add Row";
     this.btnAddRow.Click += new System.EventHandler(this.btnAddRow_Click);
     //
     // btnRemoveRow
     //
     this.btnRemoveRow.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRemoveRow.Image = ((System.Drawing.Image)(resources.GetObject("btnRemoveRow.Image")));
     this.btnRemoveRow.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRemoveRow.Name = "btnRemoveRow";
     this.btnRemoveRow.Size = new System.Drawing.Size(120, 24);
     this.btnRemoveRow.Text = "Remove Row";
     this.btnRemoveRow.Click += new System.EventHandler(this.btnRemoveRow_Click);
     //
     // btnCopyFrom
     //
     this.btnCopyFrom.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCopyFrom.Image = ((System.Drawing.Image)(resources.GetObject("btnCopyFrom.Image")));
     this.btnCopyFrom.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCopyFrom.Name = "btnCopyFrom";
     this.btnCopyFrom.Size = new System.Drawing.Size(105, 24);
     this.btnCopyFrom.Text = "Copy From";
     this.btnCopyFrom.Click += new System.EventHandler(this.btnCopyFrom_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 27);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 27);
     //
     // btnCheckAll
     //
     this.btnCheckAll.Image = ((System.Drawing.Image)(resources.GetObject("btnCheckAll.Image")));
     this.btnCheckAll.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCheckAll.Name = "btnCheckAll";
     this.btnCheckAll.Size = new System.Drawing.Size(94, 24);
     this.btnCheckAll.Text = "Check All";
     this.btnCheckAll.Click += new System.EventHandler(this.btnCheckAll_Click);
     //
     // btnUncheckAll
     //
     this.btnUncheckAll.Image = ((System.Drawing.Image)(resources.GetObject("btnUncheckAll.Image")));
     this.btnUncheckAll.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnUncheckAll.Name = "btnUncheckAll";
     this.btnUncheckAll.Size = new System.Drawing.Size(110, 24);
     this.btnUncheckAll.Text = "Uncheck All";
     this.btnUncheckAll.Click += new System.EventHandler(this.btnUncheckAll_Click);
     //
     // RoleModulesAssignment
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 23F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1103, 647);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.bindingNavigator1);
     this.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "RoleModulesAssignment";
     this.Text = "Roles Module Assignment";
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgItems)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     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.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.name = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Collide = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Type = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ItemTemplate = new Microsoft.VisualBasic.PowerPacks.DataRepeaterItem();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.name,
     this.Collide,
     this.Type});
     this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView1.Location = new System.Drawing.Point(0, 0);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ShowEditingIcon = false;
     this.dataGridView1.Size = new System.Drawing.Size(497, 304);
     this.dataGridView1.TabIndex = 0;
     this.dataGridView1.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellEndEdit);
     this.dataGridView1.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView1_CellValidating);
     //
     // name
     //
     this.name.HeaderText = "Name";
     this.name.Name = "name";
     this.name.ReadOnly = true;
     //
     // Collide
     //
     this.Collide.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.Collide.HeaderText = "Collide";
     this.Collide.Name = "Collide";
     //
     // Type
     //
     this.Type.HeaderText = "Type";
     this.Type.MaxInputLength = 4;
     this.Type.Name = "Type";
     //
     // ItemTemplate
     //
     this.ItemTemplate.Size = new System.Drawing.Size(232, 100);
     //
     // KCLCollisionTypeSelector
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(497, 304);
     this.Controls.Add(this.dataGridView1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "KCLCollisionTypeSelector";
     this.Text = "Collision Type Selector";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.kclType_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.kclType_FormClosed);
     this.Load += new System.EventHandler(this.kclType_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 24
0
 /// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ActionForm));
     this.dataGridViewActions = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column6 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column7 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column8 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column9 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column10 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column11 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column12 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column13 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column14 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column15 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column16 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column17 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column18 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column19 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column20 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column21 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column22 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column23 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column24 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column25 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column26 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column27 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Column28 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewActions)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewActions
     //
     this.dataGridViewActions.AllowUserToAddRows = false;
     this.dataGridViewActions.AllowUserToDeleteRows = false;
     this.dataGridViewActions.AllowUserToOrderColumns = true;
     this.dataGridViewActions.AllowUserToResizeRows = false;
     this.dataGridViewActions.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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.dataGridViewActions.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewActions.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewActions.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column3,
     this.Column4,
     this.Column5,
     this.Column6,
     this.Column7,
     this.Column8,
     this.Column9,
     this.Column10,
     this.Column11,
     this.Column12,
     this.Column13,
     this.Column14,
     this.Column15,
     this.Column16,
     this.Column17,
     this.Column18,
     this.Column19,
     this.Column20,
     this.Column21,
     this.Column22,
     this.Column23,
     this.Column24,
     this.Column25,
     this.Column26,
     this.Column27,
     this.Column28});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewActions.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewActions.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridViewActions.EnableHeadersVisualStyles = false;
     this.dataGridViewActions.Location = new System.Drawing.Point(0, 0);
     this.dataGridViewActions.Margin = new System.Windows.Forms.Padding(0);
     this.dataGridViewActions.Name = "dataGridViewActions";
     this.dataGridViewActions.RowHeadersVisible = false;
     this.dataGridViewActions.RowTemplate.Height = 20;
     this.dataGridViewActions.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.dataGridViewActions.Size = new System.Drawing.Size(1061, 453);
     this.dataGridViewActions.TabIndex = 3;
     //
     // Column1
     //
     this.Column1.FillWeight = 600F;
     this.Column1.HeaderText = "Name";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     //
     // Column2
     //
     this.Column2.FillWeight = 300F;
     this.Column2.HeaderText = "Value";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     //
     // Column3
     //
     this.Column3.FillWeight = 200F;
     this.Column3.HeaderText = "Group";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     //
     // Column4
     //
     this.Column4.FillWeight = 300F;
     this.Column4.HeaderText = "Group Name";
     this.Column4.Name = "Column4";
     this.Column4.ReadOnly = true;
     //
     // Column5
     //
     this.Column5.FillWeight = 200F;
     this.Column5.HeaderText = "Id";
     this.Column5.Name = "Column5";
     this.Column5.ReadOnly = true;
     //
     // Column6
     //
     this.Column6.HeaderText = "09 Stationary";
     this.Column6.Name = "Column6";
     this.Column6.ReadOnly = true;
     this.Column6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column7
     //
     this.Column7.HeaderText = "10 Moving";
     this.Column7.Name = "Column7";
     this.Column7.ReadOnly = true;
     this.Column7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column8
     //
     this.Column8.HeaderText = "11 Airborne";
     this.Column8.Name = "Column8";
     this.Column8.ReadOnly = true;
     this.Column8.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column9
     //
     this.Column9.HeaderText = "12 Intangible";
     this.Column9.Name = "Column9";
     this.Column9.ReadOnly = true;
     this.Column9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column10
     //
     this.Column10.HeaderText = "13 Swimming";
     this.Column10.Name = "Column10";
     this.Column10.ReadOnly = true;
     this.Column10.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column11
     //
     this.Column11.HeaderText = "14 Metal Water";
     this.Column11.Name = "Column11";
     this.Column11.ReadOnly = true;
     this.Column11.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column12
     //
     this.Column12.HeaderText = "15 Short Hitbox";
     this.Column12.Name = "Column12";
     this.Column12.ReadOnly = true;
     this.Column12.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column13
     //
     this.Column13.HeaderText = "16 Riding Shell";
     this.Column13.Name = "Column13";
     this.Column13.ReadOnly = true;
     this.Column13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column14
     //
     this.Column14.HeaderText = "17 Invulnerable";
     this.Column14.Name = "Column14";
     this.Column14.ReadOnly = true;
     this.Column14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column15
     //
     this.Column15.HeaderText = "18 Butt/ Stomach Slide";
     this.Column15.Name = "Column15";
     this.Column15.ReadOnly = true;
     this.Column15.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column16
     //
     this.Column16.HeaderText = "19 Diving";
     this.Column16.Name = "Column16";
     this.Column16.ReadOnly = true;
     this.Column16.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column17
     //
     this.Column17.HeaderText = "20 On Pole";
     this.Column17.Name = "Column17";
     this.Column17.ReadOnly = true;
     this.Column17.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column18
     //
     this.Column18.HeaderText = "21 Hanging";
     this.Column18.Name = "Column18";
     this.Column18.ReadOnly = true;
     this.Column18.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column19
     //
     this.Column19.HeaderText = "22 Idle";
     this.Column19.Name = "Column19";
     this.Column19.ReadOnly = true;
     this.Column19.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column20
     //
     this.Column20.HeaderText = "23 Attacking";
     this.Column20.Name = "Column20";
     this.Column20.ReadOnly = true;
     this.Column20.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column21
     //
     this.Column21.HeaderText = "24 Interruptable by Wind";
     this.Column21.Name = "Column21";
     this.Column21.ReadOnly = true;
     this.Column21.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column22
     //
     this.Column22.HeaderText = "25 Control Jump Height";
     this.Column22.Name = "Column22";
     this.Column22.ReadOnly = true;
     this.Column22.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column23
     //
     this.Column23.HeaderText = "26 Allow First Person";
     this.Column23.Name = "Column23";
     this.Column23.ReadOnly = true;
     this.Column23.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column24
     //
     this.Column24.HeaderText = "27 Pause Exit";
     this.Column24.Name = "Column24";
     this.Column24.ReadOnly = true;
     this.Column24.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column25
     //
     this.Column25.HeaderText = "28 Swimming/ Flying";
     this.Column25.Name = "Column25";
     this.Column25.ReadOnly = true;
     this.Column25.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column26
     //
     this.Column26.HeaderText = "29 Water/ Text";
     this.Column26.Name = "Column26";
     this.Column26.ReadOnly = true;
     this.Column26.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column27
     //
     this.Column27.HeaderText = "30 (Never)";
     this.Column27.Name = "Column27";
     this.Column27.ReadOnly = true;
     this.Column27.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // Column28
     //
     this.Column28.HeaderText = "31 Throwing";
     this.Column28.Name = "Column28";
     this.Column28.ReadOnly = true;
     this.Column28.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // ActionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1061, 453);
     this.Controls.Add(this.dataGridViewActions);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MaximumSize = new System.Drawing.Size(10000, 10000);
     this.MinimizeBox = false;
     this.Name = "ActionForm";
     this.ShowIcon = false;
     this.Text = "Action Form";
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewActions)).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();
     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>
        /// Initializes a new instance of the <see cref="StateProvinceDataGridViewBase"/> class.
        /// </summary>
        public StateProvinceDataGridViewBase()
        {
            this.components = new System.ComponentModel.Container();

            this.uxStateProvinceDataGridView                 = new System.Windows.Forms.DataGridView();
            this.uxStateProvinceBindingSource                = new System.Windows.Forms.BindingSource(this.components);
            this.uxStateProvinceErrorProvider                = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxStateProvinceIdDataGridViewColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxStateProvinceCodeDataGridViewColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxCountryRegionCodeDataGridViewColumn       = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.uxIsOnlyStateProvinceFlagDataGridViewColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.uxNameDataGridViewColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxTerritoryIdDataGridViewColumn  = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.uxRowguidDataGridViewColumn      = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxModifiedDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            //this.uxCountryRegionCodeBindingSource = new CountryRegionBindingSource(this.components);
            //((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCodeBindingSource)).BeginInit();
            //this.uxTerritoryIdBindingSource = new SalesTerritoryBindingSource(this.components);
            //((System.ComponentModel.ISupportInitialize)(this.uxTerritoryIdBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxStateProvinceDataGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxStateProvinceBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxStateProvinceErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxStateProvinceErrorProvider
            //
            this.uxStateProvinceErrorProvider.ContainerControl = this;
            this.uxStateProvinceErrorProvider.DataSource       = this.uxStateProvinceBindingSource;
            //
            // uxStateProvinceDataGridView
            //
            this.uxStateProvinceDataGridView.AutoGenerateColumns         = false;
            this.uxStateProvinceDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.uxStateProvinceDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
                this.uxStateProvinceIdDataGridViewColumn,
                this.uxStateProvinceCodeDataGridViewColumn,
                this.uxCountryRegionCodeDataGridViewColumn,
                this.uxIsOnlyStateProvinceFlagDataGridViewColumn,
                this.uxNameDataGridViewColumn,
                this.uxTerritoryIdDataGridViewColumn,
                this.uxRowguidDataGridViewColumn,
                this.uxModifiedDateDataGridViewColumn
            });
            this.uxStateProvinceDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
            this.uxStateProvinceDataGridView.Location                  = new System.Drawing.Point(0, 0);
            this.uxStateProvinceDataGridView.Name                      = "uxStateProvinceDataGridView";
            this.uxStateProvinceDataGridView.Size                      = new System.Drawing.Size(470, 300);
            this.uxStateProvinceDataGridView.TabIndex                  = 0;
            this.uxStateProvinceDataGridView.BackgroundColor           = System.Drawing.Color.WhiteSmoke;
            this.uxStateProvinceDataGridView.EnableHeadersVisualStyles = false;
            this.uxStateProvinceDataGridView.DataError                += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnStateProvinceDataGridViewDataError);
            this.uxStateProvinceDataGridView.CellValueNeeded          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnStateProvinceDataGridViewCellValueNeeded);
            this.uxStateProvinceDataGridView.CellValuePushed          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnStateProvinceDataGridViewCellValuePushed);

            //
            // uxStateProvinceIdDataGridViewColumn
            //
            this.uxStateProvinceIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxStateProvinceIdDataGridViewColumn.DataPropertyName = "StateProvinceId";
            this.uxStateProvinceIdDataGridViewColumn.HeaderText       = "StateProvinceId";
            this.uxStateProvinceIdDataGridViewColumn.Name             = "uxStateProvinceIdDataGridViewColumn";
            this.uxStateProvinceIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxStateProvinceIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxStateProvinceIdDataGridViewColumn.ReadOnly         = true;
            //
            // uxStateProvinceCodeDataGridViewColumn
            //
            this.uxStateProvinceCodeDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxStateProvinceCodeDataGridViewColumn.DataPropertyName = "StateProvinceCode";
            this.uxStateProvinceCodeDataGridViewColumn.HeaderText       = "StateProvinceCode";
            this.uxStateProvinceCodeDataGridViewColumn.Name             = "uxStateProvinceCodeDataGridViewColumn";
            this.uxStateProvinceCodeDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxStateProvinceCodeDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxStateProvinceCodeDataGridViewColumn.ReadOnly         = false;
            //
            // uxCountryRegionCodeDataGridViewColumn
            //
            this.uxCountryRegionCodeDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxCountryRegionCodeDataGridViewColumn.DataPropertyName = "CountryRegionCode";
            this.uxCountryRegionCodeDataGridViewColumn.HeaderText       = "CountryRegionCode";
            this.uxCountryRegionCodeDataGridViewColumn.Name             = "uxCountryRegionCodeDataGridViewColumn";
            this.uxCountryRegionCodeDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxCountryRegionCodeDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxCountryRegionCodeDataGridViewColumn.ReadOnly         = false;
            //
            // uxIsOnlyStateProvinceFlagDataGridViewColumn
            //
            this.uxIsOnlyStateProvinceFlagDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxIsOnlyStateProvinceFlagDataGridViewColumn.DataPropertyName = "IsOnlyStateProvinceFlag";
            this.uxIsOnlyStateProvinceFlagDataGridViewColumn.HeaderText       = "IsOnlyStateProvinceFlag";
            this.uxIsOnlyStateProvinceFlagDataGridViewColumn.Name             = "uxIsOnlyStateProvinceFlagDataGridViewColumn";
            this.uxIsOnlyStateProvinceFlagDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxIsOnlyStateProvinceFlagDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxIsOnlyStateProvinceFlagDataGridViewColumn.ReadOnly         = false;
            //
            // uxNameDataGridViewColumn
            //
            this.uxNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxNameDataGridViewColumn.DataPropertyName = "Name";
            this.uxNameDataGridViewColumn.HeaderText       = "Name";
            this.uxNameDataGridViewColumn.Name             = "uxNameDataGridViewColumn";
            this.uxNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxTerritoryIdDataGridViewColumn
            //
            this.uxTerritoryIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxTerritoryIdDataGridViewColumn.DataPropertyName = "TerritoryId";
            this.uxTerritoryIdDataGridViewColumn.HeaderText       = "TerritoryId";
            this.uxTerritoryIdDataGridViewColumn.Name             = "uxTerritoryIdDataGridViewColumn";
            this.uxTerritoryIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxTerritoryIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxTerritoryIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxRowguidDataGridViewColumn
            //
            this.uxRowguidDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxRowguidDataGridViewColumn.DataPropertyName = "Rowguid";
            this.uxRowguidDataGridViewColumn.HeaderText       = "Rowguid";
            this.uxRowguidDataGridViewColumn.Name             = "uxRowguidDataGridViewColumn";
            this.uxRowguidDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxRowguidDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxRowguidDataGridViewColumn.ReadOnly         = true;
            //
            // uxModifiedDateDataGridViewColumn
            //
            this.uxModifiedDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.HeaderText       = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.Name             = "uxModifiedDateDataGridViewColumn";
            this.uxModifiedDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxModifiedDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxModifiedDateDataGridViewColumn.ReadOnly         = false;
            //
            // uxCountryRegionCodeDataGridViewColumn
            //
            this.uxCountryRegionCodeDataGridViewColumn.DisplayMember = "Name";
            this.uxCountryRegionCodeDataGridViewColumn.ValueMember   = "CountryRegionCode";
            this.uxCountryRegionCodeDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
            //uxCountryRegionCodeDataGridViewColumn.DataSource = uxCountryRegionCodeBindingSource;

            //
            // uxTerritoryIdDataGridViewColumn
            //
            this.uxTerritoryIdDataGridViewColumn.DisplayMember = "Name";
            this.uxTerritoryIdDataGridViewColumn.ValueMember   = "TerritoryId";
            this.uxTerritoryIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
            //uxTerritoryIdDataGridViewColumn.DataSource = uxTerritoryIdBindingSource;


            // this
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.uxStateProvinceDataGridView);
            this.Name = "StateProvinceDataGridView";
            this.Size = new System.Drawing.Size(470, 300);
            //((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCodeBindingSource)).EndInit();
            //((System.ComponentModel.ISupportInitialize)(this.uxTerritoryIdBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxStateProvinceErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxStateProvinceDataGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxStateProvinceBindingSource)).EndInit();
            this.ResumeLayout(false);
        }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </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();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnConfirm = new System.Windows.Forms.Button();
     this.tcResource = new System.Windows.Forms.TabControl();
     this.tpRole = new System.Windows.Forms.TabPage();
     this.grdRole = new System.Windows.Forms.DataGridView();
     this.colRoleSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tpUser = new System.Windows.Forms.TabPage();
     this.grdUser = new System.Windows.Forms.DataGridView();
     this.colUserSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRealName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lblTargetResource = new System.Windows.Forms.Label();
     this.lblPermissionItem = new System.Windows.Forms.Label();
     this.lblPermissionItemName = new System.Windows.Forms.Label();
     this.lblTargetResourceName = new System.Windows.Forms.Label();
     this.tcResource.SuspendLayout();
     this.tpRole.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdRole)).BeginInit();
     this.tpUser.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).BeginInit();
     this.SuspendLayout();
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Location = new System.Drawing.Point(92, 490);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(78, 23);
     this.btnInvertSelect.TabIndex = 6;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Location = new System.Drawing.Point(6, 490);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(78, 23);
     this.btnSelectAll.TabIndex = 5;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(519, 490);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 8;
     this.btnCancel.Text = "取消";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnConfirm
     //
     this.btnConfirm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnConfirm.Location = new System.Drawing.Point(437, 490);
     this.btnConfirm.Name = "btnConfirm";
     this.btnConfirm.Size = new System.Drawing.Size(75, 23);
     this.btnConfirm.TabIndex = 7;
     this.btnConfirm.Text = "保存(&S)";
     this.btnConfirm.UseVisualStyleBackColor = true;
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // tcResource
     //
     this.tcResource.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.tcResource.Controls.Add(this.tpRole);
     this.tcResource.Controls.Add(this.tpUser);
     this.tcResource.Location = new System.Drawing.Point(6, 70);
     this.tcResource.Name = "tcResource";
     this.tcResource.SelectedIndex = 0;
     this.tcResource.Size = new System.Drawing.Size(590, 414);
     this.tcResource.TabIndex = 4;
     //
     // tpRole
     //
     this.tpRole.Controls.Add(this.grdRole);
     this.tpRole.Location = new System.Drawing.Point(4, 22);
     this.tpRole.Name = "tpRole";
     this.tpRole.Padding = new System.Windows.Forms.Padding(3);
     this.tpRole.Size = new System.Drawing.Size(582, 388);
     this.tpRole.TabIndex = 1;
     this.tpRole.Text = "角色";
     this.tpRole.UseVisualStyleBackColor = true;
     //
     // grdRole
     //
     this.grdRole.AllowUserToAddRows = false;
     this.grdRole.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.AliceBlue;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(168)))), ((int)(((byte)(168)))), ((int)(((byte)(255)))));
     this.grdRole.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.grdRole.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     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.grdRole.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdRole.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdRole.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colRoleSelected,
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2});
     this.grdRole.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdRole.Location = new System.Drawing.Point(3, 3);
     this.grdRole.MultiSelect = false;
     this.grdRole.Name = "grdRole";
     this.grdRole.RowTemplate.Height = 23;
     this.grdRole.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdRole.Size = new System.Drawing.Size(576, 382);
     this.grdRole.TabIndex = 3;
     //
     // colRoleSelected
     //
     this.colRoleSelected.DataPropertyName = "Selected";
     this.colRoleSelected.Frozen = true;
     this.colRoleSelected.HeaderText = "选择";
     this.colRoleSelected.Name = "colRoleSelected";
     this.colRoleSelected.Width = 50;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "RealName";
     this.dataGridViewTextBoxColumn1.HeaderText = "名称";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Width = 250;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.DataPropertyName = "Description";
     this.dataGridViewTextBoxColumn2.HeaderText = "描述";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     this.dataGridViewTextBoxColumn2.Width = 205;
     //
     // tpUser
     //
     this.tpUser.BackColor = System.Drawing.Color.Transparent;
     this.tpUser.Controls.Add(this.grdUser);
     this.tpUser.Location = new System.Drawing.Point(4, 22);
     this.tpUser.Name = "tpUser";
     this.tpUser.Padding = new System.Windows.Forms.Padding(3);
     this.tpUser.Size = new System.Drawing.Size(582, 388);
     this.tpUser.TabIndex = 0;
     this.tpUser.Text = "用户";
     this.tpUser.UseVisualStyleBackColor = true;
     //
     // grdUser
     //
     this.grdUser.AllowUserToAddRows = false;
     this.grdUser.AllowUserToDeleteRows = false;
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.AliceBlue;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(168)))), ((int)(((byte)(168)))), ((int)(((byte)(255)))));
     this.grdUser.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle3;
     this.grdUser.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     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.grdUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4;
     this.grdUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colUserSelected,
     this.colUserName,
     this.colRealName,
     this.colDescription});
     this.grdUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdUser.Location = new System.Drawing.Point(3, 3);
     this.grdUser.MultiSelect = false;
     this.grdUser.Name = "grdUser";
     this.grdUser.RowTemplate.Height = 23;
     this.grdUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdUser.Size = new System.Drawing.Size(576, 382);
     this.grdUser.TabIndex = 2;
     //
     // colUserSelected
     //
     this.colUserSelected.DataPropertyName = "Selected";
     this.colUserSelected.Frozen = true;
     this.colUserSelected.HeaderText = "选择";
     this.colUserSelected.Name = "colUserSelected";
     this.colUserSelected.Width = 50;
     //
     // colUserName
     //
     this.colUserName.DataPropertyName = "UserName";
     this.colUserName.HeaderText = "用戶";
     this.colUserName.Name = "colUserName";
     this.colUserName.ReadOnly = true;
     this.colUserName.Width = 150;
     //
     // colRealName
     //
     this.colRealName.DataPropertyName = "RealName";
     this.colRealName.HeaderText = "姓名";
     this.colRealName.Name = "colRealName";
     this.colRealName.ReadOnly = true;
     this.colRealName.Width = 150;
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "Description";
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.ReadOnly = true;
     this.colDescription.Width = 150;
     //
     // lblTargetResource
     //
     this.lblTargetResource.Location = new System.Drawing.Point(13, 9);
     this.lblTargetResource.Name = "lblTargetResource";
     this.lblTargetResource.Size = new System.Drawing.Size(128, 12);
     this.lblTargetResource.TabIndex = 0;
     this.lblTargetResource.Text = "当前资源:";
     this.lblTargetResource.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblPermissionItem
     //
     this.lblPermissionItem.Location = new System.Drawing.Point(10, 40);
     this.lblPermissionItem.Name = "lblPermissionItem";
     this.lblPermissionItem.Size = new System.Drawing.Size(131, 12);
     this.lblPermissionItem.TabIndex = 2;
     this.lblPermissionItem.Text = "操作权限:";
     this.lblPermissionItem.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblPermissionItemName
     //
     this.lblPermissionItemName.AutoSize = true;
     this.lblPermissionItemName.Location = new System.Drawing.Point(147, 40);
     this.lblPermissionItemName.Name = "lblPermissionItemName";
     this.lblPermissionItemName.Size = new System.Drawing.Size(53, 12);
     this.lblPermissionItemName.TabIndex = 3;
     this.lblPermissionItemName.Text = "管理权限";
     this.lblPermissionItemName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblTargetResourceName
     //
     this.lblTargetResourceName.AutoSize = true;
     this.lblTargetResourceName.Location = new System.Drawing.Point(147, 9);
     this.lblTargetResourceName.Name = "lblTargetResourceName";
     this.lblTargetResourceName.Size = new System.Drawing.Size(35, 12);
     this.lblTargetResourceName.TabIndex = 1;
     this.lblTargetResourceName.Text = "资源A";
     this.lblTargetResourceName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // FrmResourceSetPermission
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(602, 519);
     this.Controls.Add(this.lblPermissionItemName);
     this.Controls.Add(this.lblTargetResourceName);
     this.Controls.Add(this.lblPermissionItem);
     this.Controls.Add(this.lblTargetResource);
     this.Controls.Add(this.tcResource);
     this.Controls.Add(this.btnInvertSelect);
     this.Controls.Add(this.btnSelectAll);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnConfirm);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmResourceSetPermission";
     this.Text = "资源权限设置";
     this.tcResource.ResumeLayout(false);
     this.tpRole.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdRole)).EndInit();
     this.tpUser.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 28
0
        void AddGuiListTemplate(int userId)
        {
            try
            {
                DataTable dtUserGuiList = null;


                dtGuiList.Rows.Clear();
                dtGuiList.Columns.Clear();
                if (wgrid.dataGridView1.DataSource != null)
                {
                    wgrid.dataGridView1.Columns.Clear();
                    wgrid.dataGridView1.DataSource = null;
                }

                dtGuiList.Columns.Add("AccessKey");
                dtGuiList.Columns.Add("GUI");

                DataRow drowCustDetail = dtGuiList.NewRow();
                drowCustDetail["AccessKey"] = "guiCustDetail";
                drowCustDetail["GUI"]       = "Customer Details";
                dtGuiList.Rows.Add(drowCustDetail);

                DataRow drowDemoMode = dtGuiList.NewRow();
                drowDemoMode["AccessKey"] = "guiDemoMode";
                drowDemoMode["GUI"]       = "Demo Mode";
                dtGuiList.Rows.Add(drowDemoMode);

                DataRow drowAllowSlotTypeChange = dtGuiList.NewRow();
                drowAllowSlotTypeChange["AccessKey"] = "guiAllowSlotTypeChange";
                drowAllowSlotTypeChange["GUI"]       = "Allow Slot Type Change";
                dtGuiList.Rows.Add(drowAllowSlotTypeChange);

                //DataRow drowAllowConfigAccess = dtGuiList.NewRow();
                //drowAllowConfigAccess["AccessKey"] = "guiAllowConfigAccess";
                //drowAllowConfigAccess["GUI"] = "Allow Config Access";
                //dtGuiList.Rows.Add(drowAllowConfigAccess);


                wgrid.dataGridView1.DataSource = dtGuiList;


                System.Windows.Forms.DataGridViewCheckBoxColumn chkRead = new System.Windows.Forms.DataGridViewCheckBoxColumn();
                chkRead.Name       = "Read";
                chkRead.HeaderText = "Read";
                chkRead.Tag        = "Read";
                wgrid.dataGridView1.Columns.Add(chkRead);

                System.Windows.Forms.DataGridViewCheckBoxColumn chkWrite = new System.Windows.Forms.DataGridViewCheckBoxColumn();
                chkWrite.Name       = "Write";
                chkWrite.HeaderText = "Write";
                chkWrite.Tag        = "Write";
                wgrid.dataGridView1.Columns.Add(chkWrite);

                wgrid.dataGridView1.Columns[0].Visible = false;

                if (userId > 0)
                {
                    dtUserGuiList = GetAuthenticatedGUI(userId);
                }

                if (dtUserGuiList != null && dtUserGuiList.Rows.Count > 0)
                {
                    DataRow[] drowlst = null;
                    foreach (System.Windows.Forms.DataGridViewRow dgvrow in wgrid.dataGridView1.Rows)
                    {
                        drowlst = dtUserGuiList.Select("Access_Key = '" + Convert.ToString(dgvrow.Cells["AccessKey"].Value) + "'");
                        if (drowlst != null && drowlst.Length > 0)
                        {
                            dgvrow.Cells["Read"].Value  = Convert.ToInt32(drowlst[0].ItemArray.GetValue(2));
                            dgvrow.Cells["Write"].Value = Convert.ToInt32(drowlst[0].ItemArray.GetValue(3));
                        }
                    }
                }
            }
            finally { }
        }
 /// <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 dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_AfectacionesAFPs));
     this.toolbar = new System.Windows.Forms.ToolStrip();
     this.btnmod = new System.Windows.Forms.ToolStripButton();
     this.btngrabar = new System.Windows.Forms.ToolStripButton();
     this.btncancelar = new System.Windows.Forms.ToolStripButton();
     this.btnload = new System.Windows.Forms.ToolStripButton();
     this.btncerrar = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.ToolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.GroupBox6 = new System.Windows.Forms.GroupBox();
     this.btnEliminarFila = new System.Windows.Forms.Button();
     this.btnNuevaFila = new System.Windows.Forms.Button();
     this.Examinar = new System.Windows.Forms.DataGridView();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.Label5 = new System.Windows.Forms.Label();
     this.spnperiodo = new System.Windows.Forms.NumericUpDown();
     this.cboTipoplanilla = new System.Windows.Forms.ComboBox();
     this.cboMes = new System.Windows.Forms.ComboBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.Label2 = new System.Windows.Forms.Label();
     this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.rubroid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rubroname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.afecto = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.toolbar.SuspendLayout();
     this.GroupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Examinar)).BeginInit();
     this.GroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spnperiodo)).BeginInit();
     this.SuspendLayout();
     //
     // toolbar
     //
     this.toolbar.AutoSize = false;
     this.toolbar.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.toolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnmod,
     this.btngrabar,
     this.btncancelar,
     this.btnload,
     this.btncerrar,
     this.toolStripButton1,
     this.ToolStripSeparator1});
     this.toolbar.Location = new System.Drawing.Point(0, 0);
     this.toolbar.Name = "toolbar";
     this.toolbar.Size = new System.Drawing.Size(482, 31);
     this.toolbar.TabIndex = 8;
     this.toolbar.Text = "ToolStrip1";
     //
     // btnmod
     //
     this.btnmod.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnmod.Image = global::BapFormulariosNet.Properties.Resources.btn_editar;
     this.btnmod.Name = "btnmod";
     this.btnmod.Size = new System.Drawing.Size(26, 28);
     this.btnmod.Text = "Editar";
     this.btnmod.Click += new System.EventHandler(this.btnmod_Click);
     //
     // btngrabar
     //
     this.btngrabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btngrabar.Image = global::BapFormulariosNet.Properties.Resources.btn_grabar;
     this.btngrabar.Name = "btngrabar";
     this.btngrabar.Size = new System.Drawing.Size(26, 28);
     this.btngrabar.Text = "Guardar";
     this.btngrabar.Click += new System.EventHandler(this.btngrabar_Click);
     //
     // btncancelar
     //
     this.btncancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btncancelar.Image = global::BapFormulariosNet.Properties.Resources.btn_cancelar;
     this.btncancelar.Name = "btncancelar";
     this.btncancelar.Size = new System.Drawing.Size(26, 28);
     this.btncancelar.Text = "Deshacer";
     this.btncancelar.Click += new System.EventHandler(this.btncancelar_Click);
     //
     // btnload
     //
     this.btnload.AutoSize = false;
     this.btnload.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnload.Image = global::BapFormulariosNet.Properties.Resources.btn_refresh;
     this.btnload.Name = "btnload";
     this.btnload.Size = new System.Drawing.Size(30, 30);
     this.btnload.Text = "Actualizar";
     this.btnload.Click += new System.EventHandler(this.btnload_Click);
     //
     // btncerrar
     //
     this.btncerrar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btncerrar.Image = global::BapFormulariosNet.Properties.Resources.btn_salir;
     this.btncerrar.Name = "btncerrar";
     this.btncerrar.Size = new System.Drawing.Size(26, 28);
     this.btncerrar.Text = "Salir";
     this.btncerrar.Click += new System.EventHandler(this.btncerrar_Click);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = global::BapFormulariosNet.Properties.Resources.ojo32;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(26, 28);
     this.toolStripButton1.Text = "toolStripButton1";
     //
     // ToolStripSeparator1
     //
     this.ToolStripSeparator1.Name = "ToolStripSeparator1";
     this.ToolStripSeparator1.Size = new System.Drawing.Size(6, 31);
     //
     // GroupBox6
     //
     this.GroupBox6.Controls.Add(this.btnEliminarFila);
     this.GroupBox6.Controls.Add(this.btnNuevaFila);
     this.GroupBox6.Location = new System.Drawing.Point(12, 399);
     this.GroupBox6.Name = "GroupBox6";
     this.GroupBox6.Size = new System.Drawing.Size(191, 45);
     this.GroupBox6.TabIndex = 11;
     this.GroupBox6.TabStop = false;
     //
     // btnEliminarFila
     //
     this.btnEliminarFila.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnEliminarFila.Image = global::BapFormulariosNet.Properties.Resources.btn_del20;
     this.btnEliminarFila.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnEliminarFila.Location = new System.Drawing.Point(97, 10);
     this.btnEliminarFila.Name = "btnEliminarFila";
     this.btnEliminarFila.Size = new System.Drawing.Size(86, 29);
     this.btnEliminarFila.TabIndex = 1;
     this.btnEliminarFila.Text = "&Borrar Fila";
     this.btnEliminarFila.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnEliminarFila.UseVisualStyleBackColor = true;
     this.btnEliminarFila.Click += new System.EventHandler(this.btnEliminarFila_Click);
     //
     // btnNuevaFila
     //
     this.btnNuevaFila.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNuevaFila.Image = global::BapFormulariosNet.Properties.Resources.btn_add20;
     this.btnNuevaFila.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnNuevaFila.Location = new System.Drawing.Point(6, 10);
     this.btnNuevaFila.Name = "btnNuevaFila";
     this.btnNuevaFila.Size = new System.Drawing.Size(86, 29);
     this.btnNuevaFila.TabIndex = 0;
     this.btnNuevaFila.Text = "&Nueva Fila";
     this.btnNuevaFila.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnNuevaFila.UseVisualStyleBackColor = true;
     this.btnNuevaFila.Click += new System.EventHandler(this.btnNuevaFila_Click);
     //
     // Examinar
     //
     this.Examinar.AllowUserToAddRows = false;
     this.Examinar.AllowUserToDeleteRows = false;
     this.Examinar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.Examinar.ColumnHeadersHeight = 30;
     this.Examinar.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.rubroid,
     this.rubroname,
     this.afecto});
     this.Examinar.Location = new System.Drawing.Point(12, 124);
     this.Examinar.MultiSelect = false;
     this.Examinar.Name = "Examinar";
     this.Examinar.ReadOnly = true;
     this.Examinar.RowHeadersWidth = 24;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Examinar.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.Examinar.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.Examinar.ShowRowErrors = false;
     this.Examinar.Size = new System.Drawing.Size(458, 277);
     this.Examinar.TabIndex = 10;
     this.Examinar.SelectionChanged += new System.EventHandler(this.Examinar_SelectionChanged);
     //
     // GroupBox1
     //
     this.GroupBox1.Controls.Add(this.Label5);
     this.GroupBox1.Controls.Add(this.spnperiodo);
     this.GroupBox1.Controls.Add(this.cboTipoplanilla);
     this.GroupBox1.Controls.Add(this.cboMes);
     this.GroupBox1.Controls.Add(this.Label1);
     this.GroupBox1.Controls.Add(this.Label2);
     this.GroupBox1.Location = new System.Drawing.Point(12, 29);
     this.GroupBox1.Name = "GroupBox1";
     this.GroupBox1.Size = new System.Drawing.Size(457, 92);
     this.GroupBox1.TabIndex = 9;
     this.GroupBox1.TabStop = false;
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label5.Location = new System.Drawing.Point(35, 19);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(43, 13);
     this.Label5.TabIndex = 0;
     this.Label5.Text = "Periodo";
     //
     // spnperiodo
     //
     this.spnperiodo.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.spnperiodo.Location = new System.Drawing.Point(84, 12);
     this.spnperiodo.Maximum = new decimal(new int[] {
     2090,
     0,
     0,
     0});
     this.spnperiodo.Minimum = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.spnperiodo.Name = "spnperiodo";
     this.spnperiodo.Size = new System.Drawing.Size(68, 26);
     this.spnperiodo.TabIndex = 1;
     this.spnperiodo.Value = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     this.spnperiodo.ValueChanged += new System.EventHandler(this.spnperiodo_ValueChanged);
     this.spnperiodo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.spnperiodo_KeyDown);
     this.spnperiodo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.spnperiodo_KeyPress);
     //
     // cboTipoplanilla
     //
     this.cboTipoplanilla.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboTipoplanilla.Enabled = false;
     this.cboTipoplanilla.FormattingEnabled = true;
     this.cboTipoplanilla.Location = new System.Drawing.Point(84, 65);
     this.cboTipoplanilla.Name = "cboTipoplanilla";
     this.cboTipoplanilla.Size = new System.Drawing.Size(267, 21);
     this.cboTipoplanilla.TabIndex = 5;
     this.cboTipoplanilla.SelectedIndexChanged += new System.EventHandler(this.cboTipoplanilla_SelectedIndexChanged);
     //
     // cboMes
     //
     this.cboMes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboMes.FormattingEnabled = true;
     this.cboMes.Location = new System.Drawing.Point(84, 41);
     this.cboMes.Name = "cboMes";
     this.cboMes.Size = new System.Drawing.Size(186, 21);
     this.cboMes.TabIndex = 3;
     this.cboMes.SelectedIndexChanged += new System.EventHandler(this.cboMes_SelectedIndexChanged);
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label1.Location = new System.Drawing.Point(14, 69);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(64, 13);
     this.Label1.TabIndex = 4;
     this.Label1.Text = "Tipo Planilla";
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label2.Location = new System.Drawing.Point(51, 45);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(27, 13);
     this.Label2.TabIndex = 2;
     this.Label2.Text = "Mes";
     //
     // rubroid
     //
     this.rubroid.DataPropertyName = "rubroid";
     this.rubroid.HeaderText = "rubroid";
     this.rubroid.Name = "rubroid";
     this.rubroid.ReadOnly = true;
     this.rubroid.Visible = false;
     //
     // rubroname
     //
     this.rubroname.DataPropertyName = "rubroname";
     this.rubroname.HeaderText = "Rubro";
     this.rubroname.Name = "rubroname";
     this.rubroname.ReadOnly = true;
     this.rubroname.Width = 330;
     //
     // afecto
     //
     this.afecto.DataPropertyName = "afecto";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.Format = "N0";
     dataGridViewCellStyle1.NullValue = "0";
     this.afecto.DefaultCellStyle = dataGridViewCellStyle1;
     this.afecto.HeaderText = "Afecto";
     this.afecto.Name = "afecto";
     this.afecto.ReadOnly = true;
     this.afecto.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.afecto.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.afecto.Width = 75;
     //
     // Frm_AfectacionesAFPs
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(482, 447);
     this.Controls.Add(this.toolbar);
     this.Controls.Add(this.Examinar);
     this.Controls.Add(this.GroupBox6);
     this.Controls.Add(this.GroupBox1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_AfectacionesAFPs";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Afectaciones de AFP";
     this.Activated += new System.EventHandler(this.Frm_AfectacionesAFPs_Activated);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_AfectacionesAFPs_FormClosing);
     this.Load += new System.EventHandler(this.Frm_AfectacionesAFPs_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_AfectacionesAFPs_KeyDown);
     this.toolbar.ResumeLayout(false);
     this.toolbar.PerformLayout();
     this.GroupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Examinar)).EndInit();
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spnperiodo)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 30
0
        public FrmArrayList(Framework.Entity.Chapter chapter, object type)
        {
            InitializeComponent();
            @class = type;
            System.Collections.ArrayList templateList = contentService.GetContentTemplateByTitle(chapter.Title);
            foreach (Framework.Entity.Template template in templateList)
            {
                Framework.Class.ComboItem item = new Framework.Class.ComboItem();
                item.Text  = template.Title;
                item.Value = template;
                CbxType.Items.Add(item);
            }
            CbxType.SelectedIndex = 0;
            if (@class.GetType().Equals(new Framework.Model.PlanLabor().GetType()))
            {
                System.Windows.Forms.DataGridViewCheckBoxColumn colState = new System.Windows.Forms.DataGridViewCheckBoxColumn(true);
                colState.ThreeState = false;
                colState.Width      = 30;
                DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colType = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
                colType.HeaderText = "工种";
                colType.Width      = 80;
                DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn colBase = new DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn();
                colBase.HeaderText = "基础施工阶段";
                colBase.Width      = 100;
                DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn colMain = new DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn();
                colMain.HeaderText = "主体施工阶段";
                colMain.Width      = 100;
                DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn colFitup = new DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn();
                colFitup.HeaderText = "基础施工阶段";
                colFitup.Width      = 100;
                DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn colLast = new DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn();
                colLast.HeaderText = "收尾阶段";
                colLast.Width      = 100;
                DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn colPrepare = new DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn();
                colPrepare.HeaderText = "准备阶段";
                colPrepare.Width      = 100;
                DataGridView.Columns.Add(colState);
                DataGridView.Columns.Add(colType);
                DataGridView.Columns.Add(colBase);
                DataGridView.Columns.Add(colMain);
                DataGridView.Columns.Add(colFitup);
                DataGridView.Columns.Add(colLast);
                DataGridView.Columns.Add(colPrepare);
            }
            else if (@class.GetType().Equals(new Framework.Model.PlanMachine().GetType()))
            {
                DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn colChoice = new DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn();
                colChoice.HeaderText = "选择设备";
                colChoice.Width      = 70;
                DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colName = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
                colName.HeaderText = "设备名称";
                colName.Width      = 180;
                DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colType = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
                colType.HeaderText = "设备型号";
                colType.Width      = 180;
                DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colFunction = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
                colFunction.HeaderText = "性能";
                colFunction.Width      = 180;
                object[,] machines     = new object[, ] {
                    { "塔吊", new string[] { "QTZ31.5&315-KN·m", "QTZ40&400KN·m", "QTZ50&500KN·m", "QTZ63&630KN·m" } },
                    { "施工电梯", new string[] { "SCD200/200&100m/200m" } },
                    { "砼搅拌机", new string[] { "JDC350&350L/560L", "JS500&500L/800L", "JS75&750L/1200L" } },
                    { "挖掘机(反铲)", new string[] { "Atlas3306LC&31500&1.90", "Atlas2606LC&25000&1.50", "Atlas2006LC&18000&1.00", "Atlas2306LC&22000&1.20", "BonnyCE400-6&40000&2.00", "BonnyCE650-6&66000&4.00" } }
                };
                for (int i = 0; i < 4; i++)
                {
                    DevComponents.DotNetBar.ButtonItem btnItem = new DevComponents.DotNetBar.ButtonItem();
                    btnItem.Text = (string)machines[i, 0];
                    string[] types = (string[])machines[i, 1];
                    for (int j = 0; j < types.Length; j++)
                    {
                        DevComponents.DotNetBar.ButtonItem btnChildItem = new DevComponents.DotNetBar.ButtonItem();
                        string[] info = types[j].ToString().Split('&');
                        btnChildItem.Text   = info[0];
                        btnChildItem.Click += new System.EventHandler(delegate(object sender, System.EventArgs args)
                        {
                            DevComponents.DotNetBar.ButtonItem item     = sender as DevComponents.DotNetBar.ButtonItem;
                            DataGridView.SelectedRows[0].Cells[1].Value = item.Parent.Text;
                            DataGridView.SelectedRows[0].Cells[2].Value = info[0];
                            DataGridView.SelectedRows[0].Cells[3].Value = info[1];
                            DataGridView.Refresh();
                        });
                        btnItem.SubItems.Add(btnChildItem);
                    }
                    colChoice.SubItems.Add(btnItem);
                }
                DataGridView.Columns.Add(colChoice);
                DataGridView.Columns.Add(colName);
                DataGridView.Columns.Add(colType);
                DataGridView.Columns.Add(colFunction);
            }
            else if (@class.GetType().Equals(new Framework.Model.PlanMaterial().GetType()))
            {
                // DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn colName = new DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn();
                System.Windows.Forms.DataGridViewComboBoxColumn colName = new System.Windows.Forms.DataGridViewComboBoxColumn();
                colName.HeaderText = "材料名称";
                colName.Width      = 120;
                DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn colNumber = new DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn();
                colNumber.HeaderText = "进场数量";
                colNumber.Width      = 100;
                DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colUnit = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
                colUnit.HeaderText = "单位";
                colUnit.Width      = 80;
                DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn colPlan = new DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn();
                colPlan.HeaderText = "进场计划";
                colPlan.Width      = 160;
                DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn colRemarks = new DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn();
                colRemarks.HeaderText = "备注";
                colRemarks.Width      = 150;
                DataGridView.Columns.Add(colName);
                DataGridView.Columns.Add(colNumber);
                DataGridView.Columns.Add(colUnit);
                DataGridView.Columns.Add(colPlan);
                DataGridView.Columns.Add(colRemarks);
            }
            else if (@class.GetType().Equals(new Framework.Model.ManageMember().GetType()))
            {
                System.Windows.Forms.DataGridViewCheckBoxColumn colState = new System.Windows.Forms.DataGridViewCheckBoxColumn(true);
                colState.ThreeState = false;
                colState.Width      = 30;
                System.Windows.Forms.DataGridViewTextBoxColumn colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
                colName.HeaderText = "姓名";
                colName.Width      = 100;
                DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn colWork = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
                colWork.HeaderText = "职务";
                colWork.Width      = 120;
                System.Windows.Forms.DataGridViewComboBoxColumn colTitle = new System.Windows.Forms.DataGridViewComboBoxColumn();
                colTitle.HeaderText = "职称";
                colTitle.Width      = 120;
                colTitle.Items.Add("高级工程师");
                colTitle.Items.Add("工程师");
                colTitle.Items.Add("助理工程师");
                colTitle.Items.Add("经济师");
                colTitle.Items.Add("会计师");
                System.Windows.Forms.DataGridViewTextBoxColumn colDuty = new System.Windows.Forms.DataGridViewTextBoxColumn();
                colDuty.HeaderText = "工作责任";
                colDuty.Width      = 120;
                System.Windows.Forms.DataGridViewTextBoxColumn colRemarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
                colRemarks.HeaderText = "备注";
                colRemarks.Width      = 120;
                DataGridView.Columns.Add(colState);
                DataGridView.Columns.Add(colName);
                DataGridView.Columns.Add(colWork);
                DataGridView.Columns.Add(colTitle);
                DataGridView.Columns.Add(colDuty);
                DataGridView.Columns.Add(colRemarks);
            }
            else if (@class.GetType().Equals(new Framework.Model.PrepareMaterial().GetType()))
            {
                DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn colChoice = new DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn();
                colChoice.HeaderText = "选择材料";
                colChoice.Width      = 150;
                DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn colName = new DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn();
                colName.HeaderText = "材料名称";
                colName.Width      = 460;
                object[] machines = new object[] {
                    "发泡陶瓷保温板",
                    "复合水泥发泡保温板",
                    "加气混凝土板",
                    "岩棉板(条)",
                    "蓝海板",
                    "其它"
                };
                for (int i = 0; i < 6; i++)
                {
                    DevComponents.DotNetBar.ButtonItem btnItem = new DevComponents.DotNetBar.ButtonItem();
                    btnItem.Text   = (string)machines[i];
                    btnItem.Click += new System.EventHandler(delegate(object sender, System.EventArgs args)
                    {
                        DataGridView.SelectedRows[0].Cells[1].Value = btnItem.Text;
                        DataGridView.Refresh();
                    });
                    colChoice.SubItems.Add(btnItem);
                }
                DataGridView.Columns.Add(colChoice);
                DataGridView.Columns.Add(colName);
            }
            else if (@class.GetType().Equals(new Framework.Model.PrepareMachineTool().GetType()))
            {
                DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn colChoice = new DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn();
                colChoice.HeaderText = "选择机具";
                colChoice.Width      = 150;
                DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn colName = new DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn();
                colName.HeaderText = "机具名称";
                colName.Width      = 460;

                object[] machines = new object[] {
                    "抹子", "砂纸", "2m靠尺", "弹线墨盒", "多用刀", "铲刀", "阴阳角抿子", "电动搅拌机", "角磨机", "其它"
                };
                for (int i = 0; i < 10; i++)
                {
                    DevComponents.DotNetBar.ButtonItem btnItem = new DevComponents.DotNetBar.ButtonItem();
                    btnItem.Text   = (string)machines[i];
                    btnItem.Click += new System.EventHandler(delegate(object sender, System.EventArgs args)
                    {
                        DataGridView.SelectedRows[0].Cells[1].Value = btnItem.Text;
                        DataGridView.Refresh();
                    });
                    colChoice.SubItems.Add(btnItem);
                }
                DataGridView.Columns.Add(colChoice);
                DataGridView.Columns.Add(colName);
            }
            else if (@class.GetType().Equals(new Framework.Model.PrepareMaterial().GetType()))
            {
                DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn colChoice = new DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn();
                colChoice.HeaderText = "选择屋面做法";
                colChoice.Width      = 150;
                DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn colName = new DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn();
                colName.HeaderText = "屋面做法";
                colName.Width      = 460;
                object[] machines = new object[] {
                    "发泡陶瓷保温板",
                    "复合水泥发泡保温板",
                    "加气混凝土板",
                    "岩棉板(条)",
                    "蓝海板",
                    "其它"
                };
                for (int i = 0; i < 6; i++)
                {
                    DevComponents.DotNetBar.ButtonItem btnItem = new DevComponents.DotNetBar.ButtonItem();
                    btnItem.Text   = (string)machines[i];
                    btnItem.Click += new System.EventHandler(delegate(object sender, System.EventArgs args)
                    {
                        DataGridView.SelectedRows[0].Cells[1].Value = btnItem.Text;
                        DataGridView.Refresh();
                    });
                    colChoice.SubItems.Add(btnItem);
                }
                DataGridView.Columns.Add(colChoice);
                DataGridView.Columns.Add(colName);
            }
        }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </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();
     this.pnlRole = new System.Windows.Forms.Panel();
     this.grdRole = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colRealName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.splOrganize = new System.Windows.Forms.Splitter();
     this.tvOrganize = new System.Windows.Forms.TreeView();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnConfirm = new System.Windows.Forms.Button();
     this.btnSetNull = new System.Windows.Forms.Button();
     this.pnlRole.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdRole)).BeginInit();
     this.SuspendLayout();
     //
     // pnlRole
     //
     this.pnlRole.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.pnlRole.Controls.Add(this.grdRole);
     this.pnlRole.Controls.Add(this.splOrganize);
     this.pnlRole.Controls.Add(this.tvOrganize);
     this.pnlRole.Location = new System.Drawing.Point(8, 11);
     this.pnlRole.Name = "pnlRole";
     this.pnlRole.Size = new System.Drawing.Size(724, 381);
     this.pnlRole.TabIndex = 1;
     //
     // grdRole
     //
     this.grdRole.AllowUserToAddRows = false;
     this.grdRole.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.AliceBlue;
     this.grdRole.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.grdRole.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     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.grdRole.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdRole.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdRole.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colRealName,
     this.colDescription});
     this.grdRole.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdRole.Location = new System.Drawing.Point(263, 0);
     this.grdRole.Name = "grdRole";
     this.grdRole.RowTemplate.Height = 23;
     this.grdRole.Size = new System.Drawing.Size(461, 381);
     this.grdRole.TabIndex = 0;
     this.grdRole.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdRole_CellDoubleClick);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Width = 50;
     //
     // colRealName
     //
     this.colRealName.DataPropertyName = "RealName";
     this.colRealName.HeaderText = "名称";
     this.colRealName.MaxInputLength = 50;
     this.colRealName.Name = "colRealName";
     this.colRealName.ReadOnly = true;
     this.colRealName.Width = 150;
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "Description";
     this.colDescription.FillWeight = 200F;
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.ReadOnly = true;
     this.colDescription.Width = 200;
     //
     // splOrganize
     //
     this.splOrganize.Location = new System.Drawing.Point(260, 0);
     this.splOrganize.Name = "splOrganize";
     this.splOrganize.Size = new System.Drawing.Size(3, 381);
     this.splOrganize.TabIndex = 8;
     this.splOrganize.TabStop = false;
     //
     // tvOrganize
     //
     this.tvOrganize.Dock = System.Windows.Forms.DockStyle.Left;
     this.tvOrganize.ImageIndex = 0;
     this.tvOrganize.ImageList = this.imageList;
     this.tvOrganize.Location = new System.Drawing.Point(0, 0);
     this.tvOrganize.Name = "tvOrganize";
     this.tvOrganize.SelectedImageIndex = 0;
     this.tvOrganize.Size = new System.Drawing.Size(260, 381);
     this.tvOrganize.TabIndex = 0;
     this.tvOrganize.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvOrganize_AfterSelect);
     this.tvOrganize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvOrganize_MouseDown);
     //
     // imageList
     //
     this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(657, 398);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 3;
     this.btnCancel.Text = "取消";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnConfirm
     //
     this.btnConfirm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnConfirm.Location = new System.Drawing.Point(578, 398);
     this.btnConfirm.Name = "btnConfirm";
     this.btnConfirm.Size = new System.Drawing.Size(75, 23);
     this.btnConfirm.TabIndex = 3;
     this.btnConfirm.Text = "确定";
     this.btnConfirm.UseVisualStyleBackColor = true;
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // btnSetNull
     //
     this.btnSetNull.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSetNull.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnSetNull.Location = new System.Drawing.Point(499, 398);
     this.btnSetNull.Name = "btnSetNull";
     this.btnSetNull.Size = new System.Drawing.Size(75, 23);
     this.btnSetNull.TabIndex = 2;
     this.btnSetNull.Text = "置空(&N)";
     this.btnSetNull.UseVisualStyleBackColor = true;
     this.btnSetNull.Click += new System.EventHandler(this.btnSetNull_Click);
     //
     // FrmOrganizeRoleSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(740, 426);
     this.Controls.Add(this.btnSetNull);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnConfirm);
     this.Controls.Add(this.pnlRole);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.DoubleBuffered = true;
     this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.Name = "FrmOrganizeRoleSelect";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "选择岗位";
     this.pnlRole.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdRole)).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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BreakpointManagerWindow));
            this.contextMenu                     = new System.Windows.Forms.ContextMenu();
            this.autoHideItem                    = new System.Windows.Forms.MenuItem();
            this.floatingItem                    = new System.Windows.Forms.MenuItem();
            this.hideItem                        = new System.Windows.Forms.MenuItem();
            this.toolStrip1                      = new System.Windows.Forms.ToolStrip();
            this.newBreakToolStripButton         = new System.Windows.Forms.ToolStripSplitButton();
            this.breakpointToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
            this.dataBreakpointToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1             = new System.Windows.Forms.ToolStripSeparator();
            this.delBreakToolStripButton         = new System.Windows.Forms.ToolStripButton();
            this.delAllBreakToolStripButton      = new System.Windows.Forms.ToolStripButton();
            this.disableAllToolStripButton       = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2             = new System.Windows.Forms.ToolStripSeparator();
            this.gotoToolStripButton             = new System.Windows.Forms.ToolStripButton();
            this.colToolStripDropDown            = new System.Windows.Forms.ToolStripDropDownButton();
            this.enabledToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
            this.nameToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
            this.conditionToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
            this.hitCountToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
            this.addressToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
            this.pageToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
            this.isInRamToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
            this.breakpointGridView              = new System.Windows.Forms.DataGridView();
            this.EnabledCol                      = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.NameCol      = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ConditionCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.HitCountCol  = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.AddressCol   = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.PageCol      = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.IsRamCol     = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize) this.breakpointGridView).BeginInit();
            this.SuspendLayout();

            // autoHideItem

            this.autoHideItem.Index = -1;
            this.autoHideItem.Text  = "Autohide";

            // floatingItem

            this.floatingItem.Index = -1;
            this.floatingItem.Text  = "Floating";

            // hideItem

            this.hideItem.Index = -1;
            this.hideItem.Text  = "Hide";

            // toolStrip1

            this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[]
            {
                this.newBreakToolStripButton,
                this.toolStripSeparator1,
                this.delBreakToolStripButton,
                this.delAllBreakToolStripButton,
                this.disableAllToolStripButton,
                this.toolStripSeparator2,
                this.gotoToolStripButton,
                this.colToolStripDropDown
            });
            this.toolStrip1.Location   = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name       = "toolStrip1";
            this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            this.toolStrip1.Size       = new System.Drawing.Size(535, 25);
            this.toolStrip1.TabIndex   = 0;
            this.toolStrip1.Text       = "toolStrip1";

            // newBreakToolStripButton

            this.newBreakToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.newBreakToolStripButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]
            {
                this.breakpointToolStripMenuItem,
                this.dataBreakpointToolStripMenuItem
            });
            this.newBreakToolStripButton.Image = (System.Drawing.Image)resources.GetObject("newBreakToolStripButton.Image");
            this.newBreakToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.newBreakToolStripButton.Name         = "newBreakToolStripButton";
            this.newBreakToolStripButton.Size         = new System.Drawing.Size(47, 22);
            this.newBreakToolStripButton.Text         = "New";
            this.newBreakToolStripButton.ButtonClick += new System.EventHandler(this.breakpointToolStripMenuItem_Click);

            // breakpointToolStripMenuItem

            this.breakpointToolStripMenuItem.Name   = "breakpointToolStripMenuItem";
            this.breakpointToolStripMenuItem.Size   = new System.Drawing.Size(158, 22);
            this.breakpointToolStripMenuItem.Text   = "Break at Line...";
            this.breakpointToolStripMenuItem.Click += new System.EventHandler(this.breakpointToolStripMenuItem_Click);

            // dataBreakpointToolStripMenuItem

            this.dataBreakpointToolStripMenuItem.Name = "dataBreakpointToolStripMenuItem";
            this.dataBreakpointToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
            this.dataBreakpointToolStripMenuItem.Text = "Data Breakpoint";

            // toolStripSeparator1

            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);

            // delBreakToolStripButton

            this.delBreakToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.delBreakToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.delBreakToolStripButton.Name   = "delBreakToolStripButton";
            this.delBreakToolStripButton.Size   = new System.Drawing.Size(44, 22);
            this.delBreakToolStripButton.Text   = "Delete";
            this.delBreakToolStripButton.Click += new System.EventHandler(this.delBreakToolStripButton_Click);

            // delAllBreakToolStripButton

            this.delAllBreakToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.delAllBreakToolStripButton.Image                 = (System.Drawing.Image)resources.GetObject("delAllBreakToolStripButton.Image");
            this.delAllBreakToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.delAllBreakToolStripButton.Name   = "delAllBreakToolStripButton";
            this.delAllBreakToolStripButton.Size   = new System.Drawing.Size(61, 22);
            this.delAllBreakToolStripButton.Text   = "Delete All";
            this.delAllBreakToolStripButton.Click += new System.EventHandler(this.delAllBreakToolStripButton_Click);

            // disableAllToolStripButton

            this.disableAllToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.disableAllToolStripButton.Image                 = (System.Drawing.Image)resources.GetObject("disableAllToolStripButton.Image");
            this.disableAllToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.disableAllToolStripButton.Name   = "disableAllToolStripButton";
            this.disableAllToolStripButton.Size   = new System.Drawing.Size(66, 22);
            this.disableAllToolStripButton.Text   = "Disable All";
            this.disableAllToolStripButton.Click += new System.EventHandler(this.disableAllToolStripButton_Click);

            // toolStripSeparator2

            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);

            // gotoToolStripButton

            this.gotoToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.gotoToolStripButton.Image                 = (System.Drawing.Image)resources.GetObject("gotoToolStripButton.Image");
            this.gotoToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.gotoToolStripButton.Name   = "gotoToolStripButton";
            this.gotoToolStripButton.Size   = new System.Drawing.Size(37, 22);
            this.gotoToolStripButton.Text   = "Goto";
            this.gotoToolStripButton.Click += new System.EventHandler(this.gotoToolStripButton_Click);

            // colToolStripDropDown

            this.colToolStripDropDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.colToolStripDropDown.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]
            {
                this.enabledToolStripMenuItem,
                this.nameToolStripMenuItem,
                this.conditionToolStripMenuItem,
                this.hitCountToolStripMenuItem,
                this.addressToolStripMenuItem,
                this.pageToolStripMenuItem,
                this.isInRamToolStripMenuItem
            });
            this.colToolStripDropDown.Image = (System.Drawing.Image)resources.GetObject("colToolStripDropDown.Image");
            this.colToolStripDropDown.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.colToolStripDropDown.Name = "colToolStripDropDown";
            this.colToolStripDropDown.Size = new System.Drawing.Size(68, 22);
            this.colToolStripDropDown.Text = "Columns";

            // enabledToolStripMenuItem

            this.enabledToolStripMenuItem.Checked      = true;
            this.enabledToolStripMenuItem.CheckOnClick = true;
            this.enabledToolStripMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
            this.enabledToolStripMenuItem.Name         = "enabledToolStripMenuItem";
            this.enabledToolStripMenuItem.Size         = new System.Drawing.Size(127, 22);
            this.enabledToolStripMenuItem.Text         = "Enabled";
            this.enabledToolStripMenuItem.Click       += new System.EventHandler(this.ColButtonClick);

            // nameToolStripMenuItem

            this.nameToolStripMenuItem.Checked      = true;
            this.nameToolStripMenuItem.CheckOnClick = true;
            this.nameToolStripMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
            this.nameToolStripMenuItem.Name         = "nameToolStripMenuItem";
            this.nameToolStripMenuItem.Size         = new System.Drawing.Size(127, 22);
            this.nameToolStripMenuItem.Text         = "Name";
            this.nameToolStripMenuItem.Click       += new System.EventHandler(this.ColButtonClick);

            // conditionToolStripMenuItem

            this.conditionToolStripMenuItem.Checked      = true;
            this.conditionToolStripMenuItem.CheckOnClick = true;
            this.conditionToolStripMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
            this.conditionToolStripMenuItem.Name         = "conditionToolStripMenuItem";
            this.conditionToolStripMenuItem.Size         = new System.Drawing.Size(127, 22);
            this.conditionToolStripMenuItem.Text         = "Condition";
            this.conditionToolStripMenuItem.Click       += new System.EventHandler(this.ColButtonClick);

            // hitCountToolStripMenuItem

            this.hitCountToolStripMenuItem.Checked      = true;
            this.hitCountToolStripMenuItem.CheckOnClick = true;
            this.hitCountToolStripMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
            this.hitCountToolStripMenuItem.Name         = "hitCountToolStripMenuItem";
            this.hitCountToolStripMenuItem.Size         = new System.Drawing.Size(127, 22);
            this.hitCountToolStripMenuItem.Text         = "Hit Count";
            this.hitCountToolStripMenuItem.Click       += new System.EventHandler(this.ColButtonClick);

            // addressToolStripMenuItem

            this.addressToolStripMenuItem.Checked      = true;
            this.addressToolStripMenuItem.CheckOnClick = true;
            this.addressToolStripMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
            this.addressToolStripMenuItem.Name         = "addressToolStripMenuItem";
            this.addressToolStripMenuItem.Size         = new System.Drawing.Size(127, 22);
            this.addressToolStripMenuItem.Text         = "Address";
            this.addressToolStripMenuItem.Click       += new System.EventHandler(this.ColButtonClick);

            // pageToolStripMenuItem

            this.pageToolStripMenuItem.Checked      = true;
            this.pageToolStripMenuItem.CheckOnClick = true;
            this.pageToolStripMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
            this.pageToolStripMenuItem.Name         = "pageToolStripMenuItem";
            this.pageToolStripMenuItem.Size         = new System.Drawing.Size(127, 22);
            this.pageToolStripMenuItem.Text         = "Page";
            this.pageToolStripMenuItem.Click       += new System.EventHandler(this.ColButtonClick);

            // isInRamToolStripMenuItem

            this.isInRamToolStripMenuItem.Checked      = true;
            this.isInRamToolStripMenuItem.CheckOnClick = true;
            this.isInRamToolStripMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
            this.isInRamToolStripMenuItem.Name         = "isInRamToolStripMenuItem";
            this.isInRamToolStripMenuItem.Size         = new System.Drawing.Size(127, 22);
            this.isInRamToolStripMenuItem.Text         = "Is In Ram";
            this.isInRamToolStripMenuItem.Click       += new System.EventHandler(this.ColButtonClick);

            // breakpointGridView

            this.breakpointGridView.AllowUserToAddRows          = false;
            this.breakpointGridView.AllowUserToResizeRows       = false;
            this.breakpointGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.breakpointGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[]
            {
                this.EnabledCol,
                this.NameCol,
                this.ConditionCol,
                this.HitCountCol,
                this.AddressCol,
                this.PageCol,
                this.IsRamCol
            });
            this.breakpointGridView.Dock              = System.Windows.Forms.DockStyle.Fill;
            this.breakpointGridView.Location          = new System.Drawing.Point(0, 25);
            this.breakpointGridView.Name              = "breakpointGridView";
            this.breakpointGridView.RowHeadersVisible = false;
            this.breakpointGridView.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.breakpointGridView.ShowEditingIcon   = false;
            this.breakpointGridView.ShowRowErrors     = false;
            this.breakpointGridView.Size              = new System.Drawing.Size(535, 189);
            this.breakpointGridView.TabIndex          = 1;
            this.breakpointGridView.CellEndEdit      += new System.Windows.Forms.DataGridViewCellEventHandler(this.breakpointGridView_CellValueChanged);
            this.breakpointGridView.UserDeletingRow  += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.breakpointGridView_UserDeletingRow);

            // EnabledCol

            this.EnabledCol.HeaderText = "Enabled";
            this.EnabledCol.Name       = "EnabledCol";
            this.EnabledCol.Width      = 50;

            // NameCol

            this.NameCol.HeaderText = "Name";
            this.NameCol.Name       = "NameCol";
            this.NameCol.ReadOnly   = true;

            // ConditionCol

            this.ConditionCol.HeaderText = "Condition";
            this.ConditionCol.Name       = "ConditionCol";

            // HitCountCol

            this.HitCountCol.HeaderText = "Hit Count";
            this.HitCountCol.Name       = "HitCountCol";

            // AddressCol

            this.AddressCol.HeaderText = "Address";
            this.AddressCol.Name       = "AddressCol";

            // PageCol

            this.PageCol.HeaderText = "Page";
            this.PageCol.Name       = "PageCol";

            // IsRamCol

            this.IsRamCol.HeaderText = "In Ram";
            this.IsRamCol.Name       = "IsRamCol";
            this.IsRamCol.Width      = 50;

            // BreakpointManagerWindow

            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(535, 214);
            this.Controls.Add(this.breakpointGridView);
            this.Controls.Add(this.toolStrip1);
            this.Font               = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, (byte)0);
            this.HideOnClose        = true;
            this.Name               = "BreakpointManagerWindow";
            this.ShowHint           = WeifenLuo.WinFormsUI.Docking.DockState.DockBottom;
            this.TabPageContextMenu = this.contextMenu;
            this.TabText            = "Breakpoints";
            this.Text               = "Breakpoints";
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize) this.breakpointGridView).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();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_promociones));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = 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();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.articid = new System.Windows.Forms.TextBox();
     this.articname = new System.Windows.Forms.TextBox();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.pnl_01 = new DevExpress.XtraEditors.PanelControl();
     this.rdb_estado = new DevExpress.XtraEditors.RadioGroup();
     this.pnl_dias = new DevExpress.XtraEditors.PanelControl();
     this.chk_sab = new DevExpress.XtraEditors.CheckEdit();
     this.chk_lun = new DevExpress.XtraEditors.CheckEdit();
     this.chk_mar = new DevExpress.XtraEditors.CheckEdit();
     this.chk_dom = new DevExpress.XtraEditors.CheckEdit();
     this.chk_mie = new DevExpress.XtraEditors.CheckEdit();
     this.chk_jue = new DevExpress.XtraEditors.CheckEdit();
     this.chk_vie = new DevExpress.XtraEditors.CheckEdit();
     this.exclusivo = new System.Windows.Forms.TextBox();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.chk_solodias = new DevExpress.XtraEditors.CheckEdit();
     this.impopack = new System.Windows.Forms.TextBox();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.npack = new System.Windows.Forms.TextBox();
     this.aplicfin = new System.Windows.Forms.TextBox();
     this.aplicini = new System.Windows.Forms.TextBox();
     this.impodoc = new System.Windows.Forms.TextBox();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_grupopromocion = new System.Windows.Forms.ComboBox();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.perdsctocab = new System.Windows.Forms.TextBox();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.chk_aldocum = new DevExpress.XtraEditors.CheckEdit();
     this.prioridad = new System.Windows.Forms.TextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_tarjgrupoid = new System.Windows.Forms.ComboBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_tiendalist = new System.Windows.Forms.ComboBox();
     this.fechafin = new System.Windows.Forms.DateTimePicker();
     this.fechaini = new System.Windows.Forms.DateTimePicker();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.promoname = new System.Windows.Forms.TextBox();
     this.promoid = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.pnlcontroldet = new DevExpress.XtraEditors.PanelControl();
     this.btn_update = new DevExpress.XtraEditors.SimpleButton();
     this.btn_search = new DevExpress.XtraEditors.SimpleButton();
     this.rollo_search = new System.Windows.Forms.TextBox();
     this.btn_exportar = new DevExpress.XtraEditors.SimpleButton();
     this.btn_importar = new DevExpress.XtraEditors.SimpleButton();
     this.chk_aldoc2 = new DevExpress.XtraEditors.CheckEdit();
     this.btn_del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_save = new DevExpress.XtraEditors.SimpleButton();
     this.precunit = new System.Windows.Forms.TextBox();
     this.percdscto = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.dgb_promodet = new System.Windows.Forms.DataGridView();
     this.@__promoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articidold = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._es_dscto = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.@__percdscto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.@__status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.@__feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._usuarip = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.Group_chks = new DevExpress.XtraEditors.RadioGroup();
     this.cmb_perianio = new System.Windows.Forms.ComboBox();
     this.cmb_grupopromocion2 = new System.Windows.Forms.ComboBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.Mdi_dgv_promociones = new DevExpress.XtraGrid.GridControl();
     this.dgv_promociones = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._promoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._prioridad = new DevExpress.XtraGrid.Columns.GridColumn();
     this._status = new DevExpress.XtraGrid.Columns.GridColumn();
     this._exclusivo = new DevExpress.XtraGrid.Columns.GridColumn();
     this._promoname = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tiendalist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tarjgrupoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tarjetaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._percdscto = new DevExpress.XtraGrid.Columns.GridColumn();
     this._al_docum = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechaini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechafin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._promotipoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._grupopromoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._campaniaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fecre = new DevExpress.XtraGrid.Columns.GridColumn();
     this._feact = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuarap = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechap = new DevExpress.XtraGrid.Columns.GridColumn();
     this._solodias = new DevExpress.XtraGrid.Columns.GridColumn();
     this._dom = new DevExpress.XtraGrid.Columns.GridColumn();
     this._lun = new DevExpress.XtraGrid.Columns.GridColumn();
     this._mar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._mie = new DevExpress.XtraGrid.Columns.GridColumn();
     this._jue = new DevExpress.XtraGrid.Columns.GridColumn();
     this._vie = new DevExpress.XtraGrid.Columns.GridColumn();
     this._sab = new DevExpress.XtraGrid.Columns.GridColumn();
     this._npack = new DevExpress.XtraGrid.Columns.GridColumn();
     this._impopack = new DevExpress.XtraGrid.Columns.GridColumn();
     this._aplicini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._aplicfin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._impodoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).BeginInit();
     this.pnl_01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rdb_estado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_dias)).BeginInit();
     this.pnl_dias.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_sab.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_lun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mar.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_dom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mie.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_jue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_vie.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_solodias.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldocum.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).BeginInit();
     this.pnlcontroldet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldoc2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_promodet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Group_chks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_promociones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_promociones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     this.SuspendLayout();
     //
     // articid
     //
     this.articid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.articid.Location = new System.Drawing.Point(76, 4);
     this.articid.MaxLength = 10;
     this.articid.Name = "articid";
     this.articid.Size = new System.Drawing.Size(66, 20);
     this.articid.TabIndex = 11;
     this.articid.Text = "00000000";
     this.articid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.articid_KeyDown);
     //
     // articname
     //
     this.articname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articname.Location = new System.Drawing.Point(143, 4);
     this.articname.Name = "articname";
     this.articname.Size = new System.Drawing.Size(326, 21);
     this.articname.TabIndex = 12;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 16;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem14.Text = "Nuevo";
     superToolTip14.Items.Add(toolTipTitleItem14);
     this.btn_nuevo.SuperTip = superToolTip14;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem15.Text = "Editar";
     superToolTip15.Items.Add(toolTipTitleItem15);
     this.btn_editar.SuperTip = superToolTip15;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem17.Text = "Cancelar";
     superToolTip17.Items.Add(toolTipTitleItem17);
     this.btn_cancelar.SuperTip = superToolTip17;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem16.Text = "Guardar";
     superToolTip16.Items.Add(toolTipTitleItem16);
     this.btn_grabar.SuperTip = superToolTip16;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem18.Text = "Elimar Registro";
     superToolTip18.Items.Add(toolTipTitleItem18);
     this.btn_eliminar.SuperTip = superToolTip18;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem19.Text = "Imprimir";
     superToolTip19.Items.Add(toolTipTitleItem19);
     this.btn_imprimir.SuperTip = superToolTip19;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem21.Text = "Log";
     superToolTip21.Items.Add(toolTipTitleItem21);
     this.btn_log.SuperTip = superToolTip21;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem26.Text = "Salir";
     superToolTip26.Items.Add(toolTipTitleItem26);
     this.btn_salir.SuperTip = superToolTip26;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1038, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 595);
     this.barDockControlBottom.Size = new System.Drawing.Size(1038, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 567);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1038, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 567);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem20.Text = "Actualizar";
     superToolTip20.Items.Add(toolTipTitleItem20);
     this.btnLoad.SuperTip = superToolTip20;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem22.Text = "Primer Registro";
     superToolTip22.Items.Add(toolTipTitleItem22);
     this.btnInicio.SuperTip = superToolTip22;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem23.Text = "Anterior Registro";
     superToolTip23.Items.Add(toolTipTitleItem23);
     this.btnAnterior.SuperTip = superToolTip23;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem24.Text = "Siguiente Registro";
     superToolTip24.Items.Add(toolTipTitleItem24);
     this.btnSiguiente.SuperTip = superToolTip24;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem25.Text = "Ultimo Registro";
     superToolTip25.Items.Add(toolTipTitleItem25);
     this.btnUltimo.SuperTip = superToolTip25;
     //
     // pnl_01
     //
     this.pnl_01.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_01.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_01.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.pnl_01.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnl_01.Appearance.Options.UseBackColor = true;
     this.pnl_01.Appearance.Options.UseFont = true;
     this.pnl_01.Appearance.Options.UseForeColor = true;
     this.pnl_01.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_01.Controls.Add(this.rdb_estado);
     this.pnl_01.Controls.Add(this.pnl_dias);
     this.pnl_01.Controls.Add(this.exclusivo);
     this.pnl_01.Controls.Add(this.labelControl1);
     this.pnl_01.Controls.Add(this.chk_solodias);
     this.pnl_01.Controls.Add(this.impopack);
     this.pnl_01.Controls.Add(this.labelControl19);
     this.pnl_01.Controls.Add(this.npack);
     this.pnl_01.Controls.Add(this.aplicfin);
     this.pnl_01.Controls.Add(this.aplicini);
     this.pnl_01.Controls.Add(this.impodoc);
     this.pnl_01.Controls.Add(this.labelControl18);
     this.pnl_01.Controls.Add(this.labelControl17);
     this.pnl_01.Controls.Add(this.labelControl16);
     this.pnl_01.Controls.Add(this.labelControl7);
     this.pnl_01.Controls.Add(this.cmb_grupopromocion);
     this.pnl_01.Controls.Add(this.labelControl15);
     this.pnl_01.Controls.Add(this.perdsctocab);
     this.pnl_01.Controls.Add(this.labelControl14);
     this.pnl_01.Controls.Add(this.chk_aldocum);
     this.pnl_01.Controls.Add(this.prioridad);
     this.pnl_01.Controls.Add(this.labelControl13);
     this.pnl_01.Controls.Add(this.cmb_tarjgrupoid);
     this.pnl_01.Controls.Add(this.labelControl12);
     this.pnl_01.Controls.Add(this.cmb_tiendalist);
     this.pnl_01.Controls.Add(this.fechafin);
     this.pnl_01.Controls.Add(this.fechaini);
     this.pnl_01.Controls.Add(this.labelControl6);
     this.pnl_01.Controls.Add(this.labelControl5);
     this.pnl_01.Controls.Add(this.labelControl4);
     this.pnl_01.Controls.Add(this.promoname);
     this.pnl_01.Controls.Add(this.promoid);
     this.pnl_01.Controls.Add(this.labelControl3);
     this.pnl_01.Location = new System.Drawing.Point(474, 31);
     this.pnl_01.Name = "pnl_01";
     this.pnl_01.Size = new System.Drawing.Size(873, 272);
     this.pnl_01.TabIndex = 120;
     //
     // rdb_estado
     //
     this.rdb_estado.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rdb_estado.Location = new System.Drawing.Point(402, 29);
     this.rdb_estado.MenuManager = this.barManager1;
     this.rdb_estado.Name = "rdb_estado";
     this.rdb_estado.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rdb_estado.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.rdb_estado.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.rdb_estado.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.rdb_estado.Properties.Appearance.Options.UseBackColor = true;
     this.rdb_estado.Properties.Appearance.Options.UseFont = true;
     this.rdb_estado.Properties.Appearance.Options.UseForeColor = true;
     this.rdb_estado.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rdb_estado.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Activo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(9, "Inactivo")});
     this.rdb_estado.Size = new System.Drawing.Size(81, 38);
     this.rdb_estado.TabIndex = 183;
     //
     // pnl_dias
     //
     this.pnl_dias.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_dias.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_dias.Appearance.Options.UseBackColor = true;
     this.pnl_dias.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_dias.Controls.Add(this.chk_sab);
     this.pnl_dias.Controls.Add(this.chk_lun);
     this.pnl_dias.Controls.Add(this.chk_mar);
     this.pnl_dias.Controls.Add(this.chk_dom);
     this.pnl_dias.Controls.Add(this.chk_mie);
     this.pnl_dias.Controls.Add(this.chk_jue);
     this.pnl_dias.Controls.Add(this.chk_vie);
     this.pnl_dias.Location = new System.Drawing.Point(120, 140);
     this.pnl_dias.Name = "pnl_dias";
     this.pnl_dias.Size = new System.Drawing.Size(139, 60);
     this.pnl_dias.TabIndex = 182;
     //
     // chk_sab
     //
     this.chk_sab.Location = new System.Drawing.Point(51, 40);
     this.chk_sab.MenuManager = this.barManager1;
     this.chk_sab.Name = "chk_sab";
     this.chk_sab.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_sab.Properties.Appearance.Options.UseForeColor = true;
     this.chk_sab.Properties.Caption = "SA";
     this.chk_sab.Size = new System.Drawing.Size(39, 19);
     this.chk_sab.TabIndex = 178;
     //
     // chk_lun
     //
     this.chk_lun.Location = new System.Drawing.Point(6, 0);
     this.chk_lun.MenuManager = this.barManager1;
     this.chk_lun.Name = "chk_lun";
     this.chk_lun.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_lun.Properties.Appearance.Options.UseForeColor = true;
     this.chk_lun.Properties.Caption = "LU";
     this.chk_lun.Size = new System.Drawing.Size(39, 19);
     this.chk_lun.TabIndex = 173;
     //
     // chk_mar
     //
     this.chk_mar.Location = new System.Drawing.Point(6, 20);
     this.chk_mar.MenuManager = this.barManager1;
     this.chk_mar.Name = "chk_mar";
     this.chk_mar.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_mar.Properties.Appearance.Options.UseForeColor = true;
     this.chk_mar.Properties.Caption = "MA";
     this.chk_mar.Size = new System.Drawing.Size(39, 19);
     this.chk_mar.TabIndex = 174;
     //
     // chk_dom
     //
     this.chk_dom.Location = new System.Drawing.Point(96, 0);
     this.chk_dom.MenuManager = this.barManager1;
     this.chk_dom.Name = "chk_dom";
     this.chk_dom.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_dom.Properties.Appearance.Options.UseForeColor = true;
     this.chk_dom.Properties.Caption = "DO";
     this.chk_dom.Size = new System.Drawing.Size(39, 19);
     this.chk_dom.TabIndex = 179;
     //
     // chk_mie
     //
     this.chk_mie.Location = new System.Drawing.Point(6, 40);
     this.chk_mie.MenuManager = this.barManager1;
     this.chk_mie.Name = "chk_mie";
     this.chk_mie.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_mie.Properties.Appearance.Options.UseForeColor = true;
     this.chk_mie.Properties.Caption = "MI";
     this.chk_mie.Size = new System.Drawing.Size(39, 19);
     this.chk_mie.TabIndex = 175;
     //
     // chk_jue
     //
     this.chk_jue.Location = new System.Drawing.Point(51, 0);
     this.chk_jue.MenuManager = this.barManager1;
     this.chk_jue.Name = "chk_jue";
     this.chk_jue.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_jue.Properties.Appearance.Options.UseForeColor = true;
     this.chk_jue.Properties.Caption = "JU";
     this.chk_jue.Size = new System.Drawing.Size(39, 19);
     this.chk_jue.TabIndex = 176;
     //
     // chk_vie
     //
     this.chk_vie.Location = new System.Drawing.Point(51, 20);
     this.chk_vie.MenuManager = this.barManager1;
     this.chk_vie.Name = "chk_vie";
     this.chk_vie.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_vie.Properties.Appearance.Options.UseForeColor = true;
     this.chk_vie.Properties.Caption = "VI";
     this.chk_vie.Size = new System.Drawing.Size(39, 19);
     this.chk_vie.TabIndex = 177;
     //
     // exclusivo
     //
     this.exclusivo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.exclusivo.Location = new System.Drawing.Point(352, 160);
     this.exclusivo.Name = "exclusivo";
     this.exclusivo.Size = new System.Drawing.Size(22, 21);
     this.exclusivo.TabIndex = 181;
     this.exclusivo.Text = "1";
     this.exclusivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl1.Location = new System.Drawing.Point(280, 165);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 180;
     this.labelControl1.Text = "» Exclusivo:";
     //
     // chk_solodias
     //
     this.chk_solodias.Location = new System.Drawing.Point(45, 140);
     this.chk_solodias.MenuManager = this.barManager1;
     this.chk_solodias.Name = "chk_solodias";
     this.chk_solodias.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_solodias.Properties.Appearance.Options.UseForeColor = true;
     this.chk_solodias.Properties.Caption = "Solo Dias ?";
     this.chk_solodias.Size = new System.Drawing.Size(85, 19);
     this.chk_solodias.TabIndex = 172;
     this.chk_solodias.CheckedChanged += new System.EventHandler(this.chk_solodias_CheckedChanged);
     //
     // impopack
     //
     this.impopack.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.impopack.Location = new System.Drawing.Point(275, 206);
     this.impopack.Name = "impopack";
     this.impopack.Size = new System.Drawing.Size(72, 21);
     this.impopack.TabIndex = 171;
     this.impopack.Text = "0.00";
     this.impopack.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.impopack.KeyDown += new System.Windows.Forms.KeyEventHandler(this.impopack_KeyDown);
     //
     // labelControl19
     //
     this.labelControl19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl19.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl19.Location = new System.Drawing.Point(159, 211);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(108, 13);
     this.labelControl19.TabIndex = 170;
     this.labelControl19.Text = "» Importe de Pack:";
     //
     // npack
     //
     this.npack.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.npack.Location = new System.Drawing.Point(121, 206);
     this.npack.Name = "npack";
     this.npack.Size = new System.Drawing.Size(22, 21);
     this.npack.TabIndex = 169;
     this.npack.Text = "1";
     this.npack.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.npack.KeyDown += new System.Windows.Forms.KeyEventHandler(this.npack_KeyDown);
     //
     // aplicfin
     //
     this.aplicfin.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.aplicfin.Location = new System.Drawing.Point(194, 229);
     this.aplicfin.Name = "aplicfin";
     this.aplicfin.Size = new System.Drawing.Size(25, 21);
     this.aplicfin.TabIndex = 168;
     this.aplicfin.Text = "999";
     this.aplicfin.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.aplicfin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.aplicfin_KeyDown);
     //
     // aplicini
     //
     this.aplicini.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.aplicini.Location = new System.Drawing.Point(121, 229);
     this.aplicini.Name = "aplicini";
     this.aplicini.Size = new System.Drawing.Size(22, 21);
     this.aplicini.TabIndex = 167;
     this.aplicini.Text = "1";
     this.aplicini.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.aplicini.KeyDown += new System.Windows.Forms.KeyEventHandler(this.aplicini_KeyDown);
     //
     // impodoc
     //
     this.impodoc.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.impodoc.Location = new System.Drawing.Point(305, 247);
     this.impodoc.Name = "impodoc";
     this.impodoc.Size = new System.Drawing.Size(69, 21);
     this.impodoc.TabIndex = 166;
     this.impodoc.Text = "0.00";
     this.impodoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl18
     //
     this.labelControl18.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl18.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl18.Location = new System.Drawing.Point(11, 253);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(288, 13);
     this.labelControl18.TabIndex = 165;
     this.labelControl18.Text = "»» Siempre que el Importe del Documento sea >= ";
     //
     // labelControl17
     //
     this.labelControl17.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl17.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl17.Location = new System.Drawing.Point(159, 234);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(28, 13);
     this.labelControl17.TabIndex = 164;
     this.labelControl17.Text = "» AL:";
     //
     // labelControl16
     //
     this.labelControl16.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl16.Location = new System.Drawing.Point(12, 235);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(73, 13);
     this.labelControl16.TabIndex = 163;
     this.labelControl16.Text = "» Aplicar del:";
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(11, 211);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(58, 13);
     this.labelControl7.TabIndex = 162;
     this.labelControl7.Text = "» Pack de:";
     //
     // cmb_grupopromocion
     //
     this.cmb_grupopromocion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_grupopromocion.FormattingEnabled = true;
     this.cmb_grupopromocion.Location = new System.Drawing.Point(120, 116);
     this.cmb_grupopromocion.Name = "cmb_grupopromocion";
     this.cmb_grupopromocion.Size = new System.Drawing.Size(201, 21);
     this.cmb_grupopromocion.TabIndex = 160;
     //
     // labelControl15
     //
     this.labelControl15.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl15.Location = new System.Drawing.Point(10, 119);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(81, 13);
     this.labelControl15.TabIndex = 159;
     this.labelControl15.Text = "» Grupo Prom:";
     //
     // perdsctocab
     //
     this.perdsctocab.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.perdsctocab.Location = new System.Drawing.Point(321, 70);
     this.perdsctocab.Name = "perdsctocab";
     this.perdsctocab.Size = new System.Drawing.Size(69, 21);
     this.perdsctocab.TabIndex = 158;
     this.perdsctocab.Text = "0.00";
     this.perdsctocab.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl14
     //
     this.labelControl14.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl14.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl14.Location = new System.Drawing.Point(256, 74);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(59, 13);
     this.labelControl14.TabIndex = 157;
     this.labelControl14.Text = "» %Dscto:";
     //
     // chk_aldocum
     //
     this.chk_aldocum.Location = new System.Drawing.Point(155, 71);
     this.chk_aldocum.MenuManager = this.barManager1;
     this.chk_aldocum.Name = "chk_aldocum";
     this.chk_aldocum.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_aldocum.Properties.Appearance.Options.UseForeColor = true;
     this.chk_aldocum.Properties.Caption = "Al Documento ?";
     this.chk_aldocum.Size = new System.Drawing.Size(97, 19);
     this.chk_aldocum.TabIndex = 156;
     //
     // prioridad
     //
     this.prioridad.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.prioridad.Location = new System.Drawing.Point(120, 70);
     this.prioridad.Name = "prioridad";
     this.prioridad.Size = new System.Drawing.Size(22, 21);
     this.prioridad.TabIndex = 155;
     this.prioridad.Text = "2";
     this.prioridad.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl13
     //
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl13.Location = new System.Drawing.Point(11, 74);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(65, 13);
     this.labelControl13.TabIndex = 154;
     this.labelControl13.Text = "» Prioridad:";
     //
     // cmb_tarjgrupoid
     //
     this.cmb_tarjgrupoid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_tarjgrupoid.FormattingEnabled = true;
     this.cmb_tarjgrupoid.Location = new System.Drawing.Point(120, 47);
     this.cmb_tarjgrupoid.Name = "cmb_tarjgrupoid";
     this.cmb_tarjgrupoid.Size = new System.Drawing.Size(201, 21);
     this.cmb_tarjgrupoid.TabIndex = 153;
     //
     // labelControl12
     //
     this.labelControl12.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl12.Location = new System.Drawing.Point(11, 52);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(99, 13);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "» Grupo Tarjetas:";
     //
     // cmb_tiendalist
     //
     this.cmb_tiendalist.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_tiendalist.FormattingEnabled = true;
     this.cmb_tiendalist.Location = new System.Drawing.Point(120, 25);
     this.cmb_tiendalist.Name = "cmb_tiendalist";
     this.cmb_tiendalist.Size = new System.Drawing.Size(201, 21);
     this.cmb_tiendalist.TabIndex = 151;
     //
     // fechafin
     //
     this.fechafin.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechafin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechafin.Location = new System.Drawing.Point(321, 93);
     this.fechafin.Name = "fechafin";
     this.fechafin.Size = new System.Drawing.Size(80, 20);
     this.fechafin.TabIndex = 125;
     //
     // fechaini
     //
     this.fechaini.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechaini.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechaini.Location = new System.Drawing.Point(120, 93);
     this.fechaini.Name = "fechaini";
     this.fechaini.Size = new System.Drawing.Size(80, 20);
     this.fechaini.TabIndex = 124;
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl6.Location = new System.Drawing.Point(250, 96);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(66, 13);
     this.labelControl6.TabIndex = 135;
     this.labelControl6.Text = "» Fecha Fin:";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(11, 96);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 134;
     this.labelControl5.Text = "» Fecha Inicio:";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(11, 29);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(105, 13);
     this.labelControl4.TabIndex = 131;
     this.labelControl4.Text = "» Lista de Tiendas:";
     //
     // promoname
     //
     this.promoname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.promoname.Location = new System.Drawing.Point(158, 3);
     this.promoname.Name = "promoname";
     this.promoname.Size = new System.Drawing.Size(325, 21);
     this.promoname.TabIndex = 130;
     //
     // promoid
     //
     this.promoid.AccessibleDescription = "";
     this.promoid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.promoid.Location = new System.Drawing.Point(121, 3);
     this.promoid.MaxLength = 4;
     this.promoid.Name = "promoid";
     this.promoid.Size = new System.Drawing.Size(35, 20);
     this.promoid.TabIndex = 128;
     this.promoid.Text = "0";
     this.promoid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(11, 6);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(94, 13);
     this.labelControl3.TabIndex = 123;
     this.labelControl3.Text = "» Denominación:";
     //
     // pnlcontroldet
     //
     this.pnlcontroldet.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnlcontroldet.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.Options.UseBackColor = true;
     this.pnlcontroldet.Appearance.Options.UseForeColor = true;
     this.pnlcontroldet.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlcontroldet.Controls.Add(this.btn_update);
     this.pnlcontroldet.Controls.Add(this.btn_search);
     this.pnlcontroldet.Controls.Add(this.rollo_search);
     this.pnlcontroldet.Controls.Add(this.btn_exportar);
     this.pnlcontroldet.Controls.Add(this.btn_importar);
     this.pnlcontroldet.Controls.Add(this.chk_aldoc2);
     this.pnlcontroldet.Controls.Add(this.btn_del);
     this.pnlcontroldet.Controls.Add(this.btn_add);
     this.pnlcontroldet.Controls.Add(this.btn_save);
     this.pnlcontroldet.Controls.Add(this.precunit);
     this.pnlcontroldet.Controls.Add(this.percdscto);
     this.pnlcontroldet.Controls.Add(this.labelControl9);
     this.pnlcontroldet.Controls.Add(this.labelControl8);
     this.pnlcontroldet.Controls.Add(this.dgb_promodet);
     this.pnlcontroldet.Controls.Add(this.labelControl2);
     this.pnlcontroldet.Controls.Add(this.articid);
     this.pnlcontroldet.Controls.Add(this.articname);
     this.pnlcontroldet.Location = new System.Drawing.Point(474, 304);
     this.pnlcontroldet.Name = "pnlcontroldet";
     this.pnlcontroldet.Size = new System.Drawing.Size(872, 296);
     this.pnlcontroldet.TabIndex = 121;
     //
     // btn_update
     //
     this.btn_update.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_update.Image = ((System.Drawing.Image)(resources.GetObject("btn_update.Image")));
     this.btn_update.Location = new System.Drawing.Point(494, 34);
     this.btn_update.Name = "btn_update";
     this.btn_update.Size = new System.Drawing.Size(70, 23);
     this.btn_update.TabIndex = 162;
     this.btn_update.Text = "&Modificar";
     this.btn_update.ToolTip = "Modificar";
     this.btn_update.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_update.Click += new System.EventHandler(this.btn_update_Click);
     //
     // btn_search
     //
     this.btn_search.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_search.Image = ((System.Drawing.Image)(resources.GetObject("btn_search.Image")));
     this.btn_search.Location = new System.Drawing.Point(208, 64);
     this.btn_search.Name = "btn_search";
     this.btn_search.Size = new System.Drawing.Size(25, 23);
     this.btn_search.TabIndex = 161;
     this.btn_search.ToolTip = "Buscar Codigo";
     this.btn_search.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     //
     // rollo_search
     //
     this.rollo_search.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.rollo_search.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.rollo_search.ForeColor = System.Drawing.Color.Firebrick;
     this.rollo_search.Location = new System.Drawing.Point(233, 64);
     this.rollo_search.Name = "rollo_search";
     this.rollo_search.Size = new System.Drawing.Size(76, 21);
     this.rollo_search.TabIndex = 160;
     this.rollo_search.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rollo_search_KeyDown);
     //
     // btn_exportar
     //
     this.btn_exportar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_exportar.Image = ((System.Drawing.Image)(resources.GetObject("btn_exportar.Image")));
     this.btn_exportar.Location = new System.Drawing.Point(22, 62);
     this.btn_exportar.Name = "btn_exportar";
     this.btn_exportar.Size = new System.Drawing.Size(70, 23);
     this.btn_exportar.TabIndex = 159;
     this.btn_exportar.Text = "&Exportar";
     this.btn_exportar.ToolTip = "Exportar";
     this.btn_exportar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_exportar.Click += new System.EventHandler(this.btn_exportar_Click);
     //
     // btn_importar
     //
     this.btn_importar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_importar.Image = ((System.Drawing.Image)(resources.GetObject("btn_importar.Image")));
     this.btn_importar.Location = new System.Drawing.Point(98, 62);
     this.btn_importar.Name = "btn_importar";
     this.btn_importar.Size = new System.Drawing.Size(70, 23);
     this.btn_importar.TabIndex = 158;
     this.btn_importar.Text = "&Importar";
     this.btn_importar.ToolTip = "Importar";
     this.btn_importar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_importar.Click += new System.EventHandler(this.btn_importar_Click);
     //
     // chk_aldoc2
     //
     this.chk_aldoc2.Location = new System.Drawing.Point(10, 37);
     this.chk_aldoc2.MenuManager = this.barManager1;
     this.chk_aldoc2.Name = "chk_aldoc2";
     this.chk_aldoc2.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_aldoc2.Properties.Appearance.Options.UseForeColor = true;
     this.chk_aldoc2.Properties.Caption = "Al Documento ?";
     this.chk_aldoc2.Size = new System.Drawing.Size(97, 19);
     this.chk_aldoc2.TabIndex = 157;
     this.chk_aldoc2.CheckedChanged += new System.EventHandler(this.chk_aldoc2_CheckedChanged);
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.Image = ((System.Drawing.Image)(resources.GetObject("btn_del.Image")));
     this.btn_del.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_del.Location = new System.Drawing.Point(494, 61);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(70, 23);
     this.btn_del.TabIndex = 144;
     this.btn_del.Text = "Eliminar";
     this.btn_del.ToolTip = "Eliminar";
     this.btn_del.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     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.Image = ((System.Drawing.Image)(resources.GetObject("btn_add.Image")));
     this.btn_add.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add.Location = new System.Drawing.Point(417, 61);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(71, 23);
     this.btn_add.TabIndex = 143;
     this.btn_add.Text = "Adicionar";
     this.btn_add.ToolTip = "Adicionar";
     this.btn_add.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // btn_save
     //
     this.btn_save.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_save.Image = ((System.Drawing.Image)(resources.GetObject("btn_save.Image")));
     this.btn_save.Location = new System.Drawing.Point(341, 61);
     this.btn_save.Name = "btn_save";
     this.btn_save.Size = new System.Drawing.Size(70, 23);
     this.btn_save.TabIndex = 154;
     this.btn_save.Text = "&Aceptar";
     this.btn_save.ToolTip = "Grabar";
     this.btn_save.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
     //
     // precunit
     //
     this.precunit.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit.Location = new System.Drawing.Point(366, 34);
     this.precunit.Name = "precunit";
     this.precunit.Size = new System.Drawing.Size(80, 21);
     this.precunit.TabIndex = 153;
     this.precunit.Text = "0.00";
     this.precunit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // percdscto
     //
     this.percdscto.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.percdscto.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.percdscto.Location = new System.Drawing.Point(173, 34);
     this.percdscto.Name = "percdscto";
     this.percdscto.Size = new System.Drawing.Size(80, 21);
     this.percdscto.TabIndex = 152;
     this.percdscto.Text = "0.00";
     this.percdscto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.percdscto.KeyDown += new System.Windows.Forms.KeyEventHandler(this.precunit1_KeyDown);
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl9.Location = new System.Drawing.Point(304, 39);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(52, 13);
     this.labelControl9.TabIndex = 151;
     this.labelControl9.Text = "» Precio :";
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl8.Location = new System.Drawing.Point(111, 39);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(56, 13);
     this.labelControl8.TabIndex = 150;
     this.labelControl8.Text = "» % Dcto:";
     //
     // dgb_promodet
     //
     this.dgb_promodet.AllowUserToAddRows = false;
     this.dgb_promodet.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_promodet.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.@__promoid,
     this._articid,
     this._articidold,
     this._articname,
     this._es_dscto,
     this.@__percdscto,
     this._precunit,
     this.@__status,
     this.@__feact,
     this._usuarip,
     this._cantidad});
     this.dgb_promodet.EnableHeadersVisualStyles = false;
     this.dgb_promodet.Location = new System.Drawing.Point(2, 90);
     this.dgb_promodet.Name = "dgb_promodet";
     this.dgb_promodet.ReadOnly = true;
     this.dgb_promodet.RowHeadersVisible = false;
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.Black;
     this.dgb_promodet.RowsDefaultCellStyle = dataGridViewCellStyle8;
     this.dgb_promodet.Size = new System.Drawing.Size(562, 202);
     this.dgb_promodet.TabIndex = 149;
     this.dgb_promodet.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellClick);
     this.dgb_promodet.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellEnter);
     this.dgb_promodet.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_listaPrecios_KeyUp);
     //
     // __promoid
     //
     this.@__promoid.DataPropertyName = "promoid";
     this.@__promoid.HeaderText = "promoid";
     this.@__promoid.Name = "__promoid";
     this.@__promoid.ReadOnly = true;
     this.@__promoid.Visible = false;
     //
     // _articid
     //
     this._articid.DataPropertyName = "articid";
     this._articid.HeaderText = "articid";
     this._articid.Name = "_articid";
     this._articid.ReadOnly = true;
     this._articid.Visible = false;
     //
     // _articidold
     //
     this._articidold.DataPropertyName = "articidold";
     this._articidold.HeaderText = "Codigo";
     this._articidold.Name = "_articidold";
     this._articidold.ReadOnly = true;
     this._articidold.Width = 70;
     //
     // _articname
     //
     this._articname.DataPropertyName = "articname";
     this._articname.HeaderText = "Denominación";
     this._articname.Name = "_articname";
     this._articname.ReadOnly = true;
     this._articname.Width = 250;
     //
     // _es_dscto
     //
     this._es_dscto.DataPropertyName = "es_dscto";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._es_dscto.DefaultCellStyle = dataGridViewCellStyle5;
     this._es_dscto.HeaderText = "Desc ?";
     this._es_dscto.Name = "_es_dscto";
     this._es_dscto.ReadOnly = true;
     this._es_dscto.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._es_dscto.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._es_dscto.Width = 65;
     //
     // __percdscto
     //
     this.@__percdscto.DataPropertyName = "percdscto";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N2";
     dataGridViewCellStyle6.NullValue = null;
     this.@__percdscto.DefaultCellStyle = dataGridViewCellStyle6;
     this.@__percdscto.HeaderText = "%";
     this.@__percdscto.Name = "__percdscto";
     this.@__percdscto.ReadOnly = true;
     this.@__percdscto.Width = 60;
     //
     // _precunit
     //
     this._precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this._precunit.DefaultCellStyle = dataGridViewCellStyle7;
     this._precunit.HeaderText = "Precio";
     this._precunit.Name = "_precunit";
     this._precunit.ReadOnly = true;
     this._precunit.Width = 80;
     //
     // __status
     //
     this.@__status.DataPropertyName = "status";
     this.@__status.HeaderText = "status";
     this.@__status.Name = "__status";
     this.@__status.ReadOnly = true;
     this.@__status.Visible = false;
     //
     // __feact
     //
     this.@__feact.DataPropertyName = "feact";
     this.@__feact.HeaderText = "feact";
     this.@__feact.Name = "__feact";
     this.@__feact.ReadOnly = true;
     this.@__feact.Visible = false;
     //
     // _usuarip
     //
     this._usuarip.DataPropertyName = "usuarip";
     this._usuarip.HeaderText = "usuarip";
     this._usuarip.Name = "_usuarip";
     this._usuarip.ReadOnly = true;
     this._usuarip.Visible = false;
     //
     // _cantidad
     //
     this._cantidad.DataPropertyName = "cantidad";
     this._cantidad.HeaderText = "cantidad";
     this._cantidad.Name = "_cantidad";
     this._cantidad.ReadOnly = true;
     this._cantidad.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(12, 7);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 123;
     this.labelControl2.Text = "» Articulo:";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.Group_chks);
     this.groupControl1.Controls.Add(this.cmb_perianio);
     this.groupControl1.Controls.Add(this.cmb_grupopromocion2);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Controls.Add(this.Mdi_dgv_promociones);
     this.groupControl1.Location = new System.Drawing.Point(0, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(471, 571);
     this.groupControl1.TabIndex = 142;
     this.groupControl1.Text = "Promociónes";
     //
     // Group_chks
     //
     this.Group_chks.Location = new System.Drawing.Point(31, 47);
     this.Group_chks.MenuManager = this.barManager1;
     this.Group_chks.Name = "Group_chks";
     this.Group_chks.Properties.Appearance.BackColor = System.Drawing.Color.Teal;
     this.Group_chks.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Group_chks.Properties.Appearance.ForeColor = System.Drawing.Color.White;
     this.Group_chks.Properties.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("Group_chks.Properties.Appearance.Image")));
     this.Group_chks.Properties.Appearance.Options.UseBackColor = true;
     this.Group_chks.Properties.Appearance.Options.UseFont = true;
     this.Group_chks.Properties.Appearance.Options.UseForeColor = true;
     this.Group_chks.Properties.Appearance.Options.UseImage = true;
     this.Group_chks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Group_chks.Properties.Columns = 3;
     this.Group_chks.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("0", "Vigentes"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("1", "Culminados"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("2", "Todos")});
     this.Group_chks.Size = new System.Drawing.Size(399, 21);
     this.Group_chks.TabIndex = 151;
     this.Group_chks.SelectedIndexChanged += new System.EventHandler(this.Group_chks_SelectedIndexChanged);
     //
     // cmb_perianio
     //
     this.cmb_perianio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_perianio.FormattingEnabled = true;
     this.cmb_perianio.Location = new System.Drawing.Point(52, 23);
     this.cmb_perianio.Name = "cmb_perianio";
     this.cmb_perianio.Size = new System.Drawing.Size(52, 21);
     this.cmb_perianio.TabIndex = 147;
     //
     // cmb_grupopromocion2
     //
     this.cmb_grupopromocion2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_grupopromocion2.FormattingEnabled = true;
     this.cmb_grupopromocion2.Location = new System.Drawing.Point(220, 23);
     this.cmb_grupopromocion2.Name = "cmb_grupopromocion2";
     this.cmb_grupopromocion2.Size = new System.Drawing.Size(201, 21);
     this.cmb_grupopromocion2.TabIndex = 146;
     //
     // labelControl11
     //
     this.labelControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl11.Location = new System.Drawing.Point(133, 26);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(81, 13);
     this.labelControl11.TabIndex = 145;
     this.labelControl11.Text = "» Grupo Prom:";
     //
     // labelControl10
     //
     this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl10.Location = new System.Drawing.Point(13, 26);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(36, 13);
     this.labelControl10.TabIndex = 144;
     this.labelControl10.Text = "» Año:";
     //
     // Mdi_dgv_promociones
     //
     this.Mdi_dgv_promociones.Location = new System.Drawing.Point(5, 71);
     this.Mdi_dgv_promociones.MainView = this.dgv_promociones;
     this.Mdi_dgv_promociones.Name = "Mdi_dgv_promociones";
     this.Mdi_dgv_promociones.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_promociones.Size = new System.Drawing.Size(461, 495);
     this.Mdi_dgv_promociones.TabIndex = 143;
     this.Mdi_dgv_promociones.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_promociones});
     this.Mdi_dgv_promociones.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_tiendalist_KeyUp);
     //
     // dgv_promociones
     //
     this.dgv_promociones.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_promociones.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_promociones.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_promociones.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_promociones.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_promociones.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_promociones.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_promociones.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_promociones.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_promociones.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_promociones.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_promociones.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_promociones.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_promociones.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_promociones.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_promociones.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_promociones.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_promociones.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_promociones.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.Row.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Row.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_promociones.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_promociones.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_promociones.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._promoid,
     this._prioridad,
     this._status,
     this._exclusivo,
     this._promoname,
     this._tiendalist,
     this._tarjgrupoid,
     this._tarjetaid,
     this._percdscto,
     this._al_docum,
     this._fechaini,
     this._fechafin,
     this._promotipoid,
     this._grupopromoid,
     this._campaniaid,
     this._usuar,
     this._fecre,
     this._feact,
     this._usuarap,
     this._fechap,
     this._solodias,
     this._dom,
     this._lun,
     this._mar,
     this._mie,
     this._jue,
     this._vie,
     this._sab,
     this._npack,
     this._impopack,
     this._aplicini,
     this._aplicfin,
     this._impodoc});
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_promociones.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition2});
     this.dgv_promociones.GridControl = this.Mdi_dgv_promociones;
     this.dgv_promociones.Name = "dgv_promociones";
     this.dgv_promociones.OptionsSelection.MultiSelect = true;
     this.dgv_promociones.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_promociones.OptionsView.ShowGroupPanel = false;
     this.dgv_promociones.PaintStyleName = "Web";
     this.dgv_promociones.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_tiendalist_RowCellClick);
     //
     // _promoid
     //
     this._promoid.Caption = "ID";
     this._promoid.FieldName = "promoid";
     this._promoid.Name = "_promoid";
     this._promoid.OptionsColumn.AllowEdit = false;
     this._promoid.Visible = true;
     this._promoid.VisibleIndex = 0;
     this._promoid.Width = 34;
     //
     // _prioridad
     //
     this._prioridad.Caption = "prioridad";
     this._prioridad.FieldName = "prioridad";
     this._prioridad.Name = "_prioridad";
     this._prioridad.OptionsColumn.AllowEdit = false;
     this._prioridad.Width = 281;
     //
     // _status
     //
     this._status.Caption = "status";
     this._status.FieldName = "status";
     this._status.Name = "_status";
     //
     // _exclusivo
     //
     this._exclusivo.Caption = "exclusivo";
     this._exclusivo.FieldName = "exclusivo";
     this._exclusivo.Name = "_exclusivo";
     //
     // _promoname
     //
     this._promoname.Caption = "Denominación";
     this._promoname.FieldName = "promoname";
     this._promoname.Name = "_promoname";
     this._promoname.OptionsColumn.AllowEdit = false;
     this._promoname.Visible = true;
     this._promoname.VisibleIndex = 1;
     this._promoname.Width = 252;
     //
     // _tiendalist
     //
     this._tiendalist.Caption = "tiendalist";
     this._tiendalist.FieldName = "tiendalist";
     this._tiendalist.Name = "_tiendalist";
     //
     // _tarjgrupoid
     //
     this._tarjgrupoid.Caption = "tarjgrupoid";
     this._tarjgrupoid.FieldName = "tarjgrupoid";
     this._tarjgrupoid.Name = "_tarjgrupoid";
     //
     // _tarjetaid
     //
     this._tarjetaid.Caption = "tarjetaid";
     this._tarjetaid.FieldName = "tarjetaid";
     this._tarjetaid.Name = "_tarjetaid";
     //
     // _percdscto
     //
     this._percdscto.Caption = "percdscto";
     this._percdscto.FieldName = "percdscto";
     this._percdscto.Name = "_percdscto";
     //
     // _al_docum
     //
     this._al_docum.Caption = "al_docum";
     this._al_docum.FieldName = "al_docum";
     this._al_docum.Name = "_al_docum";
     //
     // _fechaini
     //
     this._fechaini.Caption = "F.Ini";
     this._fechaini.FieldName = "fechaini";
     this._fechaini.Name = "_fechaini";
     this._fechaini.OptionsColumn.AllowEdit = false;
     this._fechaini.Visible = true;
     this._fechaini.VisibleIndex = 2;
     //
     // _fechafin
     //
     this._fechafin.Caption = "F.Fin";
     this._fechafin.FieldName = "fechafin";
     this._fechafin.Name = "_fechafin";
     this._fechafin.OptionsColumn.AllowEdit = false;
     this._fechafin.Visible = true;
     this._fechafin.VisibleIndex = 3;
     this._fechafin.Width = 85;
     //
     // _promotipoid
     //
     this._promotipoid.Caption = "promotipoid";
     this._promotipoid.FieldName = "promotipoid";
     this._promotipoid.Name = "_promotipoid";
     //
     // _grupopromoid
     //
     this._grupopromoid.Caption = "grupopromoid";
     this._grupopromoid.FieldName = "grupopromoid";
     this._grupopromoid.Name = "_grupopromoid";
     //
     // _campaniaid
     //
     this._campaniaid.Caption = "campaniaid";
     this._campaniaid.FieldName = "campaniaid";
     this._campaniaid.Name = "_campaniaid";
     //
     // _usuar
     //
     this._usuar.Caption = "usuar";
     this._usuar.FieldName = "usuar";
     this._usuar.Name = "_usuar";
     //
     // _fecre
     //
     this._fecre.Caption = "fecre";
     this._fecre.FieldName = "fecre";
     this._fecre.Name = "_fecre";
     //
     // _feact
     //
     this._feact.Caption = "feact";
     this._feact.FieldName = "feact";
     this._feact.Name = "_feact";
     //
     // _usuarap
     //
     this._usuarap.Caption = "gridColumn8";
     this._usuarap.Name = "_usuarap";
     //
     // _fechap
     //
     this._fechap.Caption = "fechap";
     this._fechap.FieldName = "fechap";
     this._fechap.Name = "_fechap";
     //
     // _solodias
     //
     this._solodias.Caption = "solodias";
     this._solodias.FieldName = "solodias";
     this._solodias.Name = "_solodias";
     //
     // _dom
     //
     this._dom.Caption = "dom";
     this._dom.FieldName = "dom";
     this._dom.Name = "_dom";
     //
     // _lun
     //
     this._lun.Caption = "lun";
     this._lun.FieldName = "lun";
     this._lun.Name = "_lun";
     //
     // _mar
     //
     this._mar.Caption = "mar";
     this._mar.FieldName = "mar";
     this._mar.Name = "_mar";
     //
     // _mie
     //
     this._mie.Caption = "mie";
     this._mie.FieldName = "mie";
     this._mie.Name = "_mie";
     //
     // _jue
     //
     this._jue.Caption = "jue";
     this._jue.FieldName = "jue";
     this._jue.Name = "_jue";
     //
     // _vie
     //
     this._vie.Caption = "vie";
     this._vie.FieldName = "vie";
     this._vie.Name = "_vie";
     //
     // _sab
     //
     this._sab.Caption = "sab";
     this._sab.FieldName = "sab";
     this._sab.Name = "_sab";
     //
     // _npack
     //
     this._npack.Caption = "npack";
     this._npack.FieldName = "npack";
     this._npack.Name = "_npack";
     //
     // _impopack
     //
     this._impopack.Caption = "impopack";
     this._impopack.FieldName = "impopack";
     this._impopack.Name = "_impopack";
     //
     // _aplicini
     //
     this._aplicini.Caption = "aplicini";
     this._aplicini.FieldName = "aplicini";
     this._aplicini.Name = "_aplicini";
     //
     // _aplicfin
     //
     this._aplicfin.Caption = "aplicfin";
     this._aplicfin.FieldName = "aplicfin";
     this._aplicfin.Name = "_aplicfin";
     //
     // _impodoc
     //
     this._impodoc.Caption = "impodoc";
     this._impodoc.FieldName = "impodoc";
     this._impodoc.Name = "_impodoc";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // Frm_promociones
     //
     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(1038, 595);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.pnlcontroldet);
     this.Controls.Add(this.pnl_01);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_promociones";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "» Lista de Promociónes";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).EndInit();
     this.pnl_01.ResumeLayout(false);
     this.pnl_01.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rdb_estado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_dias)).EndInit();
     this.pnl_dias.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chk_sab.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_lun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mar.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_dom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mie.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_jue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_vie.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_solodias.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldocum.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).EndInit();
     this.pnlcontroldet.ResumeLayout(false);
     this.pnlcontroldet.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldoc2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_promodet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Group_chks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_promociones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_promociones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).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();
     this.lblSimConnectServer = new System.Windows.Forms.Label();
     this.txtSimConnectServer = new System.Windows.Forms.TextBox();
     this.lblSimConnectPort = new System.Windows.Forms.Label();
     this.txtSimConnectPort = new System.Windows.Forms.NumericUpDown();
     this.pbConnect = new System.Windows.Forms.Button();
     this.cbConnected = new System.Windows.Forms.CheckBox();
     this.gpConnect = new System.Windows.Forms.GroupBox();
     this.gpRequest = new System.Windows.Forms.GroupBox();
     this.cmbIndex = new System.Windows.Forms.ComboBox();
     this.lblIndex = new System.Windows.Forms.Label();
     this.cbDisableAI = new System.Windows.Forms.CheckBox();
     this.lblMilliseconds = new System.Windows.Forms.Label();
     this.txtMilliseconds = new System.Windows.Forms.NumericUpDown();
     this.cmbFrequency = new System.Windows.Forms.ComboBox();
     this.lblFrequency = new System.Windows.Forms.Label();
     this.txtDescription = new System.Windows.Forms.TextBox();
     this.lblDescription = new System.Windows.Forms.Label();
     this.cbReadOnly = new System.Windows.Forms.CheckBox();
     this.txtSimVarValue = new System.Windows.Forms.TextBox();
     this.lblSimVarValue = new System.Windows.Forms.Label();
     this.txtUnit = new System.Windows.Forms.TextBox();
     this.lblUnit = new System.Windows.Forms.Label();
     this.pbSendRequest = new System.Windows.Forms.Button();
     this.cmbVariable = new System.Windows.Forms.ComboBox();
     this.lblVariable = new System.Windows.Forms.Label();
     this.dgVariables = new System.Windows.Forms.DataGridView();
     this.ReqID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SimVarName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SimVarUnit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SimVarFreq = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SimVarValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.VarIsReadOnly = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.SimVarUpdate = new System.Windows.Forms.DataGridViewButtonColumn();
     this.SimVarDelete = new System.Windows.Forms.DataGridViewButtonColumn();
     this.txtErrors = new System.Windows.Forms.TextBox();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.txtSimConnectPort)).BeginInit();
     this.gpConnect.SuspendLayout();
     this.gpRequest.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMilliseconds)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgVariables)).BeginInit();
     this.SuspendLayout();
     //
     // lblSimConnectServer
     //
     this.lblSimConnectServer.AutoSize = true;
     this.lblSimConnectServer.Location = new System.Drawing.Point(9, 25);
     this.lblSimConnectServer.Name = "lblSimConnectServer";
     this.lblSimConnectServer.Size = new System.Drawing.Size(84, 15);
     this.lblSimConnectServer.TabIndex = 0;
     this.lblSimConnectServer.Text = "MSFS 2020 PC:";
     //
     // txtSimConnectServer
     //
     this.txtSimConnectServer.Location = new System.Drawing.Point(99, 22);
     this.txtSimConnectServer.Name = "txtSimConnectServer";
     this.txtSimConnectServer.Size = new System.Drawing.Size(120, 23);
     this.txtSimConnectServer.TabIndex = 1;
     this.txtSimConnectServer.Text = "localhost";
     //
     // lblSimConnectPort
     //
     this.lblSimConnectPort.AutoSize = true;
     this.lblSimConnectPort.Location = new System.Drawing.Point(61, 51);
     this.lblSimConnectPort.Name = "lblSimConnectPort";
     this.lblSimConnectPort.Size = new System.Drawing.Size(32, 15);
     this.lblSimConnectPort.TabIndex = 2;
     this.lblSimConnectPort.Text = "Port:";
     //
     // txtSimConnectPort
     //
     this.txtSimConnectPort.Location = new System.Drawing.Point(99, 51);
     this.txtSimConnectPort.Maximum = new decimal(new int[] {
     65535,
     0,
     0,
     0});
     this.txtSimConnectPort.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.txtSimConnectPort.Name = "txtSimConnectPort";
     this.txtSimConnectPort.Size = new System.Drawing.Size(120, 23);
     this.txtSimConnectPort.TabIndex = 3;
     this.txtSimConnectPort.Value = new decimal(new int[] {
     500,
     0,
     0,
     0});
     //
     // pbConnect
     //
     this.pbConnect.Location = new System.Drawing.Point(144, 80);
     this.pbConnect.Name = "pbConnect";
     this.pbConnect.Size = new System.Drawing.Size(75, 23);
     this.pbConnect.TabIndex = 4;
     this.pbConnect.Text = "Connect";
     this.pbConnect.UseVisualStyleBackColor = true;
     this.pbConnect.Click += new System.EventHandler(this.pbConnect_Click);
     //
     // cbConnected
     //
     this.cbConnected.AutoSize = true;
     this.cbConnected.Enabled = false;
     this.cbConnected.Location = new System.Drawing.Point(253, 37);
     this.cbConnected.Name = "cbConnected";
     this.cbConnected.Size = new System.Drawing.Size(162, 19);
     this.cbConnected.TabIndex = 5;
     this.cbConnected.Text = "Connected to MSFS 2020?";
     this.cbConnected.UseVisualStyleBackColor = true;
     //
     // gpConnect
     //
     this.gpConnect.Controls.Add(this.txtSimConnectServer);
     this.gpConnect.Controls.Add(this.lblSimConnectServer);
     this.gpConnect.Controls.Add(this.pbConnect);
     this.gpConnect.Controls.Add(this.lblSimConnectPort);
     this.gpConnect.Controls.Add(this.txtSimConnectPort);
     this.gpConnect.Location = new System.Drawing.Point(12, 12);
     this.gpConnect.Name = "gpConnect";
     this.gpConnect.Size = new System.Drawing.Size(228, 117);
     this.gpConnect.TabIndex = 6;
     this.gpConnect.TabStop = false;
     this.gpConnect.Text = "Connect";
     //
     // gpRequest
     //
     this.gpRequest.Controls.Add(this.cmbIndex);
     this.gpRequest.Controls.Add(this.lblIndex);
     this.gpRequest.Controls.Add(this.cbDisableAI);
     this.gpRequest.Controls.Add(this.lblMilliseconds);
     this.gpRequest.Controls.Add(this.txtMilliseconds);
     this.gpRequest.Controls.Add(this.cmbFrequency);
     this.gpRequest.Controls.Add(this.lblFrequency);
     this.gpRequest.Controls.Add(this.txtDescription);
     this.gpRequest.Controls.Add(this.lblDescription);
     this.gpRequest.Controls.Add(this.cbReadOnly);
     this.gpRequest.Controls.Add(this.txtSimVarValue);
     this.gpRequest.Controls.Add(this.lblSimVarValue);
     this.gpRequest.Controls.Add(this.txtUnit);
     this.gpRequest.Controls.Add(this.lblUnit);
     this.gpRequest.Controls.Add(this.pbSendRequest);
     this.gpRequest.Controls.Add(this.cmbVariable);
     this.gpRequest.Controls.Add(this.lblVariable);
     this.gpRequest.Location = new System.Drawing.Point(13, 136);
     this.gpRequest.Name = "gpRequest";
     this.gpRequest.Size = new System.Drawing.Size(402, 178);
     this.gpRequest.TabIndex = 7;
     this.gpRequest.TabStop = false;
     this.gpRequest.Text = "Request";
     //
     // cmbIndex
     //
     this.cmbIndex.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbIndex.FormattingEnabled = true;
     this.cmbIndex.Items.AddRange(new object[] {
     "",
     "1",
     "2",
     "3",
     "4"});
     this.cmbIndex.Location = new System.Drawing.Point(313, 19);
     this.cmbIndex.Name = "cmbIndex";
     this.cmbIndex.Size = new System.Drawing.Size(62, 23);
     this.cmbIndex.TabIndex = 16;
     //
     // lblIndex
     //
     this.lblIndex.AutoSize = true;
     this.lblIndex.Location = new System.Drawing.Point(267, 19);
     this.lblIndex.Name = "lblIndex";
     this.lblIndex.Size = new System.Drawing.Size(39, 15);
     this.lblIndex.TabIndex = 15;
     this.lblIndex.Text = "Index:";
     //
     // cbDisableAI
     //
     this.cbDisableAI.AutoSize = true;
     this.cbDisableAI.Location = new System.Drawing.Point(179, 149);
     this.cbDisableAI.Name = "cbDisableAI";
     this.cbDisableAI.Size = new System.Drawing.Size(83, 19);
     this.cbDisableAI.TabIndex = 14;
     this.cbDisableAI.Text = "Disable AI?";
     this.cbDisableAI.UseVisualStyleBackColor = true;
     //
     // lblMilliseconds
     //
     this.lblMilliseconds.AutoSize = true;
     this.lblMilliseconds.Location = new System.Drawing.Point(273, 104);
     this.lblMilliseconds.Name = "lblMilliseconds";
     this.lblMilliseconds.Size = new System.Drawing.Size(73, 15);
     this.lblMilliseconds.TabIndex = 13;
     this.lblMilliseconds.Text = "milliseconds";
     //
     // txtMilliseconds
     //
     this.txtMilliseconds.Enabled = false;
     this.txtMilliseconds.Location = new System.Drawing.Point(192, 101);
     this.txtMilliseconds.Maximum = new decimal(new int[] {
     3000,
     0,
     0,
     0});
     this.txtMilliseconds.Minimum = new decimal(new int[] {
     20,
     0,
     0,
     0});
     this.txtMilliseconds.Name = "txtMilliseconds";
     this.txtMilliseconds.Size = new System.Drawing.Size(74, 23);
     this.txtMilliseconds.TabIndex = 12;
     this.txtMilliseconds.Value = new decimal(new int[] {
     20,
     0,
     0,
     0});
     //
     // cmbFrequency
     //
     this.cmbFrequency.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbFrequency.FormattingEnabled = true;
     this.cmbFrequency.Location = new System.Drawing.Point(65, 101);
     this.cmbFrequency.Name = "cmbFrequency";
     this.cmbFrequency.Size = new System.Drawing.Size(121, 23);
     this.cmbFrequency.TabIndex = 11;
     this.cmbFrequency.SelectedIndexChanged += new System.EventHandler(this.Frequency_Changed);
     //
     // lblFrequency
     //
     this.lblFrequency.AutoSize = true;
     this.lblFrequency.Location = new System.Drawing.Point(25, 104);
     this.lblFrequency.Name = "lblFrequency";
     this.lblFrequency.Size = new System.Drawing.Size(33, 15);
     this.lblFrequency.TabIndex = 10;
     this.lblFrequency.Text = "Freq:";
     //
     // txtDescription
     //
     this.txtDescription.Location = new System.Drawing.Point(65, 44);
     this.txtDescription.Name = "txtDescription";
     this.txtDescription.ReadOnly = true;
     this.txtDescription.Size = new System.Drawing.Size(310, 23);
     this.txtDescription.TabIndex = 9;
     //
     // lblDescription
     //
     this.lblDescription.AutoSize = true;
     this.lblDescription.Location = new System.Drawing.Point(24, 49);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(35, 15);
     this.lblDescription.TabIndex = 8;
     this.lblDescription.Text = "Desc:";
     //
     // cbReadOnly
     //
     this.cbReadOnly.AutoSize = true;
     this.cbReadOnly.Enabled = false;
     this.cbReadOnly.Location = new System.Drawing.Point(179, 131);
     this.cbReadOnly.Name = "cbReadOnly";
     this.cbReadOnly.Size = new System.Drawing.Size(85, 19);
     this.cbReadOnly.TabIndex = 7;
     this.cbReadOnly.Text = "Read Only?";
     this.cbReadOnly.UseVisualStyleBackColor = true;
     //
     // txtSimVarValue
     //
     this.txtSimVarValue.Enabled = false;
     this.txtSimVarValue.Location = new System.Drawing.Point(65, 137);
     this.txtSimVarValue.Name = "txtSimVarValue";
     this.txtSimVarValue.Size = new System.Drawing.Size(107, 23);
     this.txtSimVarValue.TabIndex = 6;
     //
     // lblSimVarValue
     //
     this.lblSimVarValue.AutoSize = true;
     this.lblSimVarValue.Location = new System.Drawing.Point(21, 140);
     this.lblSimVarValue.Name = "lblSimVarValue";
     this.lblSimVarValue.Size = new System.Drawing.Size(38, 15);
     this.lblSimVarValue.TabIndex = 5;
     this.lblSimVarValue.Text = "Value:";
     //
     // txtUnit
     //
     this.txtUnit.Location = new System.Drawing.Point(65, 72);
     this.txtUnit.Name = "txtUnit";
     this.txtUnit.ReadOnly = true;
     this.txtUnit.Size = new System.Drawing.Size(310, 23);
     this.txtUnit.TabIndex = 4;
     //
     // lblUnit
     //
     this.lblUnit.AutoSize = true;
     this.lblUnit.Location = new System.Drawing.Point(27, 76);
     this.lblUnit.Name = "lblUnit";
     this.lblUnit.Size = new System.Drawing.Size(32, 15);
     this.lblUnit.TabIndex = 3;
     this.lblUnit.Text = "Unit:";
     //
     // pbSendRequest
     //
     this.pbSendRequest.Location = new System.Drawing.Point(267, 144);
     this.pbSendRequest.Name = "pbSendRequest";
     this.pbSendRequest.Size = new System.Drawing.Size(108, 23);
     this.pbSendRequest.TabIndex = 2;
     this.pbSendRequest.Text = "Send Request";
     this.pbSendRequest.UseVisualStyleBackColor = true;
     this.pbSendRequest.Click += new System.EventHandler(this.pbSendRequest_Click);
     //
     // cmbVariable
     //
     this.cmbVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbVariable.FormattingEnabled = true;
     this.cmbVariable.Location = new System.Drawing.Point(65, 16);
     this.cmbVariable.Name = "cmbVariable";
     this.cmbVariable.Size = new System.Drawing.Size(197, 23);
     this.cmbVariable.TabIndex = 1;
     this.cmbVariable.SelectedIndexChanged += new System.EventHandler(this.Variable_Changed);
     //
     // lblVariable
     //
     this.lblVariable.AutoSize = true;
     this.lblVariable.Location = new System.Drawing.Point(8, 19);
     this.lblVariable.Name = "lblVariable";
     this.lblVariable.Size = new System.Drawing.Size(51, 15);
     this.lblVariable.TabIndex = 0;
     this.lblVariable.Text = "Variable:";
     //
     // dgVariables
     //
     this.dgVariables.AllowUserToAddRows = false;
     this.dgVariables.AllowUserToDeleteRows = false;
     this.dgVariables.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.dgVariables.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgVariables.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ReqID,
     this.SimVarName,
     this.SimVarUnit,
     this.SimVarFreq,
     this.SimVarValue,
     this.VarIsReadOnly,
     this.SimVarUpdate,
     this.SimVarDelete});
     this.dgVariables.Location = new System.Drawing.Point(427, 12);
     this.dgVariables.MultiSelect = false;
     this.dgVariables.Name = "dgVariables";
     this.dgVariables.ReadOnly = true;
     this.dgVariables.RowHeadersVisible = false;
     this.dgVariables.RowTemplate.Height = 25;
     this.dgVariables.Size = new System.Drawing.Size(593, 486);
     this.dgVariables.TabIndex = 8;
     this.dgVariables.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvButton_Click);
     //
     // ReqID
     //
     this.ReqID.HeaderText = "ReqID";
     this.ReqID.Name = "ReqID";
     this.ReqID.ReadOnly = true;
     this.ReqID.Visible = false;
     this.ReqID.Width = 80;
     //
     // SimVarName
     //
     this.SimVarName.HeaderText = "SimVar";
     this.SimVarName.Name = "SimVarName";
     this.SimVarName.ReadOnly = true;
     this.SimVarName.Width = 200;
     //
     // SimVarUnit
     //
     this.SimVarUnit.HeaderText = "Unit";
     this.SimVarUnit.Name = "SimVarUnit";
     this.SimVarUnit.ReadOnly = true;
     this.SimVarUnit.Visible = false;
     this.SimVarUnit.Width = 150;
     //
     // SimVarFreq
     //
     this.SimVarFreq.HeaderText = "Frequency";
     this.SimVarFreq.Name = "SimVarFreq";
     this.SimVarFreq.ReadOnly = true;
     this.SimVarFreq.Width = 80;
     //
     // SimVarValue
     //
     this.SimVarValue.HeaderText = "Value";
     this.SimVarValue.Name = "SimVarValue";
     this.SimVarValue.ReadOnly = true;
     //
     // VarIsReadOnly
     //
     this.VarIsReadOnly.HeaderText = "Read Only";
     this.VarIsReadOnly.Name = "VarIsReadOnly";
     this.VarIsReadOnly.ReadOnly = true;
     this.VarIsReadOnly.Width = 60;
     //
     // SimVarUpdate
     //
     this.SimVarUpdate.HeaderText = "Update";
     this.SimVarUpdate.Name = "SimVarUpdate";
     this.SimVarUpdate.ReadOnly = true;
     this.SimVarUpdate.Text = "Update";
     this.SimVarUpdate.ToolTipText = "Update";
     this.SimVarUpdate.UseColumnTextForButtonValue = true;
     this.SimVarUpdate.Width = 50;
     //
     // SimVarDelete
     //
     this.SimVarDelete.HeaderText = "Delete";
     this.SimVarDelete.Name = "SimVarDelete";
     this.SimVarDelete.ReadOnly = true;
     this.SimVarDelete.Text = "Delete";
     this.SimVarDelete.ToolTipText = "Delete";
     this.SimVarDelete.UseColumnTextForButtonValue = true;
     this.SimVarDelete.Width = 50;
     //
     // txtErrors
     //
     this.txtErrors.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
     this.txtErrors.ForeColor = System.Drawing.Color.Red;
     this.txtErrors.Location = new System.Drawing.Point(12, 320);
     this.txtErrors.Multiline = true;
     this.txtErrors.Name = "txtErrors";
     this.txtErrors.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtErrors.Size = new System.Drawing.Size(403, 178);
     this.txtErrors.TabIndex = 9;
     this.txtErrors.WordWrap = false;
     //
     // SimConnectHandler_DemoForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1032, 510);
     this.Controls.Add(this.txtErrors);
     this.Controls.Add(this.dgVariables);
     this.Controls.Add(this.gpRequest);
     this.Controls.Add(this.gpConnect);
     this.Controls.Add(this.cbConnected);
     this.Name = "SimConnectHandler_DemoForm";
     this.Text = "SimConnect Test";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormClose_Click);
     ((System.ComponentModel.ISupportInitialize)(this.txtSimConnectPort)).EndInit();
     this.gpConnect.ResumeLayout(false);
     this.gpConnect.PerformLayout();
     this.gpRequest.ResumeLayout(false);
     this.gpRequest.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMilliseconds)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgVariables)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		/// <summary>
		/// Initializes a new instance of the <see cref="TestIssue117TablebDataGridViewBase"/> class.
		/// </summary>
		public TestIssue117TablebDataGridViewBase()
		{			
			this.components = new System.ComponentModel.Container();			
			
			this.uxTestIssue117TablebDataGridView = new System.Windows.Forms.DataGridView();
			this.uxTestIssue117TablebBindingSource = new System.Windows.Forms.BindingSource(this.components);
			this.uxTestIssue117TablebErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxTestIssue117TableBidDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxDumbFieldDataGridViewColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
			((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TablebDataGridView)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TablebBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TablebErrorProvider)).BeginInit();
			this.SuspendLayout();
						
			// 
			// uxTestIssue117TablebErrorProvider
			// 
			this.uxTestIssue117TablebErrorProvider.ContainerControl = this;
			this.uxTestIssue117TablebErrorProvider.DataSource = this.uxTestIssue117TablebBindingSource;						
			// 
			// uxTestIssue117TablebDataGridView
			// 
			this.uxTestIssue117TablebDataGridView.AutoGenerateColumns = false;
			this.uxTestIssue117TablebDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
			this.uxTestIssue117TablebDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
		this.uxTestIssue117TableBidDataGridViewColumn,
		this.uxDumbFieldDataGridViewColumn			});
			this.uxTestIssue117TablebDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
			this.uxTestIssue117TablebDataGridView.Location = new System.Drawing.Point(0, 0);
			this.uxTestIssue117TablebDataGridView.Name = "uxTestIssue117TablebDataGridView";
			this.uxTestIssue117TablebDataGridView.Size = new System.Drawing.Size(470, 300);
			this.uxTestIssue117TablebDataGridView.TabIndex = 0;	
			this.uxTestIssue117TablebDataGridView.BackgroundColor = System.Drawing.Color.WhiteSmoke;
			this.uxTestIssue117TablebDataGridView.EnableHeadersVisualStyles = false;
			this.uxTestIssue117TablebDataGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnTestIssue117TablebDataGridViewDataError);
			this.uxTestIssue117TablebDataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnTestIssue117TablebDataGridViewCellValueNeeded);
			this.uxTestIssue117TablebDataGridView.CellValuePushed += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnTestIssue117TablebDataGridViewCellValuePushed);
			
			//
			// uxTestIssue117TableBidDataGridViewColumn
			//
			this.uxTestIssue117TableBidDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxTestIssue117TableBidDataGridViewColumn.DataPropertyName = "TestIssue117TableBid";
			this.uxTestIssue117TableBidDataGridViewColumn.HeaderText = "TestIssue117TableBid";
			this.uxTestIssue117TableBidDataGridViewColumn.Name = "uxTestIssue117TableBidDataGridViewColumn";
			this.uxTestIssue117TableBidDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxTestIssue117TableBidDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxTestIssue117TableBidDataGridViewColumn.ReadOnly = true;		
			//
			// uxDumbFieldDataGridViewColumn
			//
			this.uxDumbFieldDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxDumbFieldDataGridViewColumn.DataPropertyName = "DumbField";
			this.uxDumbFieldDataGridViewColumn.HeaderText = "DumbField";
			this.uxDumbFieldDataGridViewColumn.Name = "uxDumbFieldDataGridViewColumn";
			this.uxDumbFieldDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxDumbFieldDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxDumbFieldDataGridViewColumn.ReadOnly = false;		
			
			// this
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.uxTestIssue117TablebDataGridView);
			this.Name = "TestIssue117TablebDataGridView";
			this.Size = new System.Drawing.Size(470, 300);
			((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TablebErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TablebDataGridView)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TablebBindingSource)).EndInit();
			this.ResumeLayout(false);
		}
Ejemplo n.º 36
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.bOK = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cbDisableLBForVideo = new System.Windows.Forms.CheckBox();
     this.cbDisableForVideo = new System.Windows.Forms.CheckBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.fbosUpDown = new System.Windows.Forms.NumericUpDown();
     this.cmbFBViewMode = new System.Windows.Forms.ComboBox();
     this.cbUseFallbackRule = new System.Windows.Forms.CheckBox();
     this.button1 = new System.Windows.Forms.Button();
     this.cbVerboseLog = new System.Windows.Forms.CheckBox();
     this.bDelete = new System.Windows.Forms.Button();
     this.bModify = new System.Windows.Forms.Button();
     this.cbShowSwitchMsg = new System.Windows.Forms.CheckBox();
     this.dg_RuleSets = new System.Windows.Forms.DataGridView();
     this.ColEnabled = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.ColRuleName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColARFrom = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColARTo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColMinWidth = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColMaxWidth = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColMinHeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColMaxHeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColViewMode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColOverscan = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColEnableLBDetect = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColAutoCrop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColMaxCrop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bCancel = new System.Windows.Forms.Button();
     this.linkLabelForum = new System.Windows.Forms.LinkLabel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label16 = new System.Windows.Forms.Label();
     this.numDetectInterval = new System.Windows.Forms.NumericUpDown();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.numSymLimit = new System.Windows.Forms.NumericUpDown();
     this.numMaxCropLimit = new System.Windows.Forms.NumericUpDown();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.numBlackLevAve = new System.Windows.Forms.NumericUpDown();
     this.label8 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.numBlackLevel = new System.Windows.Forms.NumericUpDown();
     this.label7 = new System.Windows.Forms.Label();
     this.numBBdetHeight = new System.Windows.Forms.NumericUpDown();
     this.label18 = new System.Windows.Forms.Label();
     this.cbDisableLBGlobaly = new System.Windows.Forms.CheckBox();
     this.numBBdetWidth = new System.Windows.Forms.NumericUpDown();
     this.bImport = new System.Windows.Forms.Button();
     this.bExport = new System.Windows.Forms.Button();
     this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbEnableAdvanced = new System.Windows.Forms.CheckBox();
     this.bLoadDefaults = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fbosUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dg_RuleSets)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numDetectInterval)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numSymLimit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numMaxCropLimit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBlackLevAve)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBlackLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBBdetHeight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBBdetWidth)).BeginInit();
     this.SuspendLayout();
     //
     // bOK
     //
     this.bOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.bOK.Location = new System.Drawing.Point(672, 461);
     this.bOK.Name = "bOK";
     this.bOK.Size = new System.Drawing.Size(44, 23);
     this.bOK.TabIndex = 1;
     this.bOK.Text = "&OK";
     this.bOK.UseVisualStyleBackColor = true;
     this.bOK.Click += new System.EventHandler(this.bOK_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.cbDisableLBForVideo);
     this.groupBox1.Controls.Add(this.cbDisableForVideo);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.fbosUpDown);
     this.groupBox1.Controls.Add(this.cmbFBViewMode);
     this.groupBox1.Controls.Add(this.cbUseFallbackRule);
     this.groupBox1.Controls.Add(this.button1);
     this.groupBox1.Controls.Add(this.cbVerboseLog);
     this.groupBox1.Controls.Add(this.bDelete);
     this.groupBox1.Controls.Add(this.bModify);
     this.groupBox1.Controls.Add(this.cbShowSwitchMsg);
     this.groupBox1.Controls.Add(this.dg_RuleSets);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(770, 286);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     //
     // cbDisableLBForVideo
     //
     this.cbDisableLBForVideo.AutoSize = true;
     this.cbDisableLBForVideo.Location = new System.Drawing.Point(219, 239);
     this.cbDisableLBForVideo.Name = "cbDisableLBForVideo";
     this.cbDisableLBForVideo.Size = new System.Drawing.Size(164, 17);
     this.cbDisableLBForVideo.TabIndex = 14;
     this.cbDisableLBForVideo.Text = "Disable BB detect for non-TV";
     this.cbDisableLBForVideo.Visible = false;
     //
     // cbDisableForVideo
     //
     this.cbDisableForVideo.AutoSize = true;
     this.cbDisableForVideo.Location = new System.Drawing.Point(219, 216);
     this.cbDisableForVideo.Name = "cbDisableForVideo";
     this.cbDisableForVideo.Size = new System.Drawing.Size(114, 17);
     this.cbDisableForVideo.TabIndex = 13;
     this.cbDisableForVideo.Text = "Disable for non-TV";
     this.cbDisableForVideo.Visible = false;
     this.cbDisableForVideo.CheckedChanged += new System.EventHandler(this.cbDisableForVideo_CheckedChanged);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(216, 263);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(107, 13);
     this.label3.TabIndex = 12;
     this.label3.Text = "Fallback ZoomMode:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(464, 263);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(97, 13);
     this.label2.TabIndex = 11;
     this.label2.Text = "Fallback overscan:";
     //
     // fbosUpDown
     //
     this.fbosUpDown.Location = new System.Drawing.Point(567, 259);
     this.fbosUpDown.Maximum = new decimal(new int[] {
     20,
     0,
     0,
     0});
     this.fbosUpDown.Name = "fbosUpDown";
     this.fbosUpDown.Size = new System.Drawing.Size(41, 20);
     this.fbosUpDown.TabIndex = 10;
     //
     // cmbFBViewMode
     //
     this.cmbFBViewMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbFBViewMode.Location = new System.Drawing.Point(327, 258);
     this.cmbFBViewMode.Name = "cmbFBViewMode";
     this.cmbFBViewMode.Size = new System.Drawing.Size(121, 21);
     this.cmbFBViewMode.TabIndex = 9;
     //
     // cbUseFallbackRule
     //
     this.cbUseFallbackRule.AutoSize = true;
     this.cbUseFallbackRule.Location = new System.Drawing.Point(6, 262);
     this.cbUseFallbackRule.Name = "cbUseFallbackRule";
     this.cbUseFallbackRule.Size = new System.Drawing.Size(190, 17);
     this.cbUseFallbackRule.TabIndex = 8;
     this.cbUseFallbackRule.Text = "Use fallback rule if no match found";
     this.cbUseFallbackRule.UseVisualStyleBackColor = true;
     this.cbUseFallbackRule.CheckedChanged += new System.EventHandler(this.cbUseFallbackRule_CheckedChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(461, 215);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(91, 23);
     this.button1.TabIndex = 0;
     this.button1.Text = "&Add New Rule";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.bAdd_Click);
     //
     // cbVerboseLog
     //
     this.cbVerboseLog.AutoSize = true;
     this.cbVerboseLog.Location = new System.Drawing.Point(6, 216);
     this.cbVerboseLog.Name = "cbVerboseLog";
     this.cbVerboseLog.Size = new System.Drawing.Size(137, 17);
     this.cbVerboseLog.TabIndex = 0;
     this.cbVerboseLog.Text = "Enable verbose logging";
     this.cbVerboseLog.Visible = false;
     //
     // bDelete
     //
     this.bDelete.Location = new System.Drawing.Point(664, 215);
     this.bDelete.Name = "bDelete";
     this.bDelete.Size = new System.Drawing.Size(100, 23);
     this.bDelete.TabIndex = 2;
     this.bDelete.Text = "&Delete Selected";
     this.bDelete.UseVisualStyleBackColor = true;
     this.bDelete.Click += new System.EventHandler(this.bDelete_Click);
     //
     // bModify
     //
     this.bModify.Location = new System.Drawing.Point(558, 215);
     this.bModify.Name = "bModify";
     this.bModify.Size = new System.Drawing.Size(100, 23);
     this.bModify.TabIndex = 1;
     this.bModify.Text = "&Modify Selected";
     this.bModify.UseVisualStyleBackColor = true;
     this.bModify.Click += new System.EventHandler(this.bModify_Click);
     //
     // cbShowSwitchMsg
     //
     this.cbShowSwitchMsg.AutoSize = true;
     this.cbShowSwitchMsg.Location = new System.Drawing.Point(6, 239);
     this.cbShowSwitchMsg.Name = "cbShowSwitchMsg";
     this.cbShowSwitchMsg.Size = new System.Drawing.Size(194, 17);
     this.cbShowSwitchMsg.TabIndex = 3;
     this.cbShowSwitchMsg.Text = "Show message when rule is applied";
     this.cbShowSwitchMsg.UseVisualStyleBackColor = true;
     //
     // dg_RuleSets
     //
     this.dg_RuleSets.AllowUserToAddRows = false;
     this.dg_RuleSets.AllowUserToDeleteRows = false;
     this.dg_RuleSets.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dg_RuleSets.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dg_RuleSets.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dg_RuleSets.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ColEnabled,
     this.ColRuleName,
     this.ColARFrom,
     this.ColARTo,
     this.ColMinWidth,
     this.ColMaxWidth,
     this.ColMinHeight,
     this.ColMaxHeight,
     this.ColViewMode,
     this.ColOverscan,
     this.ColEnableLBDetect,
     this.ColAutoCrop,
     this.ColMaxCrop});
     this.dg_RuleSets.Location = new System.Drawing.Point(6, 16);
     this.dg_RuleSets.MultiSelect = false;
     this.dg_RuleSets.Name = "dg_RuleSets";
     this.dg_RuleSets.ReadOnly = true;
     this.dg_RuleSets.RowHeadersVisible = false;
     this.dg_RuleSets.Size = new System.Drawing.Size(758, 193);
     this.dg_RuleSets.TabIndex = 0;
     this.dg_RuleSets.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dg_RuleSets_CellContentClick);
     //
     // ColEnabled
     //
     this.ColEnabled.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColEnabled.HeaderText = "Enabled";
     this.ColEnabled.Name = "ColEnabled";
     this.ColEnabled.ReadOnly = true;
     this.ColEnabled.Width = 52;
     //
     // ColRuleName
     //
     this.ColRuleName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColRuleName.HeaderText = "Name";
     this.ColRuleName.Name = "ColRuleName";
     this.ColRuleName.ReadOnly = true;
     this.ColRuleName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColRuleName.Width = 41;
     //
     // ColARFrom
     //
     this.ColARFrom.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColARFrom.HeaderText = "AR From";
     this.ColARFrom.Name = "ColARFrom";
     this.ColARFrom.ReadOnly = true;
     this.ColARFrom.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColARFrom.Width = 54;
     //
     // ColARTo
     //
     this.ColARTo.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColARTo.HeaderText = "AR To";
     this.ColARTo.Name = "ColARTo";
     this.ColARTo.ReadOnly = true;
     this.ColARTo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColARTo.Width = 44;
     //
     // ColMinWidth
     //
     this.ColMinWidth.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColMinWidth.HeaderText = "Width From";
     this.ColMinWidth.Name = "ColMinWidth";
     this.ColMinWidth.ReadOnly = true;
     this.ColMinWidth.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColMinWidth.Width = 67;
     //
     // ColMaxWidth
     //
     this.ColMaxWidth.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColMaxWidth.HeaderText = "Width To";
     this.ColMaxWidth.Name = "ColMaxWidth";
     this.ColMaxWidth.ReadOnly = true;
     this.ColMaxWidth.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColMaxWidth.Width = 57;
     //
     // ColMinHeight
     //
     this.ColMinHeight.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColMinHeight.HeaderText = "Height From";
     this.ColMinHeight.Name = "ColMinHeight";
     this.ColMinHeight.ReadOnly = true;
     this.ColMinHeight.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColMinHeight.Width = 70;
     //
     // ColMaxHeight
     //
     this.ColMaxHeight.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColMaxHeight.HeaderText = "Height To";
     this.ColMaxHeight.Name = "ColMaxHeight";
     this.ColMaxHeight.ReadOnly = true;
     this.ColMaxHeight.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColMaxHeight.Width = 60;
     //
     // ColViewMode
     //
     this.ColViewMode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColViewMode.HeaderText = "ZoomMode";
     this.ColViewMode.Name = "ColViewMode";
     this.ColViewMode.ReadOnly = true;
     this.ColViewMode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColViewMode.Width = 67;
     //
     // ColOverscan
     //
     this.ColOverscan.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColOverscan.HeaderText = "Overscan";
     this.ColOverscan.Name = "ColOverscan";
     this.ColOverscan.ReadOnly = true;
     this.ColOverscan.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColOverscan.Width = 59;
     //
     // ColEnableLBDetect
     //
     this.ColEnableLBDetect.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColEnableLBDetect.HeaderText = "Init BB Det";
     this.ColEnableLBDetect.Name = "ColEnableLBDetect";
     this.ColEnableLBDetect.ReadOnly = true;
     this.ColEnableLBDetect.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColEnableLBDetect.Width = 64;
     //
     // ColAutoCrop
     //
     this.ColAutoCrop.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColAutoCrop.HeaderText = "Cont BB Det";
     this.ColAutoCrop.Name = "ColAutoCrop";
     this.ColAutoCrop.ReadOnly = true;
     this.ColAutoCrop.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColAutoCrop.Width = 72;
     //
     // ColMaxCrop
     //
     this.ColMaxCrop.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ColMaxCrop.HeaderText = "MaxCrop";
     this.ColMaxCrop.Name = "ColMaxCrop";
     this.ColMaxCrop.ReadOnly = true;
     this.ColMaxCrop.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ColMaxCrop.Width = 55;
     //
     // bCancel
     //
     this.bCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bCancel.Location = new System.Drawing.Point(726, 461);
     this.bCancel.Name = "bCancel";
     this.bCancel.Size = new System.Drawing.Size(50, 23);
     this.bCancel.TabIndex = 0;
     this.bCancel.Text = "Cancel";
     this.bCancel.UseVisualStyleBackColor = true;
     this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
     //
     // linkLabelForum
     //
     this.linkLabelForum.AutoSize = true;
     this.linkLabelForum.Location = new System.Drawing.Point(128, 466);
     this.linkLabelForum.Name = "linkLabelForum";
     this.linkLabelForum.Size = new System.Drawing.Size(266, 13);
     this.linkLabelForum.TabIndex = 7;
     this.linkLabelForum.TabStop = true;
     this.linkLabelForum.Text = "Click here to jump to the related MediaPortal Wiki page";
     this.linkLabelForum.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelForum_LinkClicked);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.label16);
     this.groupBox2.Controls.Add(this.numDetectInterval);
     this.groupBox2.Controls.Add(this.label15);
     this.groupBox2.Controls.Add(this.label14);
     this.groupBox2.Controls.Add(this.label13);
     this.groupBox2.Controls.Add(this.label12);
     this.groupBox2.Controls.Add(this.numSymLimit);
     this.groupBox2.Controls.Add(this.numMaxCropLimit);
     this.groupBox2.Controls.Add(this.label11);
     this.groupBox2.Controls.Add(this.label10);
     this.groupBox2.Controls.Add(this.label9);
     this.groupBox2.Controls.Add(this.numBlackLevAve);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.numBlackLevel);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.numBBdetHeight);
     this.groupBox2.Controls.Add(this.label18);
     this.groupBox2.Controls.Add(this.cbDisableLBGlobaly);
     this.groupBox2.Controls.Add(this.numBBdetWidth);
     this.groupBox2.Location = new System.Drawing.Point(12, 313);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(770, 81);
     this.groupBox2.TabIndex = 8;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Black Bar (BB) detection options";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(6, 39);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(150, 13);
     this.label16.TabIndex = 51;
     this.label16.Text = "Detection interval (0.25s units)";
     this.label16.Visible = false;
     //
     // numDetectInterval
     //
     this.numDetectInterval.Location = new System.Drawing.Point(44, 57);
     this.numDetectInterval.Maximum = new decimal(new int[] {
     120,
     0,
     0,
     0});
     this.numDetectInterval.Minimum = new decimal(new int[] {
     2,
     0,
     0,
     0});
     this.numDetectInterval.Name = "numDetectInterval";
     this.numDetectInterval.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.numDetectInterval.Size = new System.Drawing.Size(43, 20);
     this.numDetectInterval.TabIndex = 50;
     this.numDetectInterval.Value = new decimal(new int[] {
     4,
     0,
     0,
     0});
     this.numDetectInterval.Visible = false;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(243, 11);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(59, 13);
     this.label15.TabIndex = 49;
     this.label15.Text = "Processing";
     this.label15.Visible = false;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(355, 11);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(145, 13);
     this.label14.TabIndex = 48;
     this.label14.Text = "Search limits (% of frame size)";
     this.label14.Visible = false;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(148, 61);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(122, 13);
     this.label13.TabIndex = 47;
     this.label13.Text = "Symmetry check limit (%)";
     this.label13.Visible = false;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(186, 35);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(86, 13);
     this.label12.TabIndex = 45;
     this.label12.Text = "MaxCrop limit (%)";
     this.label12.Visible = false;
     //
     // numSymLimit
     //
     this.numSymLimit.Location = new System.Drawing.Point(280, 57);
     this.numSymLimit.Maximum = new decimal(new int[] {
     90,
     0,
     0,
     0});
     this.numSymLimit.Minimum = new decimal(new int[] {
     5,
     0,
     0,
     0});
     this.numSymLimit.Name = "numSymLimit";
     this.numSymLimit.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.numSymLimit.Size = new System.Drawing.Size(43, 20);
     this.numSymLimit.TabIndex = 46;
     this.numSymLimit.Value = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numSymLimit.Visible = false;
     //
     // numMaxCropLimit
     //
     this.numMaxCropLimit.Location = new System.Drawing.Point(280, 31);
     this.numMaxCropLimit.Maximum = new decimal(new int[] {
     50,
     0,
     0,
     0});
     this.numMaxCropLimit.Name = "numMaxCropLimit";
     this.numMaxCropLimit.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.numMaxCropLimit.Size = new System.Drawing.Size(43, 20);
     this.numMaxCropLimit.TabIndex = 44;
     this.numMaxCropLimit.Value = new decimal(new int[] {
     12,
     0,
     0,
     0});
     this.numMaxCropLimit.Visible = false;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(519, 61);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(86, 13);
     this.label11.TabIndex = 43;
     this.label11.Text = "For 25% of pixels";
     this.label11.Visible = false;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(524, 35);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(81, 13);
     this.label10.TabIndex = 42;
     this.label10.Text = "For single pixels";
     this.label10.Visible = false;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(661, 61);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(99, 13);
     this.label9.TabIndex = 41;
     this.label9.Text = "(4 - 255, default 16)";
     this.label9.Visible = false;
     //
     // numBlackLevAve
     //
     this.numBlackLevAve.Location = new System.Drawing.Point(612, 57);
     this.numBlackLevAve.Maximum = new decimal(new int[] {
     255,
     0,
     0,
     0});
     this.numBlackLevAve.Minimum = new decimal(new int[] {
     4,
     0,
     0,
     0});
     this.numBlackLevAve.Name = "numBlackLevAve";
     this.numBlackLevAve.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.numBlackLevAve.Size = new System.Drawing.Size(43, 20);
     this.numBlackLevAve.TabIndex = 40;
     this.numBlackLevAve.Value = new decimal(new int[] {
     16,
     0,
     0,
     0});
     this.numBlackLevAve.Visible = false;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(357, 35);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(99, 13);
     this.label8.TabIndex = 39;
     this.label8.Text = "Left/right height (%)";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label8.Visible = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(661, 35);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(99, 13);
     this.label1.TabIndex = 35;
     this.label1.Text = "(4 - 255, default 32)\r\n";
     this.label1.Visible = false;
     //
     // numBlackLevel
     //
     this.numBlackLevel.Location = new System.Drawing.Point(612, 31);
     this.numBlackLevel.Maximum = new decimal(new int[] {
     255,
     0,
     0,
     0});
     this.numBlackLevel.Minimum = new decimal(new int[] {
     4,
     0,
     0,
     0});
     this.numBlackLevel.Name = "numBlackLevel";
     this.numBlackLevel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.numBlackLevel.Size = new System.Drawing.Size(43, 20);
     this.numBlackLevel.TabIndex = 34;
     this.numBlackLevel.Value = new decimal(new int[] {
     32,
     0,
     0,
     0});
     this.numBlackLevel.Visible = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(345, 61);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(111, 13);
     this.label7.TabIndex = 38;
     this.label7.Text = "Top/bottom width (%) ";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label7.Visible = false;
     //
     // numBBdetHeight
     //
     this.numBBdetHeight.Location = new System.Drawing.Point(461, 31);
     this.numBBdetHeight.Maximum = new decimal(new int[] {
     90,
     0,
     0,
     0});
     this.numBBdetHeight.Minimum = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numBBdetHeight.Name = "numBBdetHeight";
     this.numBBdetHeight.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.numBBdetHeight.Size = new System.Drawing.Size(43, 20);
     this.numBBdetHeight.TabIndex = 37;
     this.numBBdetHeight.Value = new decimal(new int[] {
     40,
     0,
     0,
     0});
     this.numBBdetHeight.Visible = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(578, 11);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(110, 13);
     this.label18.TabIndex = 33;
     this.label18.Text = "Black level thresholds";
     this.label18.Visible = false;
     //
     // cbDisableLBGlobaly
     //
     this.cbDisableLBGlobaly.AutoSize = true;
     this.cbDisableLBGlobaly.Location = new System.Drawing.Point(6, 19);
     this.cbDisableLBGlobaly.Name = "cbDisableLBGlobaly";
     this.cbDisableLBGlobaly.Size = new System.Drawing.Size(170, 17);
     this.cbDisableLBGlobaly.TabIndex = 0;
     this.cbDisableLBGlobaly.Text = "Disable all Black Bar detection";
     this.cbDisableLBGlobaly.UseVisualStyleBackColor = true;
     //
     // numBBdetWidth
     //
     this.numBBdetWidth.Location = new System.Drawing.Point(461, 57);
     this.numBBdetWidth.Maximum = new decimal(new int[] {
     90,
     0,
     0,
     0});
     this.numBBdetWidth.Minimum = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numBBdetWidth.Name = "numBBdetWidth";
     this.numBBdetWidth.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.numBBdetWidth.Size = new System.Drawing.Size(43, 20);
     this.numBBdetWidth.TabIndex = 36;
     this.numBBdetWidth.Value = new decimal(new int[] {
     40,
     0,
     0,
     0});
     this.numBBdetWidth.Visible = false;
     //
     // bImport
     //
     this.bImport.Location = new System.Drawing.Point(543, 461);
     this.bImport.Name = "bImport";
     this.bImport.Size = new System.Drawing.Size(88, 23);
     this.bImport.TabIndex = 35;
     this.bImport.Text = "Import Settings";
     this.bImport.UseVisualStyleBackColor = true;
     this.bImport.Click += new System.EventHandler(this.bImport_Click);
     //
     // bExport
     //
     this.bExport.Location = new System.Drawing.Point(444, 461);
     this.bExport.Name = "bExport";
     this.bExport.Size = new System.Drawing.Size(93, 23);
     this.bExport.TabIndex = 36;
     this.bExport.Text = "Export Settings";
     this.bExport.UseVisualStyleBackColor = true;
     this.bExport.Click += new System.EventHandler(this.bExport_Click);
     //
     // openFileDialog
     //
     this.openFileDialog.FileName = "openFileDialog1";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(18, 421);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(402, 13);
     this.label4.TabIndex = 37;
     this.label4.Text = "Rules are checked from top to bottom, and checking stops at the first matching ru" +
     "le.";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(15, 397);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(44, 15);
     this.label5.TabIndex = 38;
     this.label5.Text = "Notes";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(18, 434);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(548, 13);
     this.label6.TabIndex = 39;
     this.label6.Text = "Rules with negative AR values are only used for letterbox/pillarbox video detecti" +
     "on (when BB detection is enabled).";
     //
     // cbEnableAdvanced
     //
     this.cbEnableAdvanced.AutoSize = true;
     this.cbEnableAdvanced.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbEnableAdvanced.Location = new System.Drawing.Point(586, 403);
     this.cbEnableAdvanced.Name = "cbEnableAdvanced";
     this.cbEnableAdvanced.Size = new System.Drawing.Size(182, 19);
     this.cbEnableAdvanced.TabIndex = 40;
     this.cbEnableAdvanced.Text = "Show Advanced Settings";
     this.cbEnableAdvanced.UseVisualStyleBackColor = true;
     this.cbEnableAdvanced.CheckedChanged += new System.EventHandler(this.cbEnableAdvanced_CheckedChanged);
     //
     // bLoadDefaults
     //
     this.bLoadDefaults.Location = new System.Drawing.Point(14, 461);
     this.bLoadDefaults.Name = "bLoadDefaults";
     this.bLoadDefaults.Size = new System.Drawing.Size(88, 23);
     this.bLoadDefaults.TabIndex = 41;
     this.bLoadDefaults.Text = "Load Defaults";
     this.bLoadDefaults.UseVisualStyleBackColor = true;
     this.bLoadDefaults.Click += new System.EventHandler(this.bLoadDefaults_Click);
     //
     // ViewModeSwitcherConfig
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.bCancel;
     this.ClientSize = new System.Drawing.Size(794, 496);
     this.Controls.Add(this.bLoadDefaults);
     this.Controls.Add(this.cbEnableAdvanced);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.bExport);
     this.Controls.Add(this.bImport);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.linkLabelForum);
     this.Controls.Add(this.bCancel);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.bOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.MaximumSize = new System.Drawing.Size(1000, 530);
     this.MinimumSize = new System.Drawing.Size(810, 530);
     this.Name = "ViewModeSwitcherConfig";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "ViewModeSwitcherConfig";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fbosUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dg_RuleSets)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numDetectInterval)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numSymLimit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numMaxCropLimit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBlackLevAve)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBlackLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBBdetHeight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBBdetWidth)).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 dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ucTableSort = new DotNet.WinForm.Common.WinControls.UCTableSort();
     this.btnClose = new System.Windows.Forms.Button();
     this.grdUser = new System.Windows.Forms.DataGridView();
     this.colRealName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAll = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserCompany = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserSubCompany = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserDepartment = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserWorkgroup = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUser = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colDetail = new System.Windows.Forms.DataGridViewButtonColumn();
     this.btnBatchSave = new System.Windows.Forms.Button();
     this.lblPermissionScopeReq = new System.Windows.Forms.Label();
     this.ucPermissionScope = new DotNet.WinForm.Common.WinControls.UCScopePermissionSelect();
     this.lblPermissionScope = new System.Windows.Forms.Label();
     this.btnSearch = new System.Windows.Forms.Button();
     this.lblContents = new System.Windows.Forms.Label();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.btnExport = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).BeginInit();
     this.SuspendLayout();
     //
     // ucTableSort
     //
     this.ucTableSort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucTableSort.Location = new System.Drawing.Point(8, 563);
     this.ucTableSort.Margin = new System.Windows.Forms.Padding(0);
     this.ucTableSort.Name = "ucTableSort";
     this.ucTableSort.OEntityId = null;
     this.ucTableSort.Padding = new System.Windows.Forms.Padding(1);
     this.ucTableSort.SetBottomEnabled = false;
     this.ucTableSort.SetDownEnabled = false;
     this.ucTableSort.SetTopEnabled = false;
     this.ucTableSort.SetUpEnabled = false;
     this.ucTableSort.Size = new System.Drawing.Size(99, 24);
     this.ucTableSort.TabIndex = 7;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(841, 564);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 9;
     this.btnClose.Text = "关闭";
     this.btnClose.UseVisualStyleBackColor = true;
     //
     // grdUser
     //
     this.grdUser.AllowUserToAddRows = false;
     this.grdUser.AllowUserToDeleteRows = false;
     this.grdUser.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.grdUser.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colRealName,
     this.colAll,
     this.colUserCompany,
     this.colUserSubCompany,
     this.colUserDepartment,
     this.colUserWorkgroup,
     this.colUser,
     this.colDetail});
     this.grdUser.Location = new System.Drawing.Point(10, 40);
     this.grdUser.MultiSelect = false;
     this.grdUser.Name = "grdUser";
     this.grdUser.RowTemplate.Height = 23;
     this.grdUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdUser.Size = new System.Drawing.Size(904, 516);
     this.grdUser.TabIndex = 6;
     this.grdUser.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdUser_CellContentClick);
     //
     // colRealName
     //
     this.colRealName.DataPropertyName = "RealName";
     this.colRealName.FillWeight = 150F;
     this.colRealName.Frozen = true;
     this.colRealName.HeaderText = "名称";
     this.colRealName.MaxInputLength = 200;
     this.colRealName.Name = "colRealName";
     this.colRealName.ReadOnly = true;
     this.colRealName.Width = 150;
     //
     // colAll
     //
     this.colAll.DataPropertyName = "colAll";
     this.colAll.FillWeight = 80F;
     this.colAll.HeaderText = "全部";
     this.colAll.Name = "colAll";
     //
     // colUserCompany
     //
     this.colUserCompany.DataPropertyName = "colUserCompany";
     this.colUserCompany.FillWeight = 80F;
     this.colUserCompany.HeaderText = "所在公司";
     this.colUserCompany.Name = "colUserCompany";
     //
     // colUserSubCompany
     //
     this.colUserSubCompany.DataPropertyName = "colUserSubCompany";
     this.colUserSubCompany.HeaderText = "所在分支机构";
     this.colUserSubCompany.Name = "colUserSubCompany";
     this.colUserSubCompany.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     //
     // colUserDepartment
     //
     this.colUserDepartment.DataPropertyName = "colUserDepartment";
     this.colUserDepartment.FillWeight = 80F;
     this.colUserDepartment.HeaderText = "所在部门";
     this.colUserDepartment.Name = "colUserDepartment";
     //
     // colUserWorkgroup
     //
     this.colUserWorkgroup.DataPropertyName = "colUserWorkgroup";
     this.colUserWorkgroup.HeaderText = "所在工作组";
     this.colUserWorkgroup.Name = "colUserWorkgroup";
     //
     // colUser
     //
     this.colUser.DataPropertyName = "colUser";
     this.colUser.FillWeight = 80F;
     this.colUser.HeaderText = "仅本人";
     this.colUser.Name = "colUser";
     //
     // colDetail
     //
     this.colDetail.FillWeight = 80F;
     this.colDetail.HeaderText = "设置明细";
     this.colDetail.Name = "colDetail";
     this.colDetail.Text = "Detail";
     this.colDetail.ToolTipText = "组织机构为基础数据权限明细";
     this.colDetail.UseColumnTextForButtonValue = true;
     this.colDetail.Width = 80;
     //
     // btnBatchSave
     //
     this.btnBatchSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchSave.Location = new System.Drawing.Point(763, 564);
     this.btnBatchSave.Name = "btnBatchSave";
     this.btnBatchSave.Size = new System.Drawing.Size(75, 23);
     this.btnBatchSave.TabIndex = 8;
     this.btnBatchSave.Text = "保存(&S)";
     this.btnBatchSave.UseVisualStyleBackColor = true;
     this.btnBatchSave.Click += new System.EventHandler(this.btnBatchSave_Click);
     //
     // lblPermissionScopeReq
     //
     this.lblPermissionScopeReq.AutoSize = true;
     this.lblPermissionScopeReq.ForeColor = System.Drawing.Color.Red;
     this.lblPermissionScopeReq.Location = new System.Drawing.Point(372, 16);
     this.lblPermissionScopeReq.Name = "lblPermissionScopeReq";
     this.lblPermissionScopeReq.Size = new System.Drawing.Size(11, 12);
     this.lblPermissionScopeReq.TabIndex = 2;
     this.lblPermissionScopeReq.Text = "*";
     //
     // ucPermissionScope
     //
     this.ucPermissionScope.AllowNull = false;
     this.ucPermissionScope.AllowSelect = true;
     this.ucPermissionScope.Location = new System.Drawing.Point(91, 11);
     this.ucPermissionScope.MultiSelect = false;
     this.ucPermissionScope.Name = "ucPermissionScope";
     this.ucPermissionScope.SelectedFullName = "";
     this.ucPermissionScope.SelectedId = "";
     this.ucPermissionScope.Size = new System.Drawing.Size(276, 22);
     this.ucPermissionScope.TabIndex = 1;
     this.ucPermissionScope.SelectedIndexChanged += new BaseBusinessLogic.SelectedIndexChangedEventHandler(this.ucPermissionScope_SelectedIndexChanged);
     //
     // lblPermissionScope
     //
     this.lblPermissionScope.Location = new System.Drawing.Point(14, 14);
     this.lblPermissionScope.Name = "lblPermissionScope";
     this.lblPermissionScope.Size = new System.Drawing.Size(81, 12);
     this.lblPermissionScope.TabIndex = 0;
     this.lblPermissionScope.Text = "数据权限:";
     this.lblPermissionScope.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnSearch
     //
     this.btnSearch.Location = new System.Drawing.Point(702, 11);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(75, 23);
     this.btnSearch.TabIndex = 5;
     this.btnSearch.Text = "查询(&F)";
     this.btnSearch.UseVisualStyleBackColor = true;
     //
     // lblContents
     //
     this.lblContents.Location = new System.Drawing.Point(425, 16);
     this.lblContents.Name = "lblContents";
     this.lblContents.Size = new System.Drawing.Size(87, 12);
     this.lblContents.TabIndex = 3;
     this.lblContents.Text = "查询(&S):";
     this.lblContents.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(515, 12);
     this.txtSearch.MaxLength = 20;
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(184, 21);
     this.txtSearch.TabIndex = 4;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Location = new System.Drawing.Point(805, 10);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(111, 23);
     this.btnExport.TabIndex = 10;
     this.btnExport.Text = "导出Excel...";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // FrmUserOrganizeScope
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(923, 593);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.lblContents);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.lblPermissionScopeReq);
     this.Controls.Add(this.ucPermissionScope);
     this.Controls.Add(this.lblPermissionScope);
     this.Controls.Add(this.btnBatchSave);
     this.Controls.Add(this.ucTableSort);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.grdUser);
     this.Name = "FrmUserOrganizeScope";
     this.Text = "用户管理范围设置";
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="TestIssue117TableaDataGridViewBase"/> class.
        /// </summary>
        public TestIssue117TableaDataGridViewBase()
        {
            this.components = new System.ComponentModel.Container();

            this.uxTestIssue117TableaDataGridView         = new System.Windows.Forms.DataGridView();
            this.uxTestIssue117TableaBindingSource        = new System.Windows.Forms.BindingSource(this.components);
            this.uxTestIssue117TableaErrorProvider        = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxTestIssue117TableAidDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxDumbFieldDataGridViewColumn            = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TableaDataGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TableaBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TableaErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTestIssue117TableaErrorProvider
            //
            this.uxTestIssue117TableaErrorProvider.ContainerControl = this;
            this.uxTestIssue117TableaErrorProvider.DataSource       = this.uxTestIssue117TableaBindingSource;
            //
            // uxTestIssue117TableaDataGridView
            //
            this.uxTestIssue117TableaDataGridView.AutoGenerateColumns         = false;
            this.uxTestIssue117TableaDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.uxTestIssue117TableaDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
                this.uxTestIssue117TableAidDataGridViewColumn,
                this.uxDumbFieldDataGridViewColumn
            });
            this.uxTestIssue117TableaDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
            this.uxTestIssue117TableaDataGridView.Location                  = new System.Drawing.Point(0, 0);
            this.uxTestIssue117TableaDataGridView.Name                      = "uxTestIssue117TableaDataGridView";
            this.uxTestIssue117TableaDataGridView.Size                      = new System.Drawing.Size(470, 300);
            this.uxTestIssue117TableaDataGridView.TabIndex                  = 0;
            this.uxTestIssue117TableaDataGridView.BackgroundColor           = System.Drawing.Color.WhiteSmoke;
            this.uxTestIssue117TableaDataGridView.EnableHeadersVisualStyles = false;
            this.uxTestIssue117TableaDataGridView.DataError                += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnTestIssue117TableaDataGridViewDataError);
            this.uxTestIssue117TableaDataGridView.CellValueNeeded          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnTestIssue117TableaDataGridViewCellValueNeeded);
            this.uxTestIssue117TableaDataGridView.CellValuePushed          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnTestIssue117TableaDataGridViewCellValuePushed);

            //
            // uxTestIssue117TableAidDataGridViewColumn
            //
            this.uxTestIssue117TableAidDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxTestIssue117TableAidDataGridViewColumn.DataPropertyName = "TestIssue117TableAid";
            this.uxTestIssue117TableAidDataGridViewColumn.HeaderText       = "TestIssue117TableAid";
            this.uxTestIssue117TableAidDataGridViewColumn.Name             = "uxTestIssue117TableAidDataGridViewColumn";
            this.uxTestIssue117TableAidDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxTestIssue117TableAidDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxTestIssue117TableAidDataGridViewColumn.ReadOnly         = true;
            //
            // uxDumbFieldDataGridViewColumn
            //
            this.uxDumbFieldDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxDumbFieldDataGridViewColumn.DataPropertyName = "DumbField";
            this.uxDumbFieldDataGridViewColumn.HeaderText       = "DumbField";
            this.uxDumbFieldDataGridViewColumn.Name             = "uxDumbFieldDataGridViewColumn";
            this.uxDumbFieldDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxDumbFieldDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxDumbFieldDataGridViewColumn.ReadOnly         = false;

            // this
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.uxTestIssue117TableaDataGridView);
            this.Name = "TestIssue117TableaDataGridView";
            this.Size = new System.Drawing.Size(470, 300);
            ((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TableaErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TableaDataGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestIssue117TableaBindingSource)).EndInit();
            this.ResumeLayout(false);
        }
		/// <summary>
		/// Initializes a new instance of the <see cref="SalesOrderHeaderDataGridViewBase"/> class.
		/// </summary>
		public SalesOrderHeaderDataGridViewBase()
		{			
			this.components = new System.ComponentModel.Container();			
			
			this.uxSalesOrderHeaderDataGridView = new System.Windows.Forms.DataGridView();
			this.uxSalesOrderHeaderBindingSource = new System.Windows.Forms.BindingSource(this.components);
			this.uxSalesOrderHeaderErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxSalesOrderIdDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxRevisionNumberDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxOrderDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxDueDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxShipDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxStatusDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxOnlineOrderFlagDataGridViewColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
			this.uxSalesOrderNumberDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxPurchaseOrderNumberDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxAccountNumberDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxCustomerIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxContactIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxSalesPersonIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxTerritoryIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxBillToAddressIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxShipToAddressIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxShipMethodIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxCreditCardIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxCreditCardApprovalCodeDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxCurrencyRateIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxSubTotalDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxTaxAmtDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxFreightDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxTotalDueDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxCommentDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxRowguidDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxModifiedDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			//this.uxBillToAddressIdBindingSource = new AddressBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxBillToAddressIdBindingSource)).BeginInit();
			//this.uxShipToAddressIdBindingSource = new AddressBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxShipToAddressIdBindingSource)).BeginInit();
			//this.uxContactIdBindingSource = new ContactBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxContactIdBindingSource)).BeginInit();
			//this.uxCreditCardIdBindingSource = new CreditCardBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxCreditCardIdBindingSource)).BeginInit();
			//this.uxCurrencyRateIdBindingSource = new CurrencyRateBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxCurrencyRateIdBindingSource)).BeginInit();
			//this.uxCustomerIdBindingSource = new CustomerBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxCustomerIdBindingSource)).BeginInit();
			//this.uxSalesPersonIdBindingSource = new SalesPersonBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxSalesPersonIdBindingSource)).BeginInit();
			//this.uxTerritoryIdBindingSource = new SalesTerritoryBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxTerritoryIdBindingSource)).BeginInit();
			//this.uxShipMethodIdBindingSource = new ShipMethodBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxShipMethodIdBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderDataGridView)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderErrorProvider)).BeginInit();
			this.SuspendLayout();
						
			// 
			// uxSalesOrderHeaderErrorProvider
			// 
			this.uxSalesOrderHeaderErrorProvider.ContainerControl = this;
			this.uxSalesOrderHeaderErrorProvider.DataSource = this.uxSalesOrderHeaderBindingSource;						
			// 
			// uxSalesOrderHeaderDataGridView
			// 
			this.uxSalesOrderHeaderDataGridView.AutoGenerateColumns = false;
			this.uxSalesOrderHeaderDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
			this.uxSalesOrderHeaderDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
		this.uxSalesOrderIdDataGridViewColumn,
		this.uxRevisionNumberDataGridViewColumn,
		this.uxOrderDateDataGridViewColumn,
		this.uxDueDateDataGridViewColumn,
		this.uxShipDateDataGridViewColumn,
		this.uxStatusDataGridViewColumn,
		this.uxOnlineOrderFlagDataGridViewColumn,
		this.uxSalesOrderNumberDataGridViewColumn,
		this.uxPurchaseOrderNumberDataGridViewColumn,
		this.uxAccountNumberDataGridViewColumn,
		this.uxCustomerIdDataGridViewColumn,
		this.uxContactIdDataGridViewColumn,
		this.uxSalesPersonIdDataGridViewColumn,
		this.uxTerritoryIdDataGridViewColumn,
		this.uxBillToAddressIdDataGridViewColumn,
		this.uxShipToAddressIdDataGridViewColumn,
		this.uxShipMethodIdDataGridViewColumn,
		this.uxCreditCardIdDataGridViewColumn,
		this.uxCreditCardApprovalCodeDataGridViewColumn,
		this.uxCurrencyRateIdDataGridViewColumn,
		this.uxSubTotalDataGridViewColumn,
		this.uxTaxAmtDataGridViewColumn,
		this.uxFreightDataGridViewColumn,
		this.uxTotalDueDataGridViewColumn,
		this.uxCommentDataGridViewColumn,
		this.uxRowguidDataGridViewColumn,
		this.uxModifiedDateDataGridViewColumn			});
			this.uxSalesOrderHeaderDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
			this.uxSalesOrderHeaderDataGridView.Location = new System.Drawing.Point(0, 0);
			this.uxSalesOrderHeaderDataGridView.Name = "uxSalesOrderHeaderDataGridView";
			this.uxSalesOrderHeaderDataGridView.Size = new System.Drawing.Size(470, 300);
			this.uxSalesOrderHeaderDataGridView.TabIndex = 0;	
			this.uxSalesOrderHeaderDataGridView.BackgroundColor = System.Drawing.Color.WhiteSmoke;
			this.uxSalesOrderHeaderDataGridView.EnableHeadersVisualStyles = false;
			this.uxSalesOrderHeaderDataGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnSalesOrderHeaderDataGridViewDataError);
			this.uxSalesOrderHeaderDataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnSalesOrderHeaderDataGridViewCellValueNeeded);
			this.uxSalesOrderHeaderDataGridView.CellValuePushed += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnSalesOrderHeaderDataGridViewCellValuePushed);
			
			//
			// uxSalesOrderIdDataGridViewColumn
			//
			this.uxSalesOrderIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxSalesOrderIdDataGridViewColumn.DataPropertyName = "SalesOrderId";
			this.uxSalesOrderIdDataGridViewColumn.HeaderText = "SalesOrderId";
			this.uxSalesOrderIdDataGridViewColumn.Name = "uxSalesOrderIdDataGridViewColumn";
			this.uxSalesOrderIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxSalesOrderIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxSalesOrderIdDataGridViewColumn.ReadOnly = true;		
			//
			// uxRevisionNumberDataGridViewColumn
			//
			this.uxRevisionNumberDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxRevisionNumberDataGridViewColumn.DataPropertyName = "RevisionNumber";
			this.uxRevisionNumberDataGridViewColumn.HeaderText = "RevisionNumber";
			this.uxRevisionNumberDataGridViewColumn.Name = "uxRevisionNumberDataGridViewColumn";
			this.uxRevisionNumberDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxRevisionNumberDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxRevisionNumberDataGridViewColumn.ReadOnly = false;		
			//
			// uxOrderDateDataGridViewColumn
			//
			this.uxOrderDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxOrderDateDataGridViewColumn.DataPropertyName = "OrderDate";
			this.uxOrderDateDataGridViewColumn.HeaderText = "OrderDate";
			this.uxOrderDateDataGridViewColumn.Name = "uxOrderDateDataGridViewColumn";
			this.uxOrderDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxOrderDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxOrderDateDataGridViewColumn.ReadOnly = false;		
			//
			// uxDueDateDataGridViewColumn
			//
			this.uxDueDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxDueDateDataGridViewColumn.DataPropertyName = "DueDate";
			this.uxDueDateDataGridViewColumn.HeaderText = "DueDate";
			this.uxDueDateDataGridViewColumn.Name = "uxDueDateDataGridViewColumn";
			this.uxDueDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxDueDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxDueDateDataGridViewColumn.ReadOnly = false;		
			//
			// uxShipDateDataGridViewColumn
			//
			this.uxShipDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxShipDateDataGridViewColumn.DataPropertyName = "ShipDate";
			this.uxShipDateDataGridViewColumn.HeaderText = "ShipDate";
			this.uxShipDateDataGridViewColumn.Name = "uxShipDateDataGridViewColumn";
			this.uxShipDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxShipDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxShipDateDataGridViewColumn.ReadOnly = false;		
			//
			// uxStatusDataGridViewColumn
			//
			this.uxStatusDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxStatusDataGridViewColumn.DataPropertyName = "Status";
			this.uxStatusDataGridViewColumn.HeaderText = "Status";
			this.uxStatusDataGridViewColumn.Name = "uxStatusDataGridViewColumn";
			this.uxStatusDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxStatusDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxStatusDataGridViewColumn.ReadOnly = false;		
			//
			// uxOnlineOrderFlagDataGridViewColumn
			//
			this.uxOnlineOrderFlagDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxOnlineOrderFlagDataGridViewColumn.DataPropertyName = "OnlineOrderFlag";
			this.uxOnlineOrderFlagDataGridViewColumn.HeaderText = "OnlineOrderFlag";
			this.uxOnlineOrderFlagDataGridViewColumn.Name = "uxOnlineOrderFlagDataGridViewColumn";
			this.uxOnlineOrderFlagDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxOnlineOrderFlagDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxOnlineOrderFlagDataGridViewColumn.ReadOnly = false;		
			//
			// uxSalesOrderNumberDataGridViewColumn
			//
			this.uxSalesOrderNumberDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxSalesOrderNumberDataGridViewColumn.DataPropertyName = "SalesOrderNumber";
			this.uxSalesOrderNumberDataGridViewColumn.HeaderText = "SalesOrderNumber";
			this.uxSalesOrderNumberDataGridViewColumn.Name = "uxSalesOrderNumberDataGridViewColumn";
			this.uxSalesOrderNumberDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxSalesOrderNumberDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxSalesOrderNumberDataGridViewColumn.ReadOnly = true;		
			//
			// uxPurchaseOrderNumberDataGridViewColumn
			//
			this.uxPurchaseOrderNumberDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxPurchaseOrderNumberDataGridViewColumn.DataPropertyName = "PurchaseOrderNumber";
			this.uxPurchaseOrderNumberDataGridViewColumn.HeaderText = "PurchaseOrderNumber";
			this.uxPurchaseOrderNumberDataGridViewColumn.Name = "uxPurchaseOrderNumberDataGridViewColumn";
			this.uxPurchaseOrderNumberDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxPurchaseOrderNumberDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxPurchaseOrderNumberDataGridViewColumn.ReadOnly = false;		
			//
			// uxAccountNumberDataGridViewColumn
			//
			this.uxAccountNumberDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxAccountNumberDataGridViewColumn.DataPropertyName = "AccountNumber";
			this.uxAccountNumberDataGridViewColumn.HeaderText = "AccountNumber";
			this.uxAccountNumberDataGridViewColumn.Name = "uxAccountNumberDataGridViewColumn";
			this.uxAccountNumberDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxAccountNumberDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxAccountNumberDataGridViewColumn.ReadOnly = false;		
			//
			// uxCustomerIdDataGridViewColumn
			//
			this.uxCustomerIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCustomerIdDataGridViewColumn.DataPropertyName = "CustomerId";
			this.uxCustomerIdDataGridViewColumn.HeaderText = "CustomerId";
			this.uxCustomerIdDataGridViewColumn.Name = "uxCustomerIdDataGridViewColumn";
			this.uxCustomerIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCustomerIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCustomerIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxContactIdDataGridViewColumn
			//
			this.uxContactIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxContactIdDataGridViewColumn.DataPropertyName = "ContactId";
			this.uxContactIdDataGridViewColumn.HeaderText = "ContactId";
			this.uxContactIdDataGridViewColumn.Name = "uxContactIdDataGridViewColumn";
			this.uxContactIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxContactIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxContactIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxSalesPersonIdDataGridViewColumn
			//
			this.uxSalesPersonIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxSalesPersonIdDataGridViewColumn.DataPropertyName = "SalesPersonId";
			this.uxSalesPersonIdDataGridViewColumn.HeaderText = "SalesPersonId";
			this.uxSalesPersonIdDataGridViewColumn.Name = "uxSalesPersonIdDataGridViewColumn";
			this.uxSalesPersonIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxSalesPersonIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxSalesPersonIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxTerritoryIdDataGridViewColumn
			//
			this.uxTerritoryIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxTerritoryIdDataGridViewColumn.DataPropertyName = "TerritoryId";
			this.uxTerritoryIdDataGridViewColumn.HeaderText = "TerritoryId";
			this.uxTerritoryIdDataGridViewColumn.Name = "uxTerritoryIdDataGridViewColumn";
			this.uxTerritoryIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxTerritoryIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxTerritoryIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxBillToAddressIdDataGridViewColumn
			//
			this.uxBillToAddressIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxBillToAddressIdDataGridViewColumn.DataPropertyName = "BillToAddressId";
			this.uxBillToAddressIdDataGridViewColumn.HeaderText = "BillToAddressId";
			this.uxBillToAddressIdDataGridViewColumn.Name = "uxBillToAddressIdDataGridViewColumn";
			this.uxBillToAddressIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxBillToAddressIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxBillToAddressIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxShipToAddressIdDataGridViewColumn
			//
			this.uxShipToAddressIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxShipToAddressIdDataGridViewColumn.DataPropertyName = "ShipToAddressId";
			this.uxShipToAddressIdDataGridViewColumn.HeaderText = "ShipToAddressId";
			this.uxShipToAddressIdDataGridViewColumn.Name = "uxShipToAddressIdDataGridViewColumn";
			this.uxShipToAddressIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxShipToAddressIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxShipToAddressIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxShipMethodIdDataGridViewColumn
			//
			this.uxShipMethodIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxShipMethodIdDataGridViewColumn.DataPropertyName = "ShipMethodId";
			this.uxShipMethodIdDataGridViewColumn.HeaderText = "ShipMethodId";
			this.uxShipMethodIdDataGridViewColumn.Name = "uxShipMethodIdDataGridViewColumn";
			this.uxShipMethodIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxShipMethodIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxShipMethodIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxCreditCardIdDataGridViewColumn
			//
			this.uxCreditCardIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCreditCardIdDataGridViewColumn.DataPropertyName = "CreditCardId";
			this.uxCreditCardIdDataGridViewColumn.HeaderText = "CreditCardId";
			this.uxCreditCardIdDataGridViewColumn.Name = "uxCreditCardIdDataGridViewColumn";
			this.uxCreditCardIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCreditCardIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCreditCardIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxCreditCardApprovalCodeDataGridViewColumn
			//
			this.uxCreditCardApprovalCodeDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCreditCardApprovalCodeDataGridViewColumn.DataPropertyName = "CreditCardApprovalCode";
			this.uxCreditCardApprovalCodeDataGridViewColumn.HeaderText = "CreditCardApprovalCode";
			this.uxCreditCardApprovalCodeDataGridViewColumn.Name = "uxCreditCardApprovalCodeDataGridViewColumn";
			this.uxCreditCardApprovalCodeDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCreditCardApprovalCodeDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCreditCardApprovalCodeDataGridViewColumn.ReadOnly = false;		
			//
			// uxCurrencyRateIdDataGridViewColumn
			//
			this.uxCurrencyRateIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCurrencyRateIdDataGridViewColumn.DataPropertyName = "CurrencyRateId";
			this.uxCurrencyRateIdDataGridViewColumn.HeaderText = "CurrencyRateId";
			this.uxCurrencyRateIdDataGridViewColumn.Name = "uxCurrencyRateIdDataGridViewColumn";
			this.uxCurrencyRateIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCurrencyRateIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCurrencyRateIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxSubTotalDataGridViewColumn
			//
			this.uxSubTotalDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxSubTotalDataGridViewColumn.DataPropertyName = "SubTotal";
			this.uxSubTotalDataGridViewColumn.HeaderText = "SubTotal";
			this.uxSubTotalDataGridViewColumn.Name = "uxSubTotalDataGridViewColumn";
			this.uxSubTotalDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxSubTotalDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxSubTotalDataGridViewColumn.ReadOnly = false;		
			//
			// uxTaxAmtDataGridViewColumn
			//
			this.uxTaxAmtDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxTaxAmtDataGridViewColumn.DataPropertyName = "TaxAmt";
			this.uxTaxAmtDataGridViewColumn.HeaderText = "TaxAmt";
			this.uxTaxAmtDataGridViewColumn.Name = "uxTaxAmtDataGridViewColumn";
			this.uxTaxAmtDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxTaxAmtDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxTaxAmtDataGridViewColumn.ReadOnly = false;		
			//
			// uxFreightDataGridViewColumn
			//
			this.uxFreightDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxFreightDataGridViewColumn.DataPropertyName = "Freight";
			this.uxFreightDataGridViewColumn.HeaderText = "Freight";
			this.uxFreightDataGridViewColumn.Name = "uxFreightDataGridViewColumn";
			this.uxFreightDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxFreightDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxFreightDataGridViewColumn.ReadOnly = false;		
			//
			// uxTotalDueDataGridViewColumn
			//
			this.uxTotalDueDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxTotalDueDataGridViewColumn.DataPropertyName = "TotalDue";
			this.uxTotalDueDataGridViewColumn.HeaderText = "TotalDue";
			this.uxTotalDueDataGridViewColumn.Name = "uxTotalDueDataGridViewColumn";
			this.uxTotalDueDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxTotalDueDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxTotalDueDataGridViewColumn.ReadOnly = true;		
			//
			// uxCommentDataGridViewColumn
			//
			this.uxCommentDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCommentDataGridViewColumn.DataPropertyName = "Comment";
			this.uxCommentDataGridViewColumn.HeaderText = "Comment";
			this.uxCommentDataGridViewColumn.Name = "uxCommentDataGridViewColumn";
			this.uxCommentDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCommentDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCommentDataGridViewColumn.ReadOnly = false;		
			//
			// uxRowguidDataGridViewColumn
			//
			this.uxRowguidDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxRowguidDataGridViewColumn.DataPropertyName = "Rowguid";
			this.uxRowguidDataGridViewColumn.HeaderText = "Rowguid";
			this.uxRowguidDataGridViewColumn.Name = "uxRowguidDataGridViewColumn";
			this.uxRowguidDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxRowguidDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxRowguidDataGridViewColumn.ReadOnly = true;		
			//
			// uxModifiedDateDataGridViewColumn
			//
			this.uxModifiedDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
			this.uxModifiedDateDataGridViewColumn.HeaderText = "ModifiedDate";
			this.uxModifiedDateDataGridViewColumn.Name = "uxModifiedDateDataGridViewColumn";
			this.uxModifiedDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxModifiedDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxModifiedDateDataGridViewColumn.ReadOnly = false;		
			//
			// uxBillToAddressIdDataGridViewColumn
			//				
			this.uxBillToAddressIdDataGridViewColumn.DisplayMember = "AddressLine1";	
			this.uxBillToAddressIdDataGridViewColumn.ValueMember = "AddressId";	
			this.uxBillToAddressIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxBillToAddressIdDataGridViewColumn.DataSource = uxBillToAddressIdBindingSource;				
				
			//
			// uxShipToAddressIdDataGridViewColumn
			//				
			this.uxShipToAddressIdDataGridViewColumn.DisplayMember = "AddressLine1";	
			this.uxShipToAddressIdDataGridViewColumn.ValueMember = "AddressId";	
			this.uxShipToAddressIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxShipToAddressIdDataGridViewColumn.DataSource = uxShipToAddressIdBindingSource;				
				
			//
			// uxContactIdDataGridViewColumn
			//				
			this.uxContactIdDataGridViewColumn.DisplayMember = "NameStyle";	
			this.uxContactIdDataGridViewColumn.ValueMember = "ContactId";	
			this.uxContactIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxContactIdDataGridViewColumn.DataSource = uxContactIdBindingSource;				
				
			//
			// uxCreditCardIdDataGridViewColumn
			//				
			this.uxCreditCardIdDataGridViewColumn.DisplayMember = "CardType";	
			this.uxCreditCardIdDataGridViewColumn.ValueMember = "CreditCardId";	
			this.uxCreditCardIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxCreditCardIdDataGridViewColumn.DataSource = uxCreditCardIdBindingSource;				
				
			//
			// uxCurrencyRateIdDataGridViewColumn
			//				
			this.uxCurrencyRateIdDataGridViewColumn.DisplayMember = "CurrencyRateDate";	
			this.uxCurrencyRateIdDataGridViewColumn.ValueMember = "CurrencyRateId";	
			this.uxCurrencyRateIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxCurrencyRateIdDataGridViewColumn.DataSource = uxCurrencyRateIdBindingSource;				
				
			//
			// uxCustomerIdDataGridViewColumn
			//				
			this.uxCustomerIdDataGridViewColumn.DisplayMember = "TerritoryId";	
			this.uxCustomerIdDataGridViewColumn.ValueMember = "CustomerId";	
			this.uxCustomerIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxCustomerIdDataGridViewColumn.DataSource = uxCustomerIdBindingSource;				
				
			//
			// uxSalesPersonIdDataGridViewColumn
			//				
			this.uxSalesPersonIdDataGridViewColumn.DisplayMember = "TerritoryId";	
			this.uxSalesPersonIdDataGridViewColumn.ValueMember = "SalesPersonId";	
			this.uxSalesPersonIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxSalesPersonIdDataGridViewColumn.DataSource = uxSalesPersonIdBindingSource;				
				
			//
			// uxTerritoryIdDataGridViewColumn
			//				
			this.uxTerritoryIdDataGridViewColumn.DisplayMember = "Name";	
			this.uxTerritoryIdDataGridViewColumn.ValueMember = "TerritoryId";	
			this.uxTerritoryIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxTerritoryIdDataGridViewColumn.DataSource = uxTerritoryIdBindingSource;				
				
			//
			// uxShipMethodIdDataGridViewColumn
			//				
			this.uxShipMethodIdDataGridViewColumn.DisplayMember = "Name";	
			this.uxShipMethodIdDataGridViewColumn.ValueMember = "ShipMethodId";	
			this.uxShipMethodIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxShipMethodIdDataGridViewColumn.DataSource = uxShipMethodIdBindingSource;				
				
			
			// this
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.uxSalesOrderHeaderDataGridView);
			this.Name = "SalesOrderHeaderDataGridView";
			this.Size = new System.Drawing.Size(470, 300);
			//((System.ComponentModel.ISupportInitialize)(this.uxBillToAddressIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxShipToAddressIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxContactIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxCreditCardIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxCurrencyRateIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxCustomerIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxSalesPersonIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxTerritoryIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxShipMethodIdBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderDataGridView)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderBindingSource)).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()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnDel = new System.Windows.Forms.Button();
     this.btnFind = new System.Windows.Forms.Button();
     this.txtName = new System.Windows.Forms.TextBox();
     this.cboClasses = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.dgvStudentList = new System.Windows.Forms.DataGridView();
     this.colCheck = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.StudentId = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.StuName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ClassName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Sex = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Phone = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEdit = new System.Windows.Forms.DataGridViewLinkColumn();
     this.colDel = new System.Windows.Forms.DataGridViewLinkColumn();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStudentList)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.btnDel);
     this.groupBox1.Controls.Add(this.btnFind);
     this.groupBox1.Controls.Add(this.txtName);
     this.groupBox1.Controls.Add(this.cboClasses);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(776, 88);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Query condition";
     //
     // btnDel
     //
     this.btnDel.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnDel.Location = new System.Drawing.Point(675, 36);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(75, 26);
     this.btnDel.TabIndex = 5;
     this.btnDel.Text = "Delete";
     this.btnDel.UseVisualStyleBackColor = true;
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnFind
     //
     this.btnFind.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnFind.Location = new System.Drawing.Point(562, 36);
     this.btnFind.Name = "btnFind";
     this.btnFind.Size = new System.Drawing.Size(75, 26);
     this.btnFind.TabIndex = 4;
     this.btnFind.Text = "Query";
     this.btnFind.UseVisualStyleBackColor = true;
     this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
     //
     // txtName
     //
     this.txtName.Location = new System.Drawing.Point(345, 36);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(152, 25);
     this.txtName.TabIndex = 3;
     //
     // cboClasses
     //
     this.cboClasses.FormattingEnabled = true;
     this.cboClasses.Location = new System.Drawing.Point(113, 39);
     this.cboClasses.Name = "cboClasses";
     this.cboClasses.Size = new System.Drawing.Size(144, 23);
     this.cboClasses.TabIndex = 2;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(284, 42);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(47, 15);
     this.label2.TabIndex = 1;
     this.label2.Text = "Name:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(52, 43);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(55, 15);
     this.label1.TabIndex = 0;
     this.label1.Text = "Class:";
     //
     // dgvStudentList
     //
     this.dgvStudentList.AllowUserToAddRows = false;
     this.dgvStudentList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvStudentList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvStudentList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colCheck,
     this.StudentId,
     this.StuName,
     this.ClassName,
     this.Sex,
     this.Phone,
     this.colEdit,
     this.colDel});
     this.dgvStudentList.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dgvStudentList.Location = new System.Drawing.Point(0, 106);
     this.dgvStudentList.Name = "dgvStudentList";
     this.dgvStudentList.RowHeadersWidth = 51;
     this.dgvStudentList.RowTemplate.Height = 27;
     this.dgvStudentList.Size = new System.Drawing.Size(800, 344);
     this.dgvStudentList.TabIndex = 1;
     this.dgvStudentList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStudentList_CellContentClick);
     //
     // colCheck
     //
     this.colCheck.HeaderText = "Select";
     this.colCheck.MinimumWidth = 6;
     this.colCheck.Name = "colCheck";
     //
     // StudentId
     //
     this.StudentId.DataPropertyName = "StudentId";
     this.StudentId.HeaderText = "ID";
     this.StudentId.MinimumWidth = 6;
     this.StudentId.Name = "StudentId";
     this.StudentId.ReadOnly = true;
     //
     // StuName
     //
     this.StuName.DataPropertyName = "StudentName";
     this.StuName.HeaderText = "Name";
     this.StuName.MinimumWidth = 6;
     this.StuName.Name = "StuName";
     this.StuName.ReadOnly = true;
     //
     // ClassName
     //
     this.ClassName.DataPropertyName = "ClassName";
     this.ClassName.HeaderText = "Class";
     this.ClassName.MinimumWidth = 6;
     this.ClassName.Name = "ClassName";
     this.ClassName.ReadOnly = true;
     //
     // Sex
     //
     this.Sex.DataPropertyName = "Sex";
     this.Sex.HeaderText = "Sex";
     this.Sex.MinimumWidth = 6;
     this.Sex.Name = "Sex";
     this.Sex.ReadOnly = true;
     //
     // Phone
     //
     this.Phone.DataPropertyName = "Phone";
     this.Phone.HeaderText = "Phone";
     this.Phone.MinimumWidth = 6;
     this.Phone.Name = "Phone";
     this.Phone.ReadOnly = true;
     //
     // colEdit
     //
     dataGridViewCellStyle1.NullValue = "Update";
     this.colEdit.DefaultCellStyle = dataGridViewCellStyle1;
     this.colEdit.HeaderText = "Update";
     this.colEdit.MinimumWidth = 6;
     this.colEdit.Name = "colEdit";
     //
     // colDel
     //
     dataGridViewCellStyle2.NullValue = "Delete";
     this.colDel.DefaultCellStyle = dataGridViewCellStyle2;
     this.colDel.HeaderText = "Delete";
     this.colDel.MinimumWidth = 6;
     this.colDel.Name = "colDel";
     //
     // FrmStudentList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.dgvStudentList);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "FrmStudentList";
     this.Text = "Student List";
     this.Load += new System.EventHandler(this.FrmStudentList_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStudentList)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 41
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmUserAdmin));
     this.helpProvider = new System.Windows.Forms.HelpProvider();
     this.grdUser = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRealName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDepartment = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmail = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colTelephone = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colMobile = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDefaultRole = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEnabled = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnSetPassword = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.btnProperty = new System.Windows.Forms.Button();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.lblContents = new System.Windows.Forms.Label();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.btnSearch = new System.Windows.Forms.Button();
     this.chkEnabled = new System.Windows.Forms.CheckBox();
     this.ucTableSort = new DotNet.WinForm.Common.WinControls.UCTableSort();
     this.btnBatchSave = new System.Windows.Forms.Button();
     this.btnRoleUser = new System.Windows.Forms.Button();
     this.picBug = new System.Windows.Forms.PictureBox();
     this.picSetting = new System.Windows.Forms.PictureBox();
     this.picImport = new System.Windows.Forms.PictureBox();
     this.picExport = new System.Windows.Forms.PictureBox();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.btnSetOrganize = new System.Windows.Forms.Button();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.splUser = new System.Windows.Forms.SplitContainer();
     this.tvOrganize = new System.Windows.Forms.TreeView();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picBug)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picSetting)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picImport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picExport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splUser)).BeginInit();
     this.splUser.Panel1.SuspendLayout();
     this.splUser.Panel2.SuspendLayout();
     this.splUser.SuspendLayout();
     this.SuspendLayout();
     //
     // grdUser
     //
     this.grdUser.AllowUserToAddRows = false;
     this.grdUser.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.AliceBlue;
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(168)))), ((int)(((byte)(168)))), ((int)(((byte)(255)))));
     this.grdUser.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.grdUser.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     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.grdUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colUserName,
     this.colCode,
     this.colRealName,
     this.colDepartment,
     this.colEmail,
     this.colTelephone,
     this.colMobile,
     this.colDefaultRole,
     this.colEnabled,
     this.colDescription});
     this.grdUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdUser.GridColor = System.Drawing.SystemColors.Control;
     this.grdUser.Location = new System.Drawing.Point(0, 0);
     this.grdUser.MultiSelect = false;
     this.grdUser.Name = "grdUser";
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(188)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     this.grdUser.RowsDefaultCellStyle = dataGridViewCellStyle3;
     this.grdUser.RowTemplate.Height = 23;
     this.grdUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdUser.Size = new System.Drawing.Size(741, 511);
     this.grdUser.TabIndex = 4;
     this.grdUser.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdUser_CellDoubleClick);
     this.grdUser.Sorted += new System.EventHandler(this.grdUser_Sorted);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colSelected.Width = 50;
     //
     // colUserName
     //
     this.colUserName.DataPropertyName = "UserName";
     this.colUserName.HeaderText = "用户名";
     this.colUserName.Name = "colUserName";
     this.colUserName.ReadOnly = true;
     //
     // colCode
     //
     this.colCode.DataPropertyName = "Code";
     this.colCode.HeaderText = "工号";
     this.colCode.MaxInputLength = 100;
     this.colCode.Name = "colCode";
     this.colCode.ReadOnly = true;
     //
     // colRealName
     //
     this.colRealName.DataPropertyName = "RealName";
     this.colRealName.FillWeight = 70F;
     this.colRealName.HeaderText = "姓名";
     this.colRealName.MaxInputLength = 200;
     this.colRealName.Name = "colRealName";
     this.colRealName.ReadOnly = true;
     this.colRealName.Width = 70;
     //
     // colDepartment
     //
     this.colDepartment.DataPropertyName = "DepartmentName";
     this.colDepartment.FillWeight = 200F;
     this.colDepartment.HeaderText = "部门";
     this.colDepartment.MaxInputLength = 200;
     this.colDepartment.Name = "colDepartment";
     this.colDepartment.ReadOnly = true;
     this.colDepartment.Width = 200;
     //
     // colEmail
     //
     this.colEmail.DataPropertyName = "Email";
     this.colEmail.HeaderText = "Email";
     this.colEmail.Name = "colEmail";
     //
     // colTelephone
     //
     this.colTelephone.DataPropertyName = "Telephone";
     this.colTelephone.HeaderText = "电话";
     this.colTelephone.Name = "colTelephone";
     //
     // colMobile
     //
     this.colMobile.DataPropertyName = "Mobile";
     this.colMobile.HeaderText = "手机";
     this.colMobile.Name = "colMobile";
     //
     // colDefaultRole
     //
     this.colDefaultRole.DataPropertyName = "RoleName";
     this.colDefaultRole.HeaderText = "默认角色";
     this.colDefaultRole.Name = "colDefaultRole";
     this.colDefaultRole.ReadOnly = true;
     //
     // colEnabled
     //
     this.colEnabled.DataPropertyName = "Enabled";
     this.colEnabled.FalseValue = "0";
     this.colEnabled.FillWeight = 80F;
     this.colEnabled.HeaderText = "有效";
     this.colEnabled.Name = "colEnabled";
     this.colEnabled.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.colEnabled.TrueValue = "1";
     this.colEnabled.Width = 80;
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "Description";
     this.colDescription.FillWeight = 135F;
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.Width = 135;
     //
     // btnSetPassword
     //
     this.btnSetPassword.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSetPassword.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnSetPassword.Enabled = false;
     this.btnSetPassword.Location = new System.Drawing.Point(517, 563);
     this.btnSetPassword.Name = "btnSetPassword";
     this.btnSetPassword.Size = new System.Drawing.Size(108, 23);
     this.btnSetPassword.TabIndex = 7;
     this.btnSetPassword.Text = "重置密码(&P)...";
     this.btnSetPassword.Click += new System.EventHandler(this.btnSetPassword_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(885, 563);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 11;
     this.btnClose.Text = "关闭";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnProperty
     //
     this.btnProperty.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnProperty.Enabled = false;
     this.btnProperty.Location = new System.Drawing.Point(434, 563);
     this.btnProperty.Name = "btnProperty";
     this.btnProperty.Size = new System.Drawing.Size(80, 23);
     this.btnProperty.TabIndex = 6;
     this.btnProperty.Text = "属性(&O)...";
     this.btnProperty.Click += new System.EventHandler(this.btnProperty_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Enabled = false;
     this.btnDelete.Location = new System.Drawing.Point(729, 563);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 9;
     this.btnDelete.Text = "删除(&D)";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Enabled = false;
     this.btnAdd.Location = new System.Drawing.Point(356, 563);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 5;
     this.btnAdd.Text = "添加(&A)...";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // lblContents
     //
     this.lblContents.Location = new System.Drawing.Point(21, 16);
     this.lblContents.Name = "lblContents";
     this.lblContents.Size = new System.Drawing.Size(87, 12);
     this.lblContents.TabIndex = 0;
     this.lblContents.Text = "查询内容(&C):";
     this.lblContents.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(112, 11);
     this.txtSearch.MaxLength = 20;
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(168, 21);
     this.txtSearch.TabIndex = 1;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // btnSearch
     //
     this.btnSearch.Location = new System.Drawing.Point(285, 11);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(75, 23);
     this.btnSearch.TabIndex = 2;
     this.btnSearch.Text = "查询(&F)";
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // chkEnabled
     //
     this.chkEnabled.AutoSize = true;
     this.chkEnabled.Checked = true;
     this.chkEnabled.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkEnabled.Location = new System.Drawing.Point(366, 16);
     this.chkEnabled.Name = "chkEnabled";
     this.chkEnabled.Size = new System.Drawing.Size(96, 16);
     this.chkEnabled.TabIndex = 3;
     this.chkEnabled.Text = "只显示有效的";
     this.chkEnabled.UseVisualStyleBackColor = true;
     this.chkEnabled.CheckedChanged += new System.EventHandler(this.chkEnabled_CheckedChanged);
     //
     // ucTableSort
     //
     this.ucTableSort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucTableSort.Enabled = false;
     this.ucTableSort.Location = new System.Drawing.Point(167, 562);
     this.ucTableSort.Margin = new System.Windows.Forms.Padding(0);
     this.ucTableSort.Name = "ucTableSort";
     this.ucTableSort.OEntityId = null;
     this.ucTableSort.Padding = new System.Windows.Forms.Padding(1);
     this.ucTableSort.SetBottomEnabled = false;
     this.ucTableSort.SetDownEnabled = false;
     this.ucTableSort.SetTopEnabled = false;
     this.ucTableSort.SetUpEnabled = false;
     this.ucTableSort.Size = new System.Drawing.Size(99, 24);
     this.ucTableSort.TabIndex = 12;
     //
     // btnBatchSave
     //
     this.btnBatchSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchSave.Enabled = false;
     this.btnBatchSave.Location = new System.Drawing.Point(807, 563);
     this.btnBatchSave.Name = "btnBatchSave";
     this.btnBatchSave.Size = new System.Drawing.Size(75, 23);
     this.btnBatchSave.TabIndex = 10;
     this.btnBatchSave.Text = "保存(&S)";
     this.btnBatchSave.UseVisualStyleBackColor = true;
     this.btnBatchSave.Click += new System.EventHandler(this.btnBatchSave_Click);
     //
     // btnRoleUser
     //
     this.btnRoleUser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRoleUser.Enabled = false;
     this.btnRoleUser.Location = new System.Drawing.Point(628, 563);
     this.btnRoleUser.Name = "btnRoleUser";
     this.btnRoleUser.Size = new System.Drawing.Size(98, 23);
     this.btnRoleUser.TabIndex = 8;
     this.btnRoleUser.Text = "角色关联...";
     this.btnRoleUser.UseVisualStyleBackColor = true;
     this.btnRoleUser.Click += new System.EventHandler(this.btnRoleUser_Click);
     //
     // picBug
     //
     this.picBug.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.picBug.Cursor = System.Windows.Forms.Cursors.Hand;
     this.picBug.Image = ((System.Drawing.Image)(resources.GetObject("picBug.Image")));
     this.picBug.Location = new System.Drawing.Point(929, 5);
     this.picBug.Name = "picBug";
     this.picBug.Size = new System.Drawing.Size(30, 30);
     this.picBug.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.picBug.TabIndex = 14;
     this.picBug.TabStop = false;
     this.picBug.Click += new System.EventHandler(this.picBug_Click);
     //
     // picSetting
     //
     this.picSetting.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.picSetting.Cursor = System.Windows.Forms.Cursors.Hand;
     this.picSetting.Image = ((System.Drawing.Image)(resources.GetObject("picSetting.Image")));
     this.picSetting.Location = new System.Drawing.Point(897, 5);
     this.picSetting.Name = "picSetting";
     this.picSetting.Size = new System.Drawing.Size(30, 30);
     this.picSetting.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.picSetting.TabIndex = 15;
     this.picSetting.TabStop = false;
     this.picSetting.Click += new System.EventHandler(this.picSetting_Click);
     //
     // picImport
     //
     this.picImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.picImport.Cursor = System.Windows.Forms.Cursors.Hand;
     this.picImport.Image = ((System.Drawing.Image)(resources.GetObject("picImport.Image")));
     this.picImport.Location = new System.Drawing.Point(865, 5);
     this.picImport.Name = "picImport";
     this.picImport.Size = new System.Drawing.Size(30, 30);
     this.picImport.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.picImport.TabIndex = 16;
     this.picImport.TabStop = false;
     this.picImport.Click += new System.EventHandler(this.picImport_Click);
     //
     // picExport
     //
     this.picExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.picExport.Cursor = System.Windows.Forms.Cursors.Hand;
     this.picExport.Image = ((System.Drawing.Image)(resources.GetObject("picExport.Image")));
     this.picExport.Location = new System.Drawing.Point(833, 5);
     this.picExport.Name = "picExport";
     this.picExport.Size = new System.Drawing.Size(30, 30);
     this.picExport.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.picExport.TabIndex = 17;
     this.picExport.TabStop = false;
     this.picExport.Click += new System.EventHandler(this.picExport_Click);
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Enabled = false;
     this.btnInvertSelect.Location = new System.Drawing.Point(86, 562);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(78, 23);
     this.btnInvertSelect.TabIndex = 20;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Enabled = false;
     this.btnSelectAll.Location = new System.Drawing.Point(5, 562);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(78, 23);
     this.btnSelectAll.TabIndex = 19;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // btnSetOrganize
     //
     this.btnSetOrganize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSetOrganize.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnSetOrganize.Enabled = false;
     this.btnSetOrganize.Location = new System.Drawing.Point(714, 9);
     this.btnSetOrganize.Name = "btnSetOrganize";
     this.btnSetOrganize.Size = new System.Drawing.Size(113, 23);
     this.btnSetOrganize.TabIndex = 21;
     this.btnSetOrganize.Text = "设置部门...";
     this.btnSetOrganize.Click += new System.EventHandler(this.btnSetOrganize_Click);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     this.imageList.Images.SetKeyName(2, "");
     this.imageList.Images.SetKeyName(3, "");
     this.imageList.Images.SetKeyName(4, "");
     this.imageList.Images.SetKeyName(5, "");
     this.imageList.Images.SetKeyName(6, "");
     this.imageList.Images.SetKeyName(7, "");
     this.imageList.Images.SetKeyName(8, "");
     this.imageList.Images.SetKeyName(9, "");
     this.imageList.Images.SetKeyName(10, "");
     this.imageList.Images.SetKeyName(11, "");
     this.imageList.Images.SetKeyName(12, "");
     this.imageList.Images.SetKeyName(13, "");
     this.imageList.Images.SetKeyName(14, "");
     this.imageList.Images.SetKeyName(15, "icon_messenger1.gif");
     this.imageList.Images.SetKeyName(16, "icon_messenger0.gif");
     this.imageList.Images.SetKeyName(17, "icon_messenger2.gif");
     this.imageList.Images.SetKeyName(18, "icon_messenger3.gif");
     this.imageList.Images.SetKeyName(19, "icon_messenger4.gif");
     this.imageList.Images.SetKeyName(20, "icon_messenger5.gif");
     this.imageList.Images.SetKeyName(21, "icon_messenger6.gif");
     //
     // splUser
     //
     this.splUser.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.splUser.Location = new System.Drawing.Point(6, 45);
     this.splUser.Name = "splUser";
     //
     // splUser.Panel1
     //
     this.splUser.Panel1.Controls.Add(this.tvOrganize);
     this.splUser.Panel1MinSize = 0;
     //
     // splUser.Panel2
     //
     this.splUser.Panel2.Controls.Add(this.grdUser);
     this.splUser.Panel2MinSize = 0;
     this.splUser.Size = new System.Drawing.Size(954, 511);
     this.splUser.SplitterDistance = 209;
     this.splUser.TabIndex = 22;
     //
     // tvOrganize
     //
     this.tvOrganize.AllowDrop = true;
     this.tvOrganize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvOrganize.ImageIndex = 0;
     this.tvOrganize.ImageList = this.imageList;
     this.tvOrganize.Location = new System.Drawing.Point(0, 0);
     this.tvOrganize.Name = "tvOrganize";
     this.tvOrganize.SelectedImageIndex = 1;
     this.tvOrganize.Size = new System.Drawing.Size(209, 511);
     this.tvOrganize.TabIndex = 1;
     this.tvOrganize.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvOrganize_AfterSelect);
     this.tvOrganize.Click += new System.EventHandler(this.tvOrganize_Click);
     this.tvOrganize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvOrganize_MouseDown);
     //
     // FrmUserAdmin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(967, 590);
     this.Controls.Add(this.splUser);
     this.Controls.Add(this.btnSetOrganize);
     this.Controls.Add(this.btnInvertSelect);
     this.Controls.Add(this.btnSelectAll);
     this.Controls.Add(this.picExport);
     this.Controls.Add(this.picImport);
     this.Controls.Add(this.picSetting);
     this.Controls.Add(this.picBug);
     this.Controls.Add(this.btnRoleUser);
     this.Controls.Add(this.btnBatchSave);
     this.Controls.Add(this.ucTableSort);
     this.Controls.Add(this.chkEnabled);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.lblContents);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.btnSetPassword);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnProperty);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnAdd);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmUserAdmin";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "用户管理";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmUserAdmin_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picBug)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picSetting)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picImport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picExport)).EndInit();
     this.splUser.Panel1.ResumeLayout(false);
     this.splUser.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splUser)).EndInit();
     this.splUser.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 42
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </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();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.btnDownload = new System.Windows.Forms.Button();
     this.btnUpload = new System.Windows.Forms.Button();
     this.grdFile = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colFullName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colFileSize = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnSelect = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.grdFile)).BeginInit();
     this.SuspendLayout();
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Enabled = false;
     this.btnDelete.Location = new System.Drawing.Point(415, 109);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(60, 22);
     this.btnDelete.TabIndex = 6;
     this.btnDelete.Text = "删除";
     this.btnDelete.UseVisualStyleBackColor = true;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Enabled = false;
     this.btnInvertSelect.Location = new System.Drawing.Point(84, 109);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(78, 23);
     this.btnInvertSelect.TabIndex = 2;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Enabled = false;
     this.btnSelectAll.Location = new System.Drawing.Point(3, 109);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(78, 23);
     this.btnSelectAll.TabIndex = 1;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // btnDownload
     //
     this.btnDownload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDownload.Enabled = false;
     this.btnDownload.Location = new System.Drawing.Point(352, 109);
     this.btnDownload.Name = "btnDownload";
     this.btnDownload.Size = new System.Drawing.Size(60, 22);
     this.btnDownload.TabIndex = 5;
     this.btnDownload.Text = "下载";
     this.btnDownload.UseVisualStyleBackColor = true;
     this.btnDownload.Click += new System.EventHandler(this.btnDownload_Click);
     //
     // btnUpload
     //
     this.btnUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnUpload.Enabled = false;
     this.btnUpload.Location = new System.Drawing.Point(289, 109);
     this.btnUpload.Name = "btnUpload";
     this.btnUpload.Size = new System.Drawing.Size(60, 22);
     this.btnUpload.TabIndex = 4;
     this.btnUpload.Text = "上传";
     this.btnUpload.UseVisualStyleBackColor = true;
     this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
     //
     // grdFile
     //
     this.grdFile.AllowDrop = true;
     this.grdFile.AllowUserToAddRows = false;
     this.grdFile.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.grdFile.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdFile.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdFile.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdFile.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colFullName,
     this.colFileSize,
     this.colDescription});
     this.grdFile.Location = new System.Drawing.Point(5, 3);
     this.grdFile.MultiSelect = false;
     this.grdFile.Name = "grdFile";
     this.grdFile.RowHeadersWidth = 20;
     this.grdFile.RowTemplate.Height = 23;
     this.grdFile.Size = new System.Drawing.Size(470, 104);
     this.grdFile.TabIndex = 0;
     this.grdFile.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdFile_CellClick);
     this.grdFile.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdFile_CellContentDoubleClick);
     this.grdFile.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdFile_CellEndEdit);
     this.grdFile.DragDrop += new System.Windows.Forms.DragEventHandler(this.grdFile_DragDrop);
     this.grdFile.DragOver += new System.Windows.Forms.DragEventHandler(this.grdFile_DragOver);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Width = 55;
     //
     // colFullName
     //
     this.colFullName.DataPropertyName = "FileName";
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     this.colFullName.DefaultCellStyle = dataGridViewCellStyle2;
     this.colFullName.Frozen = true;
     this.colFullName.HeaderText = "文件名";
     this.colFullName.MaxInputLength = 200;
     this.colFullName.Name = "colFullName";
     this.colFullName.ReadOnly = true;
     this.colFullName.Width = 150;
     //
     // colFileSize
     //
     this.colFileSize.DataPropertyName = "FileFriendlySize";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.colFileSize.DefaultCellStyle = dataGridViewCellStyle3;
     this.colFileSize.HeaderText = "大小";
     this.colFileSize.MaxInputLength = 20;
     this.colFileSize.Name = "colFileSize";
     this.colFileSize.ReadOnly = true;
     this.colFileSize.Width = 60;
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "DESCRIPTION";
     dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.colDescription.DefaultCellStyle = dataGridViewCellStyle4;
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.Width = 160;
     //
     // btnSelect
     //
     this.btnSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSelect.Location = new System.Drawing.Point(224, 109);
     this.btnSelect.Name = "btnSelect";
     this.btnSelect.Size = new System.Drawing.Size(62, 22);
     this.btnSelect.TabIndex = 3;
     this.btnSelect.Text = "附加...";
     this.btnSelect.UseVisualStyleBackColor = true;
     this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
     //
     // UCAttachment
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnSelect);
     this.Controls.Add(this.grdFile);
     this.Controls.Add(this.btnUpload);
     this.Controls.Add(this.btnDownload);
     this.Controls.Add(this.btnInvertSelect);
     this.Controls.Add(this.btnSelectAll);
     this.Controls.Add(this.btnDelete);
     this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.Name = "UCAttachment";
     this.Padding = new System.Windows.Forms.Padding(1);
     this.Size = new System.Drawing.Size(480, 135);
     this.Load += new System.EventHandler(this.UCAttachment_Load);
     this.DragDrop += new System.Windows.Forms.DragEventHandler(this.grdFile_DragDrop);
     this.DragOver += new System.Windows.Forms.DragEventHandler(this.grdFile_DragOver);
     ((System.ComponentModel.ISupportInitialize)(this.grdFile)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmOrganizePermissionAdmin));
     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.imageList = new System.Windows.Forms.ImageList(this.components);
     this.cMnuOrganize = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mItmAdd = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmEdit = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmMove = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmDelete = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmAddRoot = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.mItmUserAdd = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmStaffAdd = new System.Windows.Forms.ToolStripMenuItem();
     this.mItemRoleAdd = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.mItmOrganizeCategory = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmFrmCodeBuilder = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmSetSortCode = new System.Windows.Forms.ToolStripMenuItem();
     this.btnClose = new System.Windows.Forms.Button();
     this.btnPermission = new System.Windows.Forms.Button();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.chkInnerOrganize = new System.Windows.Forms.CheckBox();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnExport = new System.Windows.Forms.Button();
     this.btnRoleResourcePermission = new System.Windows.Forms.Button();
     this.btnUserResourcePermission = new System.Windows.Forms.Button();
     this.chkRefresh = new System.Windows.Forms.CheckBox();
     this.lblContents = new System.Windows.Forms.Label();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.btnBatchSave = new System.Windows.Forms.Button();
     this.btnSearch = new System.Windows.Forms.Button();
     this.pnlOrganize = new System.Windows.Forms.Panel();
     this.grdOrganize = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colFullName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colIsInnerOrganize = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.splOrganize = new System.Windows.Forms.Splitter();
     this.tvOrganize = new System.Windows.Forms.TreeView();
     this.btnBatchDelete = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.btnMove = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.ucTableSort = new DotNet.WinForm.Common.WinControls.UCTableSort();
     this.cMnuOrganize.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.pnlOrganize.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOrganize)).BeginInit();
     this.SuspendLayout();
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     this.imageList.Images.SetKeyName(2, "");
     this.imageList.Images.SetKeyName(3, "");
     this.imageList.Images.SetKeyName(4, "");
     this.imageList.Images.SetKeyName(5, "");
     this.imageList.Images.SetKeyName(6, "");
     this.imageList.Images.SetKeyName(7, "");
     this.imageList.Images.SetKeyName(8, "");
     this.imageList.Images.SetKeyName(9, "");
     this.imageList.Images.SetKeyName(10, "");
     this.imageList.Images.SetKeyName(11, "");
     this.imageList.Images.SetKeyName(12, "");
     this.imageList.Images.SetKeyName(13, "");
     this.imageList.Images.SetKeyName(14, "");
     this.imageList.Images.SetKeyName(15, "icon_messenger1.gif");
     this.imageList.Images.SetKeyName(16, "icon_messenger0.gif");
     this.imageList.Images.SetKeyName(17, "icon_messenger2.gif");
     this.imageList.Images.SetKeyName(18, "icon_messenger3.gif");
     this.imageList.Images.SetKeyName(19, "icon_messenger4.gif");
     this.imageList.Images.SetKeyName(20, "icon_messenger5.gif");
     this.imageList.Images.SetKeyName(21, "icon_messenger6.gif");
     //
     // cMnuOrganize
     //
     this.cMnuOrganize.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mItmAdd,
     this.mItmEdit,
     this.mItmMove,
     this.mItmDelete,
     this.mItmAddRoot,
     this.toolStripSeparator1,
     this.mItmUserAdd,
     this.mItmStaffAdd,
     this.mItemRoleAdd,
     this.toolStripSeparator2,
     this.mItmOrganizeCategory,
     this.mItmFrmCodeBuilder,
     this.mItmSetSortCode});
     this.cMnuOrganize.Name = "cMnuModule";
     this.cMnuOrganize.Size = new System.Drawing.Size(182, 258);
     //
     // mItmAdd
     //
     this.mItmAdd.Enabled = false;
     this.mItmAdd.Name = "mItmAdd";
     this.mItmAdd.Size = new System.Drawing.Size(181, 22);
     this.mItmAdd.Text = "添加(&A)...";
     this.mItmAdd.Click += new System.EventHandler(this.mItmAdd_Click);
     //
     // mItmEdit
     //
     this.mItmEdit.Enabled = false;
     this.mItmEdit.Name = "mItmEdit";
     this.mItmEdit.Size = new System.Drawing.Size(181, 22);
     this.mItmEdit.Text = "编辑(&E)...";
     this.mItmEdit.Click += new System.EventHandler(this.mItmEdit_Click);
     //
     // mItmMove
     //
     this.mItmMove.Enabled = false;
     this.mItmMove.Name = "mItmMove";
     this.mItmMove.Size = new System.Drawing.Size(181, 22);
     this.mItmMove.Text = "移动(&M)...";
     this.mItmMove.Click += new System.EventHandler(this.mItmMove_Click);
     //
     // mItmDelete
     //
     this.mItmDelete.Enabled = false;
     this.mItmDelete.Name = "mItmDelete";
     this.mItmDelete.Size = new System.Drawing.Size(181, 22);
     this.mItmDelete.Text = "删除(&D)";
     this.mItmDelete.Click += new System.EventHandler(this.mItmDelete_Click);
     //
     // mItmAddRoot
     //
     this.mItmAddRoot.Enabled = false;
     this.mItmAddRoot.Name = "mItmAddRoot";
     this.mItmAddRoot.Size = new System.Drawing.Size(181, 22);
     this.mItmAddRoot.Text = "添加根组织机构...";
     this.mItmAddRoot.Click += new System.EventHandler(this.mItmAddRoot_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(178, 6);
     //
     // mItmUserAdd
     //
     this.mItmUserAdd.Enabled = false;
     this.mItmUserAdd.Name = "mItmUserAdd";
     this.mItmUserAdd.Size = new System.Drawing.Size(181, 22);
     this.mItmUserAdd.Text = "添加用户(&U)...";
     this.mItmUserAdd.Click += new System.EventHandler(this.mItmUserAdd_Click);
     //
     // mItmStaffAdd
     //
     this.mItmStaffAdd.Enabled = false;
     this.mItmStaffAdd.Name = "mItmStaffAdd";
     this.mItmStaffAdd.ShowShortcutKeys = false;
     this.mItmStaffAdd.Size = new System.Drawing.Size(181, 22);
     this.mItmStaffAdd.Text = "添加员工(&S)...";
     this.mItmStaffAdd.Click += new System.EventHandler(this.mItmAddStaff_Click);
     //
     // mItemRoleAdd
     //
     this.mItemRoleAdd.Enabled = false;
     this.mItemRoleAdd.Name = "mItemRoleAdd";
     this.mItemRoleAdd.Size = new System.Drawing.Size(181, 22);
     this.mItemRoleAdd.Text = "添加角色(&R)...";
     this.mItemRoleAdd.Visible = false;
     this.mItemRoleAdd.Click += new System.EventHandler(this.mItmAddRole_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(178, 6);
     //
     // mItmOrganizeCategory
     //
     this.mItmOrganizeCategory.Enabled = false;
     this.mItmOrganizeCategory.Name = "mItmOrganizeCategory";
     this.mItmOrganizeCategory.Size = new System.Drawing.Size(181, 22);
     this.mItmOrganizeCategory.Text = "组织机构类别维护...";
     this.mItmOrganizeCategory.Click += new System.EventHandler(this.mItmOrganizeCategory_Click);
     //
     // mItmFrmCodeBuilder
     //
     this.mItmFrmCodeBuilder.Enabled = false;
     this.mItmFrmCodeBuilder.Name = "mItmFrmCodeBuilder";
     this.mItmFrmCodeBuilder.Size = new System.Drawing.Size(181, 22);
     this.mItmFrmCodeBuilder.Text = "编号产生器设置...";
     this.mItmFrmCodeBuilder.Click += new System.EventHandler(this.mItmFrmOrganizeCodeBuilder_Click);
     //
     // mItmSetSortCode
     //
     this.mItmSetSortCode.Enabled = false;
     this.mItmSetSortCode.Name = "mItmSetSortCode";
     this.mItmSetSortCode.Size = new System.Drawing.Size(181, 22);
     this.mItmSetSortCode.Text = "保存排序顺序";
     this.mItmSetSortCode.Click += new System.EventHandler(this.mItmSetSortCode_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(884, 545);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 15;
     this.btnClose.Text = "关闭";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnPermission
     //
     this.btnPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPermission.Location = new System.Drawing.Point(402, 545);
     this.btnPermission.Name = "btnPermission";
     this.btnPermission.Size = new System.Drawing.Size(75, 23);
     this.btnPermission.TabIndex = 24;
     this.btnPermission.Text = "权限(&P)...";
     this.btnPermission.Click += new System.EventHandler(this.btnPermission_Click);
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Enabled = false;
     this.btnInvertSelect.Location = new System.Drawing.Point(89, 545);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(78, 23);
     this.btnInvertSelect.TabIndex = 23;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Enabled = false;
     this.btnSelectAll.Location = new System.Drawing.Point(6, 545);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(78, 23);
     this.btnSelectAll.TabIndex = 22;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // chkInnerOrganize
     //
     this.chkInnerOrganize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkInnerOrganize.AutoSize = true;
     this.chkInnerOrganize.Checked = true;
     this.chkInnerOrganize.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkInnerOrganize.Location = new System.Drawing.Point(730, 38);
     this.chkInnerOrganize.Name = "chkInnerOrganize";
     this.chkInnerOrganize.Size = new System.Drawing.Size(132, 16);
     this.chkInnerOrganize.TabIndex = 6;
     this.chkInnerOrganize.Text = "仅显示内部组织机构";
     this.chkInnerOrganize.UseVisualStyleBackColor = true;
     this.chkInnerOrganize.CheckedChanged += new System.EventHandler(this.chkInnerOrganize_CheckedChanged);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnExport);
     this.flowLayoutPanel1.Controls.Add(this.btnRoleResourcePermission);
     this.flowLayoutPanel1.Controls.Add(this.btnUserResourcePermission);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(575, 3);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(388, 29);
     this.flowLayoutPanel1.TabIndex = 16;
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Enabled = false;
     this.btnExport.Location = new System.Drawing.Point(265, 3);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(120, 23);
     this.btnExport.TabIndex = 5;
     this.btnExport.Text = "导出Excel...";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // btnRoleResourcePermission
     //
     this.btnRoleResourcePermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRoleResourcePermission.Enabled = false;
     this.btnRoleResourcePermission.Location = new System.Drawing.Point(139, 3);
     this.btnRoleResourcePermission.Name = "btnRoleResourcePermission";
     this.btnRoleResourcePermission.Size = new System.Drawing.Size(120, 23);
     this.btnRoleResourcePermission.TabIndex = 4;
     this.btnRoleResourcePermission.Text = "角色权限...";
     this.btnRoleResourcePermission.UseVisualStyleBackColor = true;
     this.btnRoleResourcePermission.Click += new System.EventHandler(this.btnRoleResourcePermission_Click);
     //
     // btnUserResourcePermission
     //
     this.btnUserResourcePermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnUserResourcePermission.Enabled = false;
     this.btnUserResourcePermission.Location = new System.Drawing.Point(13, 3);
     this.btnUserResourcePermission.Name = "btnUserResourcePermission";
     this.btnUserResourcePermission.Size = new System.Drawing.Size(120, 23);
     this.btnUserResourcePermission.TabIndex = 3;
     this.btnUserResourcePermission.Text = "用户权限...";
     this.btnUserResourcePermission.UseVisualStyleBackColor = true;
     this.btnUserResourcePermission.Click += new System.EventHandler(this.btnUserResourcePermission_Click);
     //
     // chkRefresh
     //
     this.chkRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkRefresh.AutoSize = true;
     this.chkRefresh.Checked = true;
     this.chkRefresh.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkRefresh.Location = new System.Drawing.Point(884, 38);
     this.chkRefresh.Name = "chkRefresh";
     this.chkRefresh.Size = new System.Drawing.Size(72, 16);
     this.chkRefresh.TabIndex = 7;
     this.chkRefresh.Text = "即时刷新";
     this.chkRefresh.UseVisualStyleBackColor = true;
     this.chkRefresh.CheckedChanged += new System.EventHandler(this.chkRefresh_CheckedChanged);
     //
     // lblContents
     //
     this.lblContents.Location = new System.Drawing.Point(23, 25);
     this.lblContents.Name = "lblContents";
     this.lblContents.Size = new System.Drawing.Size(90, 12);
     this.lblContents.TabIndex = 0;
     this.lblContents.Text = "查询内容(&C):";
     this.lblContents.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(117, 21);
     this.txtSearch.MaxLength = 20;
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(168, 21);
     this.txtSearch.TabIndex = 1;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // btnBatchSave
     //
     this.btnBatchSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchSave.Enabled = false;
     this.btnBatchSave.Location = new System.Drawing.Point(804, 545);
     this.btnBatchSave.Name = "btnBatchSave";
     this.btnBatchSave.Size = new System.Drawing.Size(75, 23);
     this.btnBatchSave.TabIndex = 14;
     this.btnBatchSave.Text = "保存(&S)";
     this.btnBatchSave.UseVisualStyleBackColor = true;
     this.btnBatchSave.Click += new System.EventHandler(this.btnBatchSave_Click);
     //
     // btnSearch
     //
     this.btnSearch.Location = new System.Drawing.Point(290, 21);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(75, 23);
     this.btnSearch.TabIndex = 2;
     this.btnSearch.Text = "查询(&F)";
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // pnlOrganize
     //
     this.pnlOrganize.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.pnlOrganize.Controls.Add(this.grdOrganize);
     this.pnlOrganize.Controls.Add(this.splOrganize);
     this.pnlOrganize.Controls.Add(this.tvOrganize);
     this.pnlOrganize.Location = new System.Drawing.Point(8, 60);
     this.pnlOrganize.Name = "pnlOrganize";
     this.pnlOrganize.Size = new System.Drawing.Size(951, 478);
     this.pnlOrganize.TabIndex = 1;
     //
     // grdOrganize
     //
     this.grdOrganize.AllowUserToAddRows = false;
     this.grdOrganize.AllowUserToDeleteRows = false;
     this.grdOrganize.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdOrganize.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdOrganize.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdOrganize.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colCode,
     this.colFullName,
     this.colIsInnerOrganize,
     this.colDescription});
     this.grdOrganize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdOrganize.Location = new System.Drawing.Point(263, 0);
     this.grdOrganize.MultiSelect = false;
     this.grdOrganize.Name = "grdOrganize";
     this.grdOrganize.RowTemplate.Height = 23;
     this.grdOrganize.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdOrganize.Size = new System.Drawing.Size(688, 478);
     this.grdOrganize.TabIndex = 2;
     this.grdOrganize.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdOrganize_CellDoubleClick);
     this.grdOrganize.Sorted += new System.EventHandler(this.grdOrganize_Sorted);
     this.grdOrganize.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.grdOrganize_UserDeletingRow);
     this.grdOrganize.Click += new System.EventHandler(this.grdOrganize_Click);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Width = 50;
     //
     // colCode
     //
     this.colCode.DataPropertyName = "Code";
     this.colCode.Frozen = true;
     this.colCode.HeaderText = "编号";
     this.colCode.MaxInputLength = 20;
     this.colCode.Name = "colCode";
     this.colCode.ReadOnly = true;
     //
     // colFullName
     //
     this.colFullName.DataPropertyName = "FullName";
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.colFullName.DefaultCellStyle = dataGridViewCellStyle2;
     this.colFullName.FillWeight = 170F;
     this.colFullName.HeaderText = "名称";
     this.colFullName.MaxInputLength = 100;
     this.colFullName.Name = "colFullName";
     this.colFullName.Width = 170;
     //
     // colIsInnerOrganize
     //
     this.colIsInnerOrganize.DataPropertyName = "IsInnerOrganize";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     dataGridViewCellStyle3.NullValue = false;
     this.colIsInnerOrganize.DefaultCellStyle = dataGridViewCellStyle3;
     this.colIsInnerOrganize.FalseValue = "0";
     this.colIsInnerOrganize.HeaderText = "内部组织";
     this.colIsInnerOrganize.Name = "colIsInnerOrganize";
     this.colIsInnerOrganize.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.colIsInnerOrganize.TrueValue = "1";
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "Description";
     dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.colDescription.DefaultCellStyle = dataGridViewCellStyle4;
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.Width = 105;
     //
     // splOrganize
     //
     this.splOrganize.Location = new System.Drawing.Point(260, 0);
     this.splOrganize.Name = "splOrganize";
     this.splOrganize.Size = new System.Drawing.Size(3, 478);
     this.splOrganize.TabIndex = 8;
     this.splOrganize.TabStop = false;
     //
     // tvOrganize
     //
     this.tvOrganize.AllowDrop = true;
     this.tvOrganize.Dock = System.Windows.Forms.DockStyle.Left;
     this.tvOrganize.HotTracking = true;
     this.tvOrganize.ImageIndex = 0;
     this.tvOrganize.ImageList = this.imageList;
     this.tvOrganize.Location = new System.Drawing.Point(0, 0);
     this.tvOrganize.Name = "tvOrganize";
     this.tvOrganize.SelectedImageIndex = 1;
     this.tvOrganize.Size = new System.Drawing.Size(260, 478);
     this.tvOrganize.TabIndex = 1;
     this.tvOrganize.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.tvOrganize_ItemDrag);
     this.tvOrganize.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvOrganize_AfterSelect);
     this.tvOrganize.Click += new System.EventHandler(this.tvOrganize_Click);
     this.tvOrganize.DragDrop += new System.Windows.Forms.DragEventHandler(this.tvOrganize_DragDrop);
     this.tvOrganize.DragEnter += new System.Windows.Forms.DragEventHandler(this.tvOrganize_DragEnter);
     this.tvOrganize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvOrganize_MouseDown);
     //
     // btnBatchDelete
     //
     this.btnBatchDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchDelete.Enabled = false;
     this.btnBatchDelete.Location = new System.Drawing.Point(724, 545);
     this.btnBatchDelete.Name = "btnBatchDelete";
     this.btnBatchDelete.Size = new System.Drawing.Size(75, 23);
     this.btnBatchDelete.TabIndex = 13;
     this.btnBatchDelete.Text = "删除(&D)";
     this.btnBatchDelete.UseVisualStyleBackColor = true;
     this.btnBatchDelete.Click += new System.EventHandler(this.btnBatchDelete_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Enabled = false;
     this.btnAdd.Location = new System.Drawing.Point(483, 545);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 9;
     this.btnAdd.Text = "添加(&A)...";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnMove
     //
     this.btnMove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnMove.Enabled = false;
     this.btnMove.Location = new System.Drawing.Point(644, 545);
     this.btnMove.Name = "btnMove";
     this.btnMove.Size = new System.Drawing.Size(75, 23);
     this.btnMove.TabIndex = 11;
     this.btnMove.Text = "移动(&M)...";
     this.btnMove.UseVisualStyleBackColor = true;
     this.btnMove.Click += new System.EventHandler(this.btnMove_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEdit.Enabled = false;
     this.btnEdit.Location = new System.Drawing.Point(564, 545);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(75, 23);
     this.btnEdit.TabIndex = 10;
     this.btnEdit.Text = "编辑(&E)...";
     this.btnEdit.UseVisualStyleBackColor = true;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // ucTableSort
     //
     this.ucTableSort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucTableSort.Location = new System.Drawing.Point(172, 543);
     this.ucTableSort.Margin = new System.Windows.Forms.Padding(0);
     this.ucTableSort.Name = "ucTableSort";
     this.ucTableSort.OEntityId = null;
     this.ucTableSort.Padding = new System.Windows.Forms.Padding(1);
     this.ucTableSort.SetBottomEnabled = false;
     this.ucTableSort.SetDownEnabled = false;
     this.ucTableSort.SetTopEnabled = false;
     this.ucTableSort.SetUpEnabled = false;
     this.ucTableSort.Size = new System.Drawing.Size(99, 26);
     this.ucTableSort.TabIndex = 8;
     //
     // FrmOrganizePermissionAdmin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(967, 572);
     this.Controls.Add(this.btnPermission);
     this.Controls.Add(this.btnInvertSelect);
     this.Controls.Add(this.btnSelectAll);
     this.Controls.Add(this.chkInnerOrganize);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.chkRefresh);
     this.Controls.Add(this.lblContents);
     this.Controls.Add(this.ucTableSort);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.btnBatchSave);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.pnlOrganize);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnBatchDelete);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnMove);
     this.Controls.Add(this.btnEdit);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmOrganizePermissionAdmin";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "组织机构权限管理";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmOrganizeAdmin_FormClosing);
     this.cMnuOrganize.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.pnlOrganize.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdOrganize)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 44
0
 /// <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();
     this.button1 = new System.Windows.Forms.Button();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.StatusLabel = new System.Windows.Forms.Label();
     this.button3 = new System.Windows.Forms.Button();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.label3 = new System.Windows.Forms.Label();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label5 = new System.Windows.Forms.Label();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.button4 = new System.Windows.Forms.Button();
     this.Relevant = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.DocumentId = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Date = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Score = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(328, 27);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 0;
     this.button1.Text = "Re-Index";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(119, 27);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(203, 20);
     this.textBox1.TabIndex = 6;
     this.textBox1.Text = "D:\\SearchProject\\reuters21578-xml\\";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 30);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(101, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Reuters XML Folder";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(409, 90);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 52);
     this.button2.TabIndex = 3;
     this.button2.Text = "Boolean Search";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(15, 90);
     this.textBox2.Multiline = true;
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(307, 52);
     this.textBox2.TabIndex = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(13, 74);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(124, 13);
     this.label2.TabIndex = 8;
     this.label2.Text = "Enter Search Text below";
     //
     // StatusLabel
     //
     this.StatusLabel.AutoSize = true;
     this.StatusLabel.Location = new System.Drawing.Point(403, 33);
     this.StatusLabel.Name = "StatusLabel";
     this.StatusLabel.Size = new System.Drawing.Size(0, 13);
     this.StatusLabel.TabIndex = 10;
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(328, 56);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 11;
     this.button3.Text = "Load Index";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToOrderColumns = true;
     this.dataGridView1.AllowUserToResizeColumns = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.BackgroundColor = System.Drawing.Color.Silver;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Relevant,
     this.DocumentId,
     this.Date,
     this.Title,
     this.Score});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridView1.Location = new System.Drawing.Point(15, 216);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridView1.Size = new System.Drawing.Size(746, 296);
     this.dataGridView1.TabIndex = 12;
     this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.Color.Red;
     this.label3.Location = new System.Drawing.Point(13, 182);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(0, 13);
     this.label3.TabIndex = 13;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker1.Location = new System.Drawing.Point(95, 148);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(86, 20);
     this.dateTimePicker1.TabIndex = 4;
     this.dateTimePicker1.Value = new System.DateTime(1987, 2, 26, 0, 0, 0, 0);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(185, 151);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(25, 13);
     this.label5.TabIndex = 17;
     this.label5.Text = "and";
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker2.Location = new System.Drawing.Point(214, 148);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(86, 20);
     this.dateTimePicker2.TabIndex = 5;
     this.dateTimePicker2.Value = new System.DateTime(1987, 10, 20, 0, 0, 0, 0);
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(17, 150);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(75, 17);
     this.checkBox1.TabIndex = 3;
     this.checkBox1.Text = "Dated btw";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(328, 90);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(75, 52);
     this.button4.TabIndex = 2;
     this.button4.Text = "Vector Search";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // Relevant
     //
     this.Relevant.FalseValue = "false";
     this.Relevant.HeaderText = "";
     this.Relevant.Name = "Relevant";
     this.Relevant.ReadOnly = true;
     this.Relevant.TrueValue = "true";
     this.Relevant.Width = 25;
     //
     // DocumentId
     //
     this.DocumentId.DataPropertyName = "DocumentId";
     this.DocumentId.HeaderText = "Document ID";
     this.DocumentId.Name = "DocumentId";
     this.DocumentId.ReadOnly = true;
     this.DocumentId.Width = 80;
     //
     // Date
     //
     this.Date.DataPropertyName = "Date";
     this.Date.HeaderText = "Date";
     this.Date.Name = "Date";
     this.Date.ReadOnly = true;
     //
     // Title
     //
     this.Title.DataPropertyName = "Title";
     this.Title.HeaderText = "Title";
     this.Title.Name = "Title";
     this.Title.ReadOnly = true;
     this.Title.Width = 365;
     //
     // Score
     //
     this.Score.DataPropertyName = "Score";
     this.Score.HeaderText = "Score";
     this.Score.Name = "Score";
     this.Score.ReadOnly = true;
     this.Score.Width = 130;
     //
     // SearchForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Silver;
     this.ClientSize = new System.Drawing.Size(776, 544);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.checkBox1);
     this.Controls.Add(this.dateTimePicker2);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.dateTimePicker1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.StatusLabel);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button1);
     this.MaximizeBox = false;
     this.Name = "SearchForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Reuters - Information Retrival System";
     ((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()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dgvData = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnRowAdd = new System.Windows.Forms.Button();
     this.btnColumnAdd = new System.Windows.Forms.Button();
     this.btnDataFileLoad = new System.Windows.Forms.Button();
     this.grpDataType = new System.Windows.Forms.GroupBox();
     this.radDataTypeOrd = new System.Windows.Forms.RadioButton();
     this.radDataTypeInt = new System.Windows.Forms.RadioButton();
     this.radDataTypeFre = new System.Windows.Forms.RadioButton();
     this.btnRun = new System.Windows.Forms.Button();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.dgvStatMeasure = new System.Windows.Forms.DataGridView();
     this.colStatMeasure = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colOrder = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.colUse = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.smiDeleteSelCol = new System.Windows.Forms.ToolStripMenuItem();
     this.smiDeleteSelRow = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.cmsDataCells = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.smiRenameHeader = new System.Windows.Forms.ToolStripMenuItem();
     this.txtRenameHeader = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.smiRenameColumn = new System.Windows.Forms.ToolStripMenuItem();
     this.smiRenameRow = new System.Windows.Forms.ToolStripMenuItem();
     this.smiRenameTopLeftCell = new System.Windows.Forms.ToolStripMenuItem();
     this.menInputAndSelection = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.aboutStatisticalAnalyzerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.grpDataType.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatMeasure)).BeginInit();
     this.cmsDataCells.SuspendLayout();
     this.menInputAndSelection.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvData
     //
     this.dgvData.AllowUserToResizeColumns = false;
     this.dgvData.AllowUserToResizeRows = false;
     this.dgvData.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1});
     this.dgvData.Location = new System.Drawing.Point(0, 90);
     this.dgvData.Name = "dgvData";
     this.dgvData.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
     this.dgvData.Size = new System.Drawing.Size(596, 365);
     this.dgvData.TabIndex = 0;
     this.dgvData.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvData_CellEndEdit);
     this.dgvData.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_CellMouseClick);
     this.dgvData.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_CellMouseUp);
     this.dgvData.ColumnAdded += new System.Windows.Forms.DataGridViewColumnEventHandler(this.dgvData_ColumnAdded);
     this.dgvData.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_ColumnHeaderMouseClick);
     this.dgvData.ColumnHeaderMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_ColumnHeaderMouseDoubleClick);
     this.dgvData.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgvData_DefaultValuesNeeded);
     //
     // Column1
     //
     this.Column1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Column1.HeaderText = "Column1";
     this.Column1.Name = "Column1";
     this.Column1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Column1.Width = 54;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnRowAdd);
     this.groupBox1.Controls.Add(this.btnColumnAdd);
     this.groupBox1.Controls.Add(this.btnDataFileLoad);
     this.groupBox1.Controls.Add(this.dgvData);
     this.groupBox1.Location = new System.Drawing.Point(12, 26);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(596, 461);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Input and Select Data";
     //
     // btnRowAdd
     //
     this.btnRowAdd.Location = new System.Drawing.Point(91, 67);
     this.btnRowAdd.Name = "btnRowAdd";
     this.btnRowAdd.Size = new System.Drawing.Size(79, 21);
     this.btnRowAdd.TabIndex = 9;
     this.btnRowAdd.Text = "Add Ro&w";
     this.btnRowAdd.UseVisualStyleBackColor = true;
     this.btnRowAdd.Click += new System.EventHandler(this.btnRowAdd_Click);
     //
     // btnColumnAdd
     //
     this.btnColumnAdd.Location = new System.Drawing.Point(6, 67);
     this.btnColumnAdd.Name = "btnColumnAdd";
     this.btnColumnAdd.Size = new System.Drawing.Size(79, 21);
     this.btnColumnAdd.TabIndex = 2;
     this.btnColumnAdd.Text = "Add &Column";
     this.btnColumnAdd.UseVisualStyleBackColor = true;
     this.btnColumnAdd.Click += new System.EventHandler(this.btnColumnAdd_Click);
     //
     // btnDataFileLoad
     //
     this.btnDataFileLoad.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDataFileLoad.Location = new System.Drawing.Point(6, 19);
     this.btnDataFileLoad.Name = "btnDataFileLoad";
     this.btnDataFileLoad.Size = new System.Drawing.Size(115, 32);
     this.btnDataFileLoad.TabIndex = 1;
     this.btnDataFileLoad.Text = "&Load Data File";
     this.btnDataFileLoad.UseVisualStyleBackColor = true;
     this.btnDataFileLoad.Click += new System.EventHandler(this.btnDataFileLoad_Click);
     //
     // grpDataType
     //
     this.grpDataType.Controls.Add(this.radDataTypeOrd);
     this.grpDataType.Controls.Add(this.radDataTypeInt);
     this.grpDataType.Controls.Add(this.radDataTypeFre);
     this.grpDataType.Location = new System.Drawing.Point(521, 26);
     this.grpDataType.Name = "grpDataType";
     this.grpDataType.Size = new System.Drawing.Size(87, 88);
     this.grpDataType.TabIndex = 2;
     this.grpDataType.TabStop = false;
     this.grpDataType.Text = "Data Type";
     //
     // radDataTypeOrd
     //
     this.radDataTypeOrd.AutoSize = true;
     this.radDataTypeOrd.Location = new System.Drawing.Point(6, 67);
     this.radDataTypeOrd.Name = "radDataTypeOrd";
     this.radDataTypeOrd.Size = new System.Drawing.Size(58, 17);
     this.radDataTypeOrd.TabIndex = 2;
     this.radDataTypeOrd.TabStop = true;
     this.radDataTypeOrd.Text = "Or&dinal";
     this.radDataTypeOrd.UseVisualStyleBackColor = true;
     this.radDataTypeOrd.CheckedChanged += new System.EventHandler(this.grpDataType_CheckedChanged);
     //
     // radDataTypeInt
     //
     this.radDataTypeInt.AutoSize = true;
     this.radDataTypeInt.Location = new System.Drawing.Point(6, 43);
     this.radDataTypeInt.Name = "radDataTypeInt";
     this.radDataTypeInt.Size = new System.Drawing.Size(60, 17);
     this.radDataTypeInt.TabIndex = 1;
     this.radDataTypeInt.TabStop = true;
     this.radDataTypeInt.Text = "&Interval";
     this.radDataTypeInt.UseVisualStyleBackColor = true;
     this.radDataTypeInt.CheckedChanged += new System.EventHandler(this.grpDataType_CheckedChanged);
     //
     // radDataTypeFre
     //
     this.radDataTypeFre.AutoSize = true;
     this.radDataTypeFre.Location = new System.Drawing.Point(6, 19);
     this.radDataTypeFre.Name = "radDataTypeFre";
     this.radDataTypeFre.Size = new System.Drawing.Size(75, 17);
     this.radDataTypeFre.TabIndex = 0;
     this.radDataTypeFre.TabStop = true;
     this.radDataTypeFre.Text = "F&requency";
     this.radDataTypeFre.UseVisualStyleBackColor = true;
     this.radDataTypeFre.CheckedChanged += new System.EventHandler(this.grpDataType_CheckedChanged);
     //
     // btnRun
     //
     this.btnRun.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRun.Location = new System.Drawing.Point(633, 446);
     this.btnRun.Name = "btnRun";
     this.btnRun.Size = new System.Drawing.Size(312, 35);
     this.btnRun.TabIndex = 1;
     this.btnRun.Text = "R&un";
     this.btnRun.UseVisualStyleBackColor = true;
     this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.dgvStatMeasure);
     this.groupBox5.Location = new System.Drawing.Point(633, 26);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(312, 410);
     this.groupBox5.TabIndex = 13;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Select Statistical Measure(s)";
     //
     // dgvStatMeasure
     //
     this.dgvStatMeasure.AllowUserToAddRows = false;
     this.dgvStatMeasure.AllowUserToResizeColumns = false;
     this.dgvStatMeasure.AllowUserToResizeRows = false;
     this.dgvStatMeasure.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvStatMeasure.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colStatMeasure,
     this.colOrder,
     this.colUse});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.ControlLight;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.ControlLight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvStatMeasure.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgvStatMeasure.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.dgvStatMeasure.Location = new System.Drawing.Point(0, 19);
     this.dgvStatMeasure.Name = "dgvStatMeasure";
     this.dgvStatMeasure.RowHeadersVisible = false;
     this.dgvStatMeasure.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dgvStatMeasure.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.dgvStatMeasure.Size = new System.Drawing.Size(312, 391);
     this.dgvStatMeasure.TabIndex = 15;
     this.dgvStatMeasure.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvStatMeasure_CellMouseUp);
     this.dgvStatMeasure.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStatMeasure_CellValueChanged);
     //
     // colStatMeasure
     //
     this.colStatMeasure.HeaderText = "Statistical Measure";
     this.colStatMeasure.Name = "colStatMeasure";
     this.colStatMeasure.ReadOnly = true;
     this.colStatMeasure.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colStatMeasure.Width = 172;
     //
     // colOrder
     //
     this.colOrder.HeaderText = "Series Order";
     this.colOrder.Name = "colOrder";
     this.colOrder.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colOrder.Width = 90;
     //
     // colUse
     //
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.NullValue = false;
     dataGridViewCellStyle1.Padding = new System.Windows.Forms.Padding(0, 0, 25, 0);
     this.colUse.DefaultCellStyle = dataGridViewCellStyle1;
     this.colUse.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.colUse.HeaderText = "Use";
     this.colUse.Name = "colUse";
     this.colUse.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colUse.Width = 47;
     //
     // smiDeleteSelCol
     //
     this.smiDeleteSelCol.Name = "smiDeleteSelCol";
     this.smiDeleteSelCol.Size = new System.Drawing.Size(180, 22);
     this.smiDeleteSelCol.Text = "Delete Selected Columns";
     this.smiDeleteSelCol.Click += new System.EventHandler(this.smiDeleteSelCol_Click);
     //
     // smiDeleteSelRow
     //
     this.smiDeleteSelRow.Name = "smiDeleteSelRow";
     this.smiDeleteSelRow.Size = new System.Drawing.Size(180, 22);
     this.smiDeleteSelRow.Text = "Delete Selected Rows";
     this.smiDeleteSelRow.Click += new System.EventHandler(this.smiDeleteSelRow_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
     //
     // cmsDataCells
     //
     this.cmsDataCells.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.smiDeleteSelCol,
     this.smiDeleteSelRow,
     this.toolStripSeparator1,
     this.smiRenameHeader});
     this.cmsDataCells.Name = "contextMenuStrip1";
     this.cmsDataCells.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.cmsDataCells.ShowImageMargin = false;
     this.cmsDataCells.Size = new System.Drawing.Size(181, 76);
     this.cmsDataCells.Opening += new System.ComponentModel.CancelEventHandler(this.cmsDataCells_Opening);
     //
     // smiRenameHeader
     //
     this.smiRenameHeader.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.txtRenameHeader,
     this.toolStripSeparator2,
     this.smiRenameColumn,
     this.smiRenameRow,
     this.smiRenameTopLeftCell});
     this.smiRenameHeader.Name = "smiRenameHeader";
     this.smiRenameHeader.Size = new System.Drawing.Size(180, 22);
     this.smiRenameHeader.Text = "Rename Header";
     //
     // txtRenameHeader
     //
     this.txtRenameHeader.Name = "txtRenameHeader";
     this.txtRenameHeader.Size = new System.Drawing.Size(150, 23);
     this.txtRenameHeader.ToolTipText = "Type new name here";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(220, 6);
     //
     // smiRenameColumn
     //
     this.smiRenameColumn.Name = "smiRenameColumn";
     this.smiRenameColumn.Size = new System.Drawing.Size(223, 22);
     this.smiRenameColumn.Text = "Rename Selected Column(s)";
     this.smiRenameColumn.Click += new System.EventHandler(this.smiRenameColumn_Click);
     //
     // smiRenameRow
     //
     this.smiRenameRow.Name = "smiRenameRow";
     this.smiRenameRow.Size = new System.Drawing.Size(223, 22);
     this.smiRenameRow.Text = "Rename Selected Row(s)";
     this.smiRenameRow.Click += new System.EventHandler(this.smiRenameRow_Click);
     //
     // smiRenameTopLeftCell
     //
     this.smiRenameTopLeftCell.Name = "smiRenameTopLeftCell";
     this.smiRenameTopLeftCell.Size = new System.Drawing.Size(223, 22);
     this.smiRenameTopLeftCell.Text = "Rename Top-left Cell";
     this.smiRenameTopLeftCell.Click += new System.EventHandler(this.smiRenameTopLeftCell_Click);
     //
     // menInputAndSelection
     //
     this.menInputAndSelection.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menInputAndSelection.Location = new System.Drawing.Point(0, 0);
     this.menInputAndSelection.Name = "menInputAndSelection";
     this.menInputAndSelection.Size = new System.Drawing.Size(963, 24);
     this.menInputAndSelection.TabIndex = 14;
     this.menInputAndSelection.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.openToolStripMenuItem,
     this.toolStripSeparator3,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F)));
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.openToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
     this.openToolStripMenuItem.Text = "&Open...";
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(152, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(155, 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.toolStripSeparator4,
     this.aboutStatisticalAnalyzerToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.H)));
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // viewHelpToolStripMenuItem
     //
     this.viewHelpToolStripMenuItem.Name = "viewHelpToolStripMenuItem";
     this.viewHelpToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1;
     this.viewHelpToolStripMenuItem.Size = new System.Drawing.Size(217, 22);
     this.viewHelpToolStripMenuItem.Text = "&View Help...";
     this.viewHelpToolStripMenuItem.Click += new System.EventHandler(this.viewHelpToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(214, 6);
     //
     // aboutStatisticalAnalyzerToolStripMenuItem
     //
     this.aboutStatisticalAnalyzerToolStripMenuItem.Name = "aboutStatisticalAnalyzerToolStripMenuItem";
     this.aboutStatisticalAnalyzerToolStripMenuItem.Size = new System.Drawing.Size(217, 22);
     this.aboutStatisticalAnalyzerToolStripMenuItem.Text = "&About Statistical Analyzer...";
     this.aboutStatisticalAnalyzerToolStripMenuItem.Click += new System.EventHandler(this.aboutStatisticalAnalyzerToolStripMenuItem_Click);
     //
     // InputAndSelectionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(963, 489);
     this.Controls.Add(this.menInputAndSelection);
     this.Controls.Add(this.grpDataType);
     this.Controls.Add(this.btnRun);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox1);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MainMenuStrip = this.menInputAndSelection;
     this.MaximizeBox = false;
     this.Name = "InputAndSelectionForm";
     this.Text = "Statistical Analyzer";
     this.Load += new System.EventHandler(this.InputAndSelectionForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.grpDataType.ResumeLayout(false);
     this.grpDataType.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatMeasure)).EndInit();
     this.cmsDataCells.ResumeLayout(false);
     this.menInputAndSelection.ResumeLayout(false);
     this.menInputAndSelection.PerformLayout();
     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 dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.scannerGrid = new System.Windows.Forms.DataGridView();
     this.cmsColumns = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mACAddressToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sSIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.rSSIToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.channelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.vendorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.securityToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.maxRateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.networkTypeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.firstSeenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.lastSeenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.latitudeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.longitudeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.idColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.checkColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.macColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ssidColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rssiColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.channelColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.vendorColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.securityColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.maxrateColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.networktypeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.firstseenColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ageColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.latColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lonColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.scannerGrid)).BeginInit();
     this.cmsColumns.SuspendLayout();
     this.SuspendLayout();
     //
     // scannerGrid
     //
     this.scannerGrid.AllowUserToAddRows = false;
     this.scannerGrid.AllowUserToDeleteRows = false;
     this.scannerGrid.AllowUserToOrderColumns = true;
     this.scannerGrid.AllowUserToResizeRows = false;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25)))));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Lime;
     dataGridViewCellStyle1.NullValue = "null!";
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.DimGray;
     this.scannerGrid.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.scannerGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.scannerGrid.BackgroundColor = System.Drawing.Color.Black;
     this.scannerGrid.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(202)))), ((int)(((byte)(202)))));
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(202)))), ((int)(((byte)(202)))), ((int)(((byte)(202)))));
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.scannerGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.scannerGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.scannerGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.idColumn,
     this.checkColumn,
     this.macColumn,
     this.ssidColumn,
     this.rssiColumn,
     this.channelColumn,
     this.vendorColumn,
     this.securityColumn,
     this.maxrateColumn,
     this.networktypeColumn,
     this.firstseenColumn,
     this.ageColumn,
     this.latColumn,
     this.lonColumn});
     this.scannerGrid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.scannerGrid.EnableHeadersVisualStyles = false;
     this.scannerGrid.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.scannerGrid.Location = new System.Drawing.Point(0, 0);
     this.scannerGrid.MultiSelect = false;
     this.scannerGrid.Name = "scannerGrid";
     this.scannerGrid.ReadOnly = true;
     this.scannerGrid.RowHeadersVisible = false;
     this.scannerGrid.RowHeadersWidth = 50;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.Color.Black;
     dataGridViewCellStyle4.ForeColor = System.Drawing.Color.Lime;
     dataGridViewCellStyle4.NullValue = "null!";
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.DimGray;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White;
     this.scannerGrid.RowsDefaultCellStyle = dataGridViewCellStyle4;
     this.scannerGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.scannerGrid.ShowEditingIcon = false;
     this.scannerGrid.Size = new System.Drawing.Size(500, 212);
     this.scannerGrid.TabIndex = 4;
     this.scannerGrid.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.ScannerViewCellMouseClick);
     this.scannerGrid.SortCompare += new System.Windows.Forms.DataGridViewSortCompareEventHandler(this.ScannerViewSortCompare);
     this.scannerGrid.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.ScannerGridColumnHeaderMouseClick);
     this.scannerGrid.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.ScannerViewCellPainting);
     this.scannerGrid.ColumnWidthChanged += new System.Windows.Forms.DataGridViewColumnEventHandler(this.ScannerViewColumnWidthChanged);
     this.scannerGrid.SelectionChanged += new System.EventHandler(this.ScannerViewSelectionChanged);
     this.scannerGrid.VisibleChanged += new System.EventHandler(this.ScannerViewVisibleChanged);
     //
     // cmsColumns
     //
     this.cmsColumns.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mACAddressToolStripMenuItem,
     this.sSIDToolStripMenuItem,
     this.rSSIToolStripMenuItem,
     this.channelToolStripMenuItem,
     this.vendorToolStripMenuItem,
     this.securityToolStripMenuItem,
     this.maxRateToolStripMenuItem,
     this.networkTypeToolStripMenuItem,
     this.firstSeenToolStripMenuItem,
     this.lastSeenToolStripMenuItem,
     this.latitudeToolStripMenuItem,
     this.longitudeToolStripMenuItem});
     this.cmsColumns.Name = "cmsColumns";
     this.cmsColumns.Size = new System.Drawing.Size(149, 268);
     //
     // mACAddressToolStripMenuItem
     //
     this.mACAddressToolStripMenuItem.CheckOnClick = true;
     this.mACAddressToolStripMenuItem.Name = "mACAddressToolStripMenuItem";
     this.mACAddressToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.mACAddressToolStripMenuItem.Text = "MAC Address";
     this.mACAddressToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // sSIDToolStripMenuItem
     //
     this.sSIDToolStripMenuItem.CheckOnClick = true;
     this.sSIDToolStripMenuItem.Name = "sSIDToolStripMenuItem";
     this.sSIDToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.sSIDToolStripMenuItem.Text = "SSID";
     this.sSIDToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // rSSIToolStripMenuItem
     //
     this.rSSIToolStripMenuItem.CheckOnClick = true;
     this.rSSIToolStripMenuItem.Name = "rSSIToolStripMenuItem";
     this.rSSIToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.rSSIToolStripMenuItem.Text = "RSSI";
     this.rSSIToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // channelToolStripMenuItem
     //
     this.channelToolStripMenuItem.CheckOnClick = true;
     this.channelToolStripMenuItem.Name = "channelToolStripMenuItem";
     this.channelToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.channelToolStripMenuItem.Text = "Channel";
     this.channelToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // vendorToolStripMenuItem
     //
     this.vendorToolStripMenuItem.CheckOnClick = true;
     this.vendorToolStripMenuItem.Name = "vendorToolStripMenuItem";
     this.vendorToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.vendorToolStripMenuItem.Text = "Vendor";
     this.vendorToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // securityToolStripMenuItem
     //
     this.securityToolStripMenuItem.CheckOnClick = true;
     this.securityToolStripMenuItem.Name = "securityToolStripMenuItem";
     this.securityToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.securityToolStripMenuItem.Text = "Security";
     this.securityToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // maxRateToolStripMenuItem
     //
     this.maxRateToolStripMenuItem.CheckOnClick = true;
     this.maxRateToolStripMenuItem.Name = "maxRateToolStripMenuItem";
     this.maxRateToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.maxRateToolStripMenuItem.Text = "Max Rate";
     this.maxRateToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // networkTypeToolStripMenuItem
     //
     this.networkTypeToolStripMenuItem.CheckOnClick = true;
     this.networkTypeToolStripMenuItem.Name = "networkTypeToolStripMenuItem";
     this.networkTypeToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.networkTypeToolStripMenuItem.Text = "Network Type";
     this.networkTypeToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // firstSeenToolStripMenuItem
     //
     this.firstSeenToolStripMenuItem.CheckOnClick = true;
     this.firstSeenToolStripMenuItem.Name = "firstSeenToolStripMenuItem";
     this.firstSeenToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.firstSeenToolStripMenuItem.Text = "First Seen";
     this.firstSeenToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // lastSeenToolStripMenuItem
     //
     this.lastSeenToolStripMenuItem.CheckOnClick = true;
     this.lastSeenToolStripMenuItem.Name = "lastSeenToolStripMenuItem";
     this.lastSeenToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.lastSeenToolStripMenuItem.Text = "Last Seen";
     this.lastSeenToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // latitudeToolStripMenuItem
     //
     this.latitudeToolStripMenuItem.CheckOnClick = true;
     this.latitudeToolStripMenuItem.Name = "latitudeToolStripMenuItem";
     this.latitudeToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.latitudeToolStripMenuItem.Text = "Latitude";
     this.latitudeToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // longitudeToolStripMenuItem
     //
     this.longitudeToolStripMenuItem.CheckOnClick = true;
     this.longitudeToolStripMenuItem.Name = "longitudeToolStripMenuItem";
     this.longitudeToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.longitudeToolStripMenuItem.Text = "Longitude";
     this.longitudeToolStripMenuItem.Click += new System.EventHandler(this.MacAddressToolStripMenuItemClick);
     //
     // idColumn
     //
     this.idColumn.HeaderText = "";
     this.idColumn.Name = "idColumn";
     this.idColumn.ReadOnly = true;
     this.idColumn.Visible = false;
     //
     // checkColumn
     //
     this.checkColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.checkColumn.FillWeight = 20F;
     this.checkColumn.HeaderText = "";
     this.checkColumn.MinimumWidth = 20;
     this.checkColumn.Name = "checkColumn";
     this.checkColumn.ReadOnly = true;
     this.checkColumn.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.checkColumn.Width = 20;
     //
     // macColumn
     //
     this.macColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.macColumn.DefaultCellStyle = dataGridViewCellStyle3;
     this.macColumn.FillWeight = 130F;
     this.macColumn.HeaderText = "MAC Address";
     this.macColumn.MinimumWidth = 130;
     this.macColumn.Name = "macColumn";
     this.macColumn.ReadOnly = true;
     this.macColumn.Width = 130;
     //
     // ssidColumn
     //
     this.ssidColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ssidColumn.FillWeight = 150F;
     this.ssidColumn.HeaderText = "SSID";
     this.ssidColumn.MaxInputLength = 32;
     this.ssidColumn.MinimumWidth = 70;
     this.ssidColumn.Name = "ssidColumn";
     this.ssidColumn.ReadOnly = true;
     //
     // rssiColumn
     //
     this.rssiColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.rssiColumn.FillWeight = 35F;
     this.rssiColumn.HeaderText = "RSSI";
     this.rssiColumn.MinimumWidth = 35;
     this.rssiColumn.Name = "rssiColumn";
     this.rssiColumn.ReadOnly = true;
     //
     // channelColumn
     //
     this.channelColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
     this.channelColumn.FillWeight = 48F;
     this.channelColumn.HeaderText = "Channel";
     this.channelColumn.MinimumWidth = 48;
     this.channelColumn.Name = "channelColumn";
     this.channelColumn.ReadOnly = true;
     this.channelColumn.Width = 48;
     //
     // vendorColumn
     //
     this.vendorColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.vendorColumn.FillWeight = 80F;
     this.vendorColumn.HeaderText = "Vendor";
     this.vendorColumn.MinimumWidth = 80;
     this.vendorColumn.Name = "vendorColumn";
     this.vendorColumn.ReadOnly = true;
     this.vendorColumn.Visible = false;
     //
     // securityColumn
     //
     this.securityColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.securityColumn.FillWeight = 80F;
     this.securityColumn.HeaderText = "Security";
     this.securityColumn.MinimumWidth = 80;
     this.securityColumn.Name = "securityColumn";
     this.securityColumn.ReadOnly = true;
     //
     // maxrateColumn
     //
     this.maxrateColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.maxrateColumn.FillWeight = 60F;
     this.maxrateColumn.HeaderText = "Max Rate";
     this.maxrateColumn.MinimumWidth = 60;
     this.maxrateColumn.Name = "maxrateColumn";
     this.maxrateColumn.ReadOnly = true;
     //
     // networktypeColumn
     //
     this.networktypeColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
     this.networktypeColumn.HeaderText = "Network Type";
     this.networktypeColumn.MinimumWidth = 100;
     this.networktypeColumn.Name = "networktypeColumn";
     this.networktypeColumn.ReadOnly = true;
     this.networktypeColumn.Visible = false;
     //
     // firstseenColumn
     //
     this.firstseenColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.firstseenColumn.FillWeight = 70F;
     this.firstseenColumn.HeaderText = "First Seen";
     this.firstseenColumn.MinimumWidth = 70;
     this.firstseenColumn.Name = "firstseenColumn";
     this.firstseenColumn.ReadOnly = true;
     this.firstseenColumn.Visible = false;
     //
     // ageColumn
     //
     this.ageColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ageColumn.FillWeight = 50F;
     this.ageColumn.HeaderText = "Age";
     this.ageColumn.MinimumWidth = 50;
     this.ageColumn.Name = "ageColumn";
     this.ageColumn.ReadOnly = true;
     //
     // latColumn
     //
     this.latColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.latColumn.FillWeight = 70F;
     this.latColumn.HeaderText = "Latitude";
     this.latColumn.MinimumWidth = 70;
     this.latColumn.Name = "latColumn";
     this.latColumn.ReadOnly = true;
     this.latColumn.Visible = false;
     //
     // lonColumn
     //
     this.lonColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.lonColumn.FillWeight = 70F;
     this.lonColumn.HeaderText = "Longitude";
     this.lonColumn.MinimumWidth = 70;
     this.lonColumn.Name = "lonColumn";
     this.lonColumn.ReadOnly = true;
     this.lonColumn.Visible = false;
     //
     // ScannerViewMini
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.scannerGrid);
     this.Name = "ScannerViewMini";
     this.Size = new System.Drawing.Size(500, 212);
     ((System.ComponentModel.ISupportInitialize)(this.scannerGrid)).EndInit();
     this.cmsColumns.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 47
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.lblUserName = new System.Windows.Forms.Label();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.cmbUserAuditStates = new System.Windows.Forms.ComboBox();
     this.lblAudited = new System.Windows.Forms.Label();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnReject = new System.Windows.Forms.Button();
     this.btnPass = new System.Windows.Forms.Button();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.grdUser = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUsername = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRealName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDefaultRole = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAudited = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDepartment = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCreateOn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnSearch = new System.Windows.Forms.Button();
     this.lblRole = new System.Windows.Forms.Label();
     this.cmbRole = new System.Windows.Forms.ComboBox();
     this.btnEdit = new System.Windows.Forms.Button();
     this.btnExport = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).BeginInit();
     this.SuspendLayout();
     //
     // lblUserName
     //
     this.lblUserName.AutoSize = true;
     this.lblUserName.Location = new System.Drawing.Point(42, 19);
     this.lblUserName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblUserName.Name = "lblUserName";
     this.lblUserName.Size = new System.Drawing.Size(71, 12);
     this.lblUserName.TabIndex = 0;
     this.lblUserName.Text = "用户名(&U):";
     this.lblUserName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(133, 14);
     this.txtSearch.Margin = new System.Windows.Forms.Padding(2);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(160, 21);
     this.txtSearch.TabIndex = 1;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // cmbUserAuditStates
     //
     this.cmbUserAuditStates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbUserAuditStates.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbUserAuditStates.FormattingEnabled = true;
     this.cmbUserAuditStates.Location = new System.Drawing.Point(601, 9);
     this.cmbUserAuditStates.Margin = new System.Windows.Forms.Padding(2);
     this.cmbUserAuditStates.Name = "cmbUserAuditStates";
     this.cmbUserAuditStates.Size = new System.Drawing.Size(160, 20);
     this.cmbUserAuditStates.TabIndex = 4;
     this.cmbUserAuditStates.SelectedIndexChanged += new System.EventHandler(this.cmbUserAuditStates_SelectedIndexChanged);
     //
     // lblAudited
     //
     this.lblAudited.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblAudited.AutoSize = true;
     this.lblAudited.Location = new System.Drawing.Point(514, 12);
     this.lblAudited.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblAudited.Name = "lblAudited";
     this.lblAudited.Size = new System.Drawing.Size(83, 12);
     this.lblAudited.TabIndex = 3;
     this.lblAudited.Text = "审核状态(&H):";
     this.lblAudited.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Location = new System.Drawing.Point(6, 466);
     this.btnSelectAll.Margin = new System.Windows.Forms.Padding(2);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(78, 23);
     this.btnSelectAll.TabIndex = 8;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(687, 468);
     this.btnClose.Margin = new System.Windows.Forms.Padding(2);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 15;
     this.btnClose.Text = "关闭";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(608, 468);
     this.btnDelete.Margin = new System.Windows.Forms.Padding(2);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 14;
     this.btnDelete.Text = "删除(&D)";
     this.btnDelete.UseVisualStyleBackColor = true;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnReject
     //
     this.btnReject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnReject.Location = new System.Drawing.Point(348, 468);
     this.btnReject.Margin = new System.Windows.Forms.Padding(2);
     this.btnReject.Name = "btnReject";
     this.btnReject.Size = new System.Drawing.Size(75, 23);
     this.btnReject.TabIndex = 11;
     this.btnReject.Text = "退回(&R)";
     this.btnReject.UseVisualStyleBackColor = true;
     this.btnReject.Click += new System.EventHandler(this.btnReject_Click);
     //
     // btnPass
     //
     this.btnPass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPass.Location = new System.Drawing.Point(269, 468);
     this.btnPass.Margin = new System.Windows.Forms.Padding(2);
     this.btnPass.Name = "btnPass";
     this.btnPass.Size = new System.Drawing.Size(75, 23);
     this.btnPass.TabIndex = 10;
     this.btnPass.Text = "通过(&P)";
     this.btnPass.UseVisualStyleBackColor = true;
     this.btnPass.Click += new System.EventHandler(this.btnPass_Click);
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Location = new System.Drawing.Point(88, 466);
     this.btnInvertSelect.Margin = new System.Windows.Forms.Padding(2);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(78, 23);
     this.btnInvertSelect.TabIndex = 9;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // grdUser
     //
     this.grdUser.AllowUserToAddRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.AliceBlue;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(168)))), ((int)(((byte)(168)))), ((int)(((byte)(255)))));
     this.grdUser.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.grdUser.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.grdUser.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     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.grdUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colUsername,
     this.colRealName,
     this.colDefaultRole,
     this.colAudited,
     this.colDepartment,
     this.colCreateOn,
     this.colDescription});
     this.grdUser.Location = new System.Drawing.Point(8, 56);
     this.grdUser.Margin = new System.Windows.Forms.Padding(2);
     this.grdUser.MultiSelect = false;
     this.grdUser.Name = "grdUser";
     this.grdUser.RowTemplate.Height = 23;
     this.grdUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdUser.Size = new System.Drawing.Size(754, 405);
     this.grdUser.TabIndex = 7;
     this.grdUser.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdUserManagement_CellDoubleClick);
     this.grdUser.RowPrePaint += new System.Windows.Forms.DataGridViewRowPrePaintEventHandler(this.grdUser_RowPrePaint);
     this.grdUser.SelectionChanged += new System.EventHandler(this.grdUser_SelectionChanged);
     this.grdUser.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.grdUserManagement_UserDeletingRow);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colSelected.Width = 50;
     //
     // colUsername
     //
     this.colUsername.DataPropertyName = "Username";
     this.colUsername.FillWeight = 90F;
     this.colUsername.Frozen = true;
     this.colUsername.HeaderText = "用户名";
     this.colUsername.Name = "colUsername";
     this.colUsername.ReadOnly = true;
     this.colUsername.Width = 90;
     //
     // colRealName
     //
     this.colRealName.DataPropertyName = "RealName";
     this.colRealName.FillWeight = 80F;
     this.colRealName.Frozen = true;
     this.colRealName.HeaderText = "姓名";
     this.colRealName.MaxInputLength = 20;
     this.colRealName.Name = "colRealName";
     this.colRealName.ReadOnly = true;
     this.colRealName.Width = 80;
     //
     // colDefaultRole
     //
     this.colDefaultRole.DataPropertyName = "RoleName";
     this.colDefaultRole.HeaderText = "默认角色";
     this.colDefaultRole.MaxInputLength = 200;
     this.colDefaultRole.Name = "colDefaultRole";
     this.colDefaultRole.ReadOnly = true;
     //
     // colAudited
     //
     this.colAudited.DataPropertyName = "AuditStates";
     this.colAudited.FillWeight = 80F;
     this.colAudited.HeaderText = "审核";
     this.colAudited.MaxInputLength = 200;
     this.colAudited.Name = "colAudited";
     this.colAudited.ReadOnly = true;
     this.colAudited.Width = 80;
     //
     // colDepartment
     //
     this.colDepartment.DataPropertyName = "DepartmentName";
     this.colDepartment.FillWeight = 150F;
     this.colDepartment.HeaderText = "部门";
     this.colDepartment.MaxInputLength = 200;
     this.colDepartment.Name = "colDepartment";
     this.colDepartment.ReadOnly = true;
     this.colDepartment.Width = 150;
     //
     // colCreateOn
     //
     this.colCreateOn.DataPropertyName = "CreateOn";
     this.colCreateOn.FillWeight = 80F;
     this.colCreateOn.HeaderText = "创建日期";
     this.colCreateOn.Name = "colCreateOn";
     this.colCreateOn.ReadOnly = true;
     this.colCreateOn.Width = 80;
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "Description";
     this.colDescription.FillWeight = 200F;
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.ReadOnly = true;
     this.colDescription.Width = 200;
     //
     // btnSearch
     //
     this.btnSearch.Location = new System.Drawing.Point(298, 13);
     this.btnSearch.Margin = new System.Windows.Forms.Padding(2);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(75, 23);
     this.btnSearch.TabIndex = 2;
     this.btnSearch.Text = "查询(&S)";
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // lblRole
     //
     this.lblRole.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblRole.AutoSize = true;
     this.lblRole.Location = new System.Drawing.Point(514, 36);
     this.lblRole.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblRole.Name = "lblRole";
     this.lblRole.Size = new System.Drawing.Size(83, 12);
     this.lblRole.TabIndex = 5;
     this.lblRole.Text = "默认角色(&T):";
     this.lblRole.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmbRole
     //
     this.cmbRole.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbRole.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbRole.FormattingEnabled = true;
     this.cmbRole.Location = new System.Drawing.Point(601, 32);
     this.cmbRole.Margin = new System.Windows.Forms.Padding(2);
     this.cmbRole.Name = "cmbRole";
     this.cmbRole.Size = new System.Drawing.Size(160, 20);
     this.cmbRole.TabIndex = 6;
     this.cmbRole.SelectedIndexChanged += new System.EventHandler(this.cmbRole_SelectedIndexChanged);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEdit.Location = new System.Drawing.Point(427, 468);
     this.btnEdit.Margin = new System.Windows.Forms.Padding(2);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(75, 23);
     this.btnEdit.TabIndex = 12;
     this.btnEdit.Text = "编辑(&E)...";
     this.btnEdit.UseVisualStyleBackColor = true;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Location = new System.Drawing.Point(506, 468);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(98, 23);
     this.btnExport.TabIndex = 13;
     this.btnExport.Text = "导出E&xcel...";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // FrmUserAudit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(770, 495);
     this.Controls.Add(this.grdUser);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.cmbRole);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.btnInvertSelect);
     this.Controls.Add(this.btnPass);
     this.Controls.Add(this.btnReject);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnSelectAll);
     this.Controls.Add(this.lblAudited);
     this.Controls.Add(this.cmbUserAuditStates);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.lblUserName);
     this.Controls.Add(this.lblRole);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Margin = new System.Windows.Forms.Padding(2);
     this.Name = "FrmUserAudit";
     this.Padding = new System.Windows.Forms.Padding(6);
     this.Text = "用户审核";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmUserAudit_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).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 dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_AyudaProveedor));
     this.lblregseleccionado = new System.Windows.Forms.Label();
     this.GroupBox3 = new System.Windows.Forms.GroupBox();
     this.btnExit = new System.Windows.Forms.Button();
     this.btnSeleccion = new System.Windows.Forms.Button();
     this.GroupBox4 = new System.Windows.Forms.GroupBox();
     this.rbactivo3 = new System.Windows.Forms.RadioButton();
     this.rbactivo2 = new System.Windows.Forms.RadioButton();
     this.rbactivo1 = new System.Windows.Forms.RadioButton();
     this.GroupBox2 = new System.Windows.Forms.GroupBox();
     this.cboCriterioBusqueda = new System.Windows.Forms.ComboBox();
     this.txtCadenaBuscar = new System.Windows.Forms.TextBox();
     this.btnbuscar = new System.Windows.Forms.Button();
     this.Label22 = new System.Windows.Forms.Label();
     this.GridExaminar = new System.Windows.Forms.DataGridView();
     this.ctacte = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nmruc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.docuidentid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tpperson = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.agerent = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.appat = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.apmat = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nombr = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.direc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.paisid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ubigeo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.telef1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.email = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.urweb = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dscto3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.telef2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.telef3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.clientetipo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.contacto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.diralter = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.vendedorid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.clienteidold = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.GroupBox3.SuspendLayout();
     this.GroupBox4.SuspendLayout();
     this.GroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridExaminar)).BeginInit();
     this.SuspendLayout();
     //
     // lblregseleccionado
     //
     this.lblregseleccionado.BackColor = System.Drawing.Color.Red;
     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.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.lblregseleccionado.Location = new System.Drawing.Point(758, 475);
     this.lblregseleccionado.Name = "lblregseleccionado";
     this.lblregseleccionado.Size = new System.Drawing.Size(156, 13);
     this.lblregseleccionado.TabIndex = 4;
     this.lblregseleccionado.Text = "REGISTROS ANULADOS";
     this.lblregseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblregseleccionado.Visible = false;
     //
     // GroupBox3
     //
     this.GroupBox3.Controls.Add(this.btnExit);
     this.GroupBox3.Controls.Add(this.btnSeleccion);
     this.GroupBox3.Location = new System.Drawing.Point(330, 457);
     this.GroupBox3.Name = "GroupBox3";
     this.GroupBox3.Size = new System.Drawing.Size(186, 38);
     this.GroupBox3.TabIndex = 2;
     this.GroupBox3.TabStop = false;
     //
     // btnExit
     //
     this.btnExit.Image = global::BapFormulariosNet.Properties.Resources.Cancela16;
     this.btnExit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(94, 11);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(86, 25);
     this.btnExit.TabIndex = 1;
     this.btnExit.Text = "&Cerrar     ";
     this.btnExit.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnExit.UseVisualStyleBackColor = true;
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnSeleccion
     //
     this.btnSeleccion.Image = global::BapFormulariosNet.Properties.Resources.Acepta16;
     this.btnSeleccion.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSeleccion.Location = new System.Drawing.Point(5, 11);
     this.btnSeleccion.Name = "btnSeleccion";
     this.btnSeleccion.Size = new System.Drawing.Size(86, 25);
     this.btnSeleccion.TabIndex = 0;
     this.btnSeleccion.Text = "&Seleccionar";
     this.btnSeleccion.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSeleccion.UseVisualStyleBackColor = true;
     this.btnSeleccion.Click += new System.EventHandler(this.btnSeleccion_Click);
     //
     // GroupBox4
     //
     this.GroupBox4.Controls.Add(this.rbactivo3);
     this.GroupBox4.Controls.Add(this.rbactivo2);
     this.GroupBox4.Controls.Add(this.rbactivo1);
     this.GroupBox4.Location = new System.Drawing.Point(14, 461);
     this.GroupBox4.Name = "GroupBox4";
     this.GroupBox4.Size = new System.Drawing.Size(199, 31);
     this.GroupBox4.TabIndex = 3;
     this.GroupBox4.TabStop = false;
     //
     // rbactivo3
     //
     this.rbactivo3.AutoSize = true;
     this.rbactivo3.ForeColor = System.Drawing.Color.Red;
     this.rbactivo3.Location = new System.Drawing.Point(140, 11);
     this.rbactivo3.Name = "rbactivo3";
     this.rbactivo3.Size = new System.Drawing.Size(51, 17);
     this.rbactivo3.TabIndex = 2;
     this.rbactivo3.Text = "Bajas";
     this.rbactivo3.UseVisualStyleBackColor = true;
     //
     // rbactivo2
     //
     this.rbactivo2.AutoSize = true;
     this.rbactivo2.ForeColor = System.Drawing.Color.Blue;
     this.rbactivo2.Location = new System.Drawing.Point(72, 11);
     this.rbactivo2.Name = "rbactivo2";
     this.rbactivo2.Size = new System.Drawing.Size(60, 17);
     this.rbactivo2.TabIndex = 1;
     this.rbactivo2.Text = "Activos";
     this.rbactivo2.UseVisualStyleBackColor = true;
     //
     // rbactivo1
     //
     this.rbactivo1.AutoSize = true;
     this.rbactivo1.Checked = true;
     this.rbactivo1.Location = new System.Drawing.Point(9, 11);
     this.rbactivo1.Name = "rbactivo1";
     this.rbactivo1.Size = new System.Drawing.Size(54, 17);
     this.rbactivo1.TabIndex = 0;
     this.rbactivo1.TabStop = true;
     this.rbactivo1.Text = "Todos";
     this.rbactivo1.UseVisualStyleBackColor = true;
     //
     // GroupBox2
     //
     this.GroupBox2.Controls.Add(this.cboCriterioBusqueda);
     this.GroupBox2.Controls.Add(this.txtCadenaBuscar);
     this.GroupBox2.Controls.Add(this.btnbuscar);
     this.GroupBox2.Controls.Add(this.Label22);
     this.GroupBox2.Location = new System.Drawing.Point(6, 3);
     this.GroupBox2.Name = "GroupBox2";
     this.GroupBox2.Size = new System.Drawing.Size(615, 45);
     this.GroupBox2.TabIndex = 0;
     this.GroupBox2.TabStop = false;
     this.GroupBox2.Text = "Búsqueda";
     //
     // cboCriterioBusqueda
     //
     this.cboCriterioBusqueda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboCriterioBusqueda.FormattingEnabled = true;
     this.cboCriterioBusqueda.Items.AddRange(new object[] {
     "Razón Social",
     "Ruc",
     "Código"});
     this.cboCriterioBusqueda.Location = new System.Drawing.Point(75, 16);
     this.cboCriterioBusqueda.Name = "cboCriterioBusqueda";
     this.cboCriterioBusqueda.Size = new System.Drawing.Size(136, 21);
     this.cboCriterioBusqueda.TabIndex = 1;
     //
     // txtCadenaBuscar
     //
     this.txtCadenaBuscar.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCadenaBuscar.Location = new System.Drawing.Point(215, 16);
     this.txtCadenaBuscar.Name = "txtCadenaBuscar";
     this.txtCadenaBuscar.Size = new System.Drawing.Size(309, 21);
     this.txtCadenaBuscar.TabIndex = 2;
     this.txtCadenaBuscar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCadenaBuscar_KeyDown);
     //
     // btnbuscar
     //
     this.btnbuscar.Image = global::BapFormulariosNet.Properties.Resources.lupa18;
     this.btnbuscar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnbuscar.Location = new System.Drawing.Point(528, 13);
     this.btnbuscar.Name = "btnbuscar";
     this.btnbuscar.Size = new System.Drawing.Size(79, 25);
     this.btnbuscar.TabIndex = 3;
     this.btnbuscar.Text = "&Buscar";
     this.btnbuscar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnbuscar.UseVisualStyleBackColor = true;
     this.btnbuscar.Click += new System.EventHandler(this.btnbuscar_Click);
     //
     // Label22
     //
     this.Label22.AutoSize = true;
     this.Label22.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label22.Location = new System.Drawing.Point(8, 20);
     this.Label22.Name = "Label22";
     this.Label22.Size = new System.Drawing.Size(62, 13);
     this.Label22.TabIndex = 0;
     this.Label22.Text = "Buscar por:";
     //
     // GridExaminar
     //
     this.GridExaminar.AllowUserToAddRows = false;
     this.GridExaminar.AllowUserToDeleteRows = false;
     this.GridExaminar.AllowUserToResizeRows = false;
     this.GridExaminar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.RoyalBlue;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.GridExaminar.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.GridExaminar.ColumnHeadersHeight = 36;
     this.GridExaminar.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ctacte,
     this.nmruc,
     this.docuidentid,
     this.tpperson,
     this.ctactename,
     this.agerent,
     this.appat,
     this.apmat,
     this.nombr,
     this.direc,
     this.paisid,
     this.ubigeo,
     this.telef1,
     this.email,
     this.urweb,
     this.dscto3,
     this.telef2,
     this.telef3,
     this.clientetipo,
     this.contacto,
     this.diralter,
     this.vendedorid,
     this.clienteidold,
     this.usuar,
     this.fecre,
     this.feact,
     this.status});
     this.GridExaminar.Location = new System.Drawing.Point(6, 53);
     this.GridExaminar.MultiSelect = false;
     this.GridExaminar.Name = "GridExaminar";
     this.GridExaminar.ReadOnly = true;
     this.GridExaminar.RowHeadersVisible = false;
     this.GridExaminar.RowTemplate.Height = 20;
     this.GridExaminar.Size = new System.Drawing.Size(920, 408);
     this.GridExaminar.TabIndex = 1;
     this.GridExaminar.DoubleClick += new System.EventHandler(this.GridExaminar_DoubleClick);
     this.GridExaminar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.GridExaminar_KeyDown);
     //
     // ctacte
     //
     this.ctacte.DataPropertyName = "ctacte";
     this.ctacte.HeaderText = "Código";
     this.ctacte.Name = "ctacte";
     this.ctacte.ReadOnly = true;
     this.ctacte.Width = 60;
     //
     // nmruc
     //
     this.nmruc.DataPropertyName = "nmruc";
     this.nmruc.HeaderText = "N°  R.U.C.";
     this.nmruc.Name = "nmruc";
     this.nmruc.ReadOnly = true;
     //
     // docuidentid
     //
     this.docuidentid.DataPropertyName = "docuidentid";
     this.docuidentid.HeaderText = "TD";
     this.docuidentid.Name = "docuidentid";
     this.docuidentid.ReadOnly = true;
     this.docuidentid.Width = 30;
     //
     // tpperson
     //
     this.tpperson.DataPropertyName = "tpperson";
     this.tpperson.HeaderText = "TP";
     this.tpperson.Name = "tpperson";
     this.tpperson.ReadOnly = true;
     this.tpperson.Width = 30;
     //
     // ctactename
     //
     this.ctactename.DataPropertyName = "ctactename";
     this.ctactename.HeaderText = "Apellidos y Nombres/Razón Social";
     this.ctactename.Name = "ctactename";
     this.ctactename.ReadOnly = true;
     this.ctactename.Width = 350;
     //
     // agerent
     //
     this.agerent.DataPropertyName = "agerent";
     this.agerent.HeaderText = "Agente Ret.";
     this.agerent.Name = "agerent";
     this.agerent.ReadOnly = true;
     this.agerent.Width = 48;
     //
     // appat
     //
     this.appat.DataPropertyName = "appat";
     this.appat.HeaderText = "Apellido Paterno";
     this.appat.Name = "appat";
     this.appat.ReadOnly = true;
     this.appat.Visible = false;
     //
     // apmat
     //
     this.apmat.DataPropertyName = "apmat";
     this.apmat.HeaderText = "Apellido Materno";
     this.apmat.Name = "apmat";
     this.apmat.ReadOnly = true;
     this.apmat.Visible = false;
     //
     // nombr
     //
     this.nombr.DataPropertyName = "nombr";
     this.nombr.HeaderText = "Nombres";
     this.nombr.Name = "nombr";
     this.nombr.ReadOnly = true;
     this.nombr.Visible = false;
     //
     // direc
     //
     this.direc.DataPropertyName = "direc";
     this.direc.HeaderText = "Dirección";
     this.direc.Name = "direc";
     this.direc.ReadOnly = true;
     this.direc.Width = 280;
     //
     // paisid
     //
     this.paisid.DataPropertyName = "paisid";
     this.paisid.HeaderText = "Pais";
     this.paisid.Name = "paisid";
     this.paisid.ReadOnly = true;
     this.paisid.Visible = false;
     this.paisid.Width = 80;
     //
     // ubigeo
     //
     this.ubigeo.DataPropertyName = "ubigeo";
     this.ubigeo.HeaderText = "Ubigeo";
     this.ubigeo.Name = "ubigeo";
     this.ubigeo.ReadOnly = true;
     this.ubigeo.Visible = false;
     //
     // telef1
     //
     this.telef1.DataPropertyName = "telef1";
     this.telef1.HeaderText = "Telefono";
     this.telef1.Name = "telef1";
     this.telef1.ReadOnly = true;
     this.telef1.Visible = false;
     //
     // email
     //
     this.email.DataPropertyName = "email";
     this.email.HeaderText = "Email";
     this.email.Name = "email";
     this.email.ReadOnly = true;
     this.email.Visible = false;
     //
     // urweb
     //
     this.urweb.DataPropertyName = "urweb";
     this.urweb.HeaderText = "Pág.Web";
     this.urweb.Name = "urweb";
     this.urweb.ReadOnly = true;
     this.urweb.Visible = false;
     this.urweb.Width = 200;
     //
     // dscto3
     //
     this.dscto3.DataPropertyName = "dscto3";
     this.dscto3.HeaderText = "Descuento";
     this.dscto3.Name = "dscto3";
     this.dscto3.ReadOnly = true;
     this.dscto3.Visible = false;
     //
     // telef2
     //
     this.telef2.DataPropertyName = "telef2";
     this.telef2.HeaderText = "Cuenta Detracción";
     this.telef2.Name = "telef2";
     this.telef2.ReadOnly = true;
     this.telef2.Visible = false;
     //
     // telef3
     //
     this.telef3.DataPropertyName = "telef3";
     this.telef3.HeaderText = "Teléfono";
     this.telef3.Name = "telef3";
     this.telef3.ReadOnly = true;
     this.telef3.Visible = false;
     //
     // clientetipo
     //
     this.clientetipo.DataPropertyName = "clientetipo";
     this.clientetipo.HeaderText = "clientetipo";
     this.clientetipo.Name = "clientetipo";
     this.clientetipo.ReadOnly = true;
     this.clientetipo.Visible = false;
     //
     // contacto
     //
     this.contacto.DataPropertyName = "contacto";
     this.contacto.HeaderText = "Contacto";
     this.contacto.Name = "contacto";
     this.contacto.ReadOnly = true;
     this.contacto.Visible = false;
     //
     // diralter
     //
     this.diralter.DataPropertyName = "diranter";
     this.diralter.HeaderText = "diralter";
     this.diralter.Name = "diralter";
     this.diralter.ReadOnly = true;
     this.diralter.Visible = false;
     this.diralter.Width = 50;
     //
     // vendedorid
     //
     this.vendedorid.DataPropertyName = "vendedorid";
     this.vendedorid.HeaderText = "Vendedor";
     this.vendedorid.Name = "vendedorid";
     this.vendedorid.ReadOnly = true;
     this.vendedorid.Visible = false;
     //
     // clienteidold
     //
     this.clienteidold.DataPropertyName = "clienteidold";
     this.clienteidold.HeaderText = "Cliente Old";
     this.clienteidold.Name = "clienteidold";
     this.clienteidold.ReadOnly = true;
     this.clienteidold.Visible = false;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "Usuario";
     this.usuar.Name = "usuar";
     this.usuar.ReadOnly = true;
     this.usuar.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "Fecha Creación";
     this.fecre.Name = "fecre";
     this.fecre.ReadOnly = true;
     this.fecre.Visible = false;
     this.fecre.Width = 80;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "Fecha Actualización";
     this.feact.Name = "feact";
     this.feact.ReadOnly = true;
     this.feact.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.feact.Visible = false;
     this.feact.Width = 80;
     //
     // status
     //
     this.status.DataPropertyName = "status";
     this.status.HeaderText = "Status";
     this.status.Name = "status";
     this.status.ReadOnly = true;
     this.status.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.status.Visible = false;
     this.status.Width = 70;
     //
     // Frm_AyudaProveedor
     //
     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(931, 502);
     this.Controls.Add(this.GridExaminar);
     this.Controls.Add(this.GroupBox2);
     this.Controls.Add(this.lblregseleccionado);
     this.Controls.Add(this.GroupBox3);
     this.Controls.Add(this.GroupBox4);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     //this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Frm_AyudaProveedor";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Frm_AyudaProveedor";
     this.Activated += new System.EventHandler(this.Frm_AyudaProveedor_Activated);
     this.Load += new System.EventHandler(this.Frm_AyudaProveedor_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FRMAyudaProveedores_KeyDown);
     this.GroupBox3.ResumeLayout(false);
     this.GroupBox4.ResumeLayout(false);
     this.GroupBox4.PerformLayout();
     this.GroupBox2.ResumeLayout(false);
     this.GroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridExaminar)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 49
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmFolderAdmin));
     this.btnBatchSave = new System.Windows.Forms.Button();
     this.btnMove = new System.Windows.Forms.Button();
     this.pnlFolder = new System.Windows.Forms.Panel();
     this.grdFolder = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colFolderName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.splFolder = new System.Windows.Forms.Splitter();
     this.tvFolder = new System.Windows.Forms.TreeView();
     this.cMnuFolder = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mItmAdd = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmEdit = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmMove = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmDelete = new System.Windows.Forms.ToolStripMenuItem();
     this.tsspAddRootFolder = new System.Windows.Forms.ToolStripSeparator();
     this.mItmAddRootFolder = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.btnBatchDelete = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.ucTableSort = new DotNet.WinForm.Common.WinControls.UCTableSort();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.btnExport = new System.Windows.Forms.Button();
     this.pnlFolder.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdFolder)).BeginInit();
     this.cMnuFolder.SuspendLayout();
     this.SuspendLayout();
     //
     // btnBatchSave
     //
     this.btnBatchSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchSave.Location = new System.Drawing.Point(788, 533);
     this.btnBatchSave.Name = "btnBatchSave";
     this.btnBatchSave.Size = new System.Drawing.Size(75, 23);
     this.btnBatchSave.TabIndex = 9;
     this.btnBatchSave.Text = "保存(&S)";
     this.btnBatchSave.UseVisualStyleBackColor = true;
     this.btnBatchSave.Click += new System.EventHandler(this.btnBatchSave_Click);
     //
     // btnMove
     //
     this.btnMove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnMove.Location = new System.Drawing.Point(628, 533);
     this.btnMove.Name = "btnMove";
     this.btnMove.Size = new System.Drawing.Size(75, 23);
     this.btnMove.TabIndex = 7;
     this.btnMove.Text = "移动(&M)...";
     this.btnMove.UseVisualStyleBackColor = true;
     this.btnMove.Click += new System.EventHandler(this.btnMove_Click);
     //
     // pnlFolder
     //
     this.pnlFolder.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.pnlFolder.Controls.Add(this.grdFolder);
     this.pnlFolder.Controls.Add(this.splFolder);
     this.pnlFolder.Controls.Add(this.tvFolder);
     this.pnlFolder.Location = new System.Drawing.Point(8, 65);
     this.pnlFolder.Name = "pnlFolder";
     this.pnlFolder.Size = new System.Drawing.Size(935, 463);
     this.pnlFolder.TabIndex = 1;
     //
     // grdFolder
     //
     this.grdFolder.AllowDrop = true;
     this.grdFolder.AllowUserToAddRows = false;
     this.grdFolder.AllowUserToDeleteRows = false;
     this.grdFolder.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdFolder.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdFolder.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdFolder.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colFolderName,
     this.colDescription});
     this.grdFolder.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdFolder.Location = new System.Drawing.Point(263, 0);
     this.grdFolder.MultiSelect = false;
     this.grdFolder.Name = "grdFolder";
     this.grdFolder.RowTemplate.Height = 23;
     this.grdFolder.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdFolder.Size = new System.Drawing.Size(672, 463);
     this.grdFolder.TabIndex = 1;
     this.grdFolder.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdFolder_CellDoubleClick);
     this.grdFolder.Sorted += new System.EventHandler(this.grdFolder_Sorted);
     this.grdFolder.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.grdFolder_UserDeletingRow);
     this.grdFolder.Click += new System.EventHandler(this.grdFolder_Click);
     this.grdFolder.DragDrop += new System.Windows.Forms.DragEventHandler(this.grdFolder_DragDrop);
     this.grdFolder.DragOver += new System.Windows.Forms.DragEventHandler(this.grdFolder_DragOver);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Width = 50;
     //
     // colFolderName
     //
     this.colFolderName.DataPropertyName = "FolderName";
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
     this.colFolderName.DefaultCellStyle = dataGridViewCellStyle2;
     this.colFolderName.HeaderText = "名称";
     this.colFolderName.MaxInputLength = 100;
     this.colFolderName.Name = "colFolderName";
     this.colFolderName.ReadOnly = true;
     this.colFolderName.Width = 200;
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "DESCRIPTION";
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.colDescription.DefaultCellStyle = dataGridViewCellStyle3;
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.Width = 210;
     //
     // splFolder
     //
     this.splFolder.Location = new System.Drawing.Point(260, 0);
     this.splFolder.Name = "splFolder";
     this.splFolder.Size = new System.Drawing.Size(3, 463);
     this.splFolder.TabIndex = 8;
     this.splFolder.TabStop = false;
     //
     // tvFolder
     //
     this.tvFolder.AllowDrop = true;
     this.tvFolder.ContextMenuStrip = this.cMnuFolder;
     this.tvFolder.Dock = System.Windows.Forms.DockStyle.Left;
     this.tvFolder.ImageIndex = 0;
     this.tvFolder.ImageList = this.imageList;
     this.tvFolder.Location = new System.Drawing.Point(0, 0);
     this.tvFolder.Name = "tvFolder";
     this.tvFolder.SelectedImageIndex = 1;
     this.tvFolder.Size = new System.Drawing.Size(260, 463);
     this.tvFolder.TabIndex = 0;
     this.tvFolder.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.tvFolder_ItemDrag);
     this.tvFolder.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvFolder_AfterSelect);
     this.tvFolder.Click += new System.EventHandler(this.tvFolder_Click);
     this.tvFolder.DragDrop += new System.Windows.Forms.DragEventHandler(this.tvFolder_DragDrop);
     this.tvFolder.DragEnter += new System.Windows.Forms.DragEventHandler(this.tvFolder_DragEnter);
     this.tvFolder.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvFolder_MouseDown);
     //
     // cMnuFolder
     //
     this.cMnuFolder.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mItmAdd,
     this.mItmEdit,
     this.mItmMove,
     this.mItmDelete,
     this.tsspAddRootFolder,
     this.mItmAddRootFolder});
     this.cMnuFolder.Name = "cMnuModule";
     this.cMnuFolder.Size = new System.Drawing.Size(174, 120);
     this.cMnuFolder.Opened += new System.EventHandler(this.cMnuFolder_Opened);
     //
     // mItmAdd
     //
     this.mItmAdd.Name = "mItmAdd";
     this.mItmAdd.Size = new System.Drawing.Size(173, 22);
     this.mItmAdd.Text = "添加(&A)...";
     this.mItmAdd.Click += new System.EventHandler(this.mItmAdd_Click);
     //
     // mItmEdit
     //
     this.mItmEdit.Name = "mItmEdit";
     this.mItmEdit.Size = new System.Drawing.Size(173, 22);
     this.mItmEdit.Text = "编辑(&E)...";
     this.mItmEdit.Click += new System.EventHandler(this.mItmEdit_Click);
     //
     // mItmMove
     //
     this.mItmMove.Name = "mItmMove";
     this.mItmMove.Size = new System.Drawing.Size(173, 22);
     this.mItmMove.Text = "移动(&M)...";
     this.mItmMove.Click += new System.EventHandler(this.mItmMove_Click);
     //
     // mItmDelete
     //
     this.mItmDelete.Name = "mItmDelete";
     this.mItmDelete.Size = new System.Drawing.Size(173, 22);
     this.mItmDelete.Text = "删除(&D)";
     this.mItmDelete.Click += new System.EventHandler(this.mItmDelete_Click);
     //
     // tsspAddRootFolder
     //
     this.tsspAddRootFolder.Name = "tsspAddRootFolder";
     this.tsspAddRootFolder.Size = new System.Drawing.Size(170, 6);
     //
     // mItmAddRootFolder
     //
     this.mItmAddRootFolder.Name = "mItmAddRootFolder";
     this.mItmAddRootFolder.Size = new System.Drawing.Size(173, 22);
     this.mItmAddRootFolder.Text = "添加根文件夹(&A)...";
     this.mItmAddRootFolder.Click += new System.EventHandler(this.mItmAddFolder_Click);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     this.imageList.Images.SetKeyName(2, "");
     this.imageList.Images.SetKeyName(3, "");
     this.imageList.Images.SetKeyName(4, "");
     this.imageList.Images.SetKeyName(5, "");
     this.imageList.Images.SetKeyName(6, "");
     this.imageList.Images.SetKeyName(7, "");
     this.imageList.Images.SetKeyName(8, "");
     this.imageList.Images.SetKeyName(9, "");
     this.imageList.Images.SetKeyName(10, "");
     this.imageList.Images.SetKeyName(11, "");
     this.imageList.Images.SetKeyName(12, "");
     this.imageList.Images.SetKeyName(13, "");
     this.imageList.Images.SetKeyName(14, "");
     this.imageList.Images.SetKeyName(15, "icon_messenger1.gif");
     this.imageList.Images.SetKeyName(16, "icon_messenger0.gif");
     this.imageList.Images.SetKeyName(17, "icon_messenger2.gif");
     this.imageList.Images.SetKeyName(18, "icon_messenger3.gif");
     this.imageList.Images.SetKeyName(19, "icon_messenger4.gif");
     this.imageList.Images.SetKeyName(20, "icon_messenger5.gif");
     this.imageList.Images.SetKeyName(21, "icon_messenger6.gif");
     //
     // btnBatchDelete
     //
     this.btnBatchDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchDelete.Location = new System.Drawing.Point(708, 533);
     this.btnBatchDelete.Name = "btnBatchDelete";
     this.btnBatchDelete.Size = new System.Drawing.Size(75, 23);
     this.btnBatchDelete.TabIndex = 8;
     this.btnBatchDelete.Text = "删除(&D)";
     this.btnBatchDelete.UseVisualStyleBackColor = true;
     this.btnBatchDelete.Click += new System.EventHandler(this.btnBatchDelete_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEdit.Location = new System.Drawing.Point(548, 533);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(75, 23);
     this.btnEdit.TabIndex = 6;
     this.btnEdit.Text = "编辑(&E)...";
     this.btnEdit.UseVisualStyleBackColor = true;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(868, 533);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 9;
     this.btnClose.Text = "关闭";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Location = new System.Drawing.Point(468, 533);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 5;
     this.btnAdd.Text = "添加(&A)...";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // ucTableSort
     //
     this.ucTableSort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucTableSort.Location = new System.Drawing.Point(174, 534);
     this.ucTableSort.Margin = new System.Windows.Forms.Padding(0);
     this.ucTableSort.Name = "ucTableSort";
     this.ucTableSort.OEntityId = null;
     this.ucTableSort.Padding = new System.Windows.Forms.Padding(1);
     this.ucTableSort.SetBottomEnabled = false;
     this.ucTableSort.SetDownEnabled = false;
     this.ucTableSort.SetTopEnabled = false;
     this.ucTableSort.SetUpEnabled = false;
     this.ucTableSort.Size = new System.Drawing.Size(99, 24);
     this.ucTableSort.TabIndex = 2;
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Location = new System.Drawing.Point(90, 534);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(78, 23);
     this.btnInvertSelect.TabIndex = 4;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Location = new System.Drawing.Point(7, 534);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(78, 23);
     this.btnSelectAll.TabIndex = 3;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Location = new System.Drawing.Point(829, 20);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(111, 23);
     this.btnExport.TabIndex = 12;
     this.btnExport.Text = "导出E&xcel...";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // FrmFolderAdmin
     //
     this.AllowDrop = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::DotNet.WinForm.Files.Properties.Resources.Head;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(951, 560);
     this.Controls.Add(this.btnInvertSelect);
     this.Controls.Add(this.btnSelectAll);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.ucTableSort);
     this.Controls.Add(this.pnlFolder);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnBatchSave);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnBatchDelete);
     this.Controls.Add(this.btnMove);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.MinimumSize = new System.Drawing.Size(375, 288);
     this.Name = "FrmFolderAdmin";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "文件夹管理";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmFolderAdmin_FormClosing);
     this.Load += new System.EventHandler(this.FrmFolderAdmin_Load);
     this.pnlFolder.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdFolder)).EndInit();
     this.cMnuFolder.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.Run = new System.Windows.Forms.Button();
     this.txtTableName = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.cbx_systemlist = new System.Windows.Forms.ComboBox();
     this.btnUnSelect = new System.Windows.Forms.Button();
     this.btnSelect = new System.Windows.Forms.Button();
     this.loadFields = new System.Windows.Forms.Button();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.FIELDNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridView2 = new System.Windows.Forms.DataGridView();
     this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.FIELDNAME1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnSelect2 = new System.Windows.Forms.Button();
     this.btnUnSelect2 = new System.Windows.Forms.Button();
     this.btnLoadFields2 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
     this.SuspendLayout();
     //
     // Run
     //
     this.Run.Location = new System.Drawing.Point(3, 58);
     this.Run.Name = "Run";
     this.Run.Size = new System.Drawing.Size(73, 52);
     this.Run.TabIndex = 3;
     this.Run.Text = "开始读取";
     this.Run.UseVisualStyleBackColor = true;
     this.Run.Click += new System.EventHandler(this.button1_Click);
     //
     // txtTableName
     //
     this.txtTableName.Location = new System.Drawing.Point(62, 27);
     this.txtTableName.Name = "txtTableName";
     this.txtTableName.Size = new System.Drawing.Size(160, 21);
     this.txtTableName.TabIndex = 2;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(3, 30);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(29, 12);
     this.label1.TabIndex = 4;
     this.label1.Text = "表名";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(3, 9);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(47, 12);
     this.label3.TabIndex = 17;
     this.label3.Text = "SAP系统";
     //
     // cbx_systemlist
     //
     this.cbx_systemlist.FormattingEnabled = true;
     this.cbx_systemlist.Location = new System.Drawing.Point(62, 3);
     this.cbx_systemlist.Name = "cbx_systemlist";
     this.cbx_systemlist.Size = new System.Drawing.Size(124, 20);
     this.cbx_systemlist.TabIndex = 1;
     this.cbx_systemlist.MouseClick += new System.Windows.Forms.MouseEventHandler(this.cbx_systemlist_MouseClick);
     //
     // btnUnSelect
     //
     this.btnUnSelect.Location = new System.Drawing.Point(132, 58);
     this.btnUnSelect.Name = "btnUnSelect";
     this.btnUnSelect.Size = new System.Drawing.Size(37, 23);
     this.btnUnSelect.TabIndex = 24;
     this.btnUnSelect.Text = "取消";
     this.btnUnSelect.UseVisualStyleBackColor = true;
     this.btnUnSelect.Click += new System.EventHandler(this.btnUnSelect_Click_1);
     //
     // btnSelect
     //
     this.btnSelect.Location = new System.Drawing.Point(82, 58);
     this.btnSelect.Name = "btnSelect";
     this.btnSelect.Size = new System.Drawing.Size(44, 23);
     this.btnSelect.TabIndex = 23;
     this.btnSelect.Text = "选中所选";
     this.btnSelect.UseVisualStyleBackColor = true;
     this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
     //
     // loadFields
     //
     this.loadFields.Location = new System.Drawing.Point(175, 58);
     this.loadFields.Name = "loadFields";
     this.loadFields.Size = new System.Drawing.Size(47, 23);
     this.loadFields.TabIndex = 25;
     this.loadFields.Text = "加载";
     this.loadFields.UseVisualStyleBackColor = true;
     this.loadFields.Click += new System.EventHandler(this.loadFields_Click_1);
     //
     // splitContainer1
     //
     this.splitContainer1.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.splitContainer1.Location = new System.Drawing.Point(0, 116);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.dataGridView1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.dataGridView2);
     this.splitContainer1.Size = new System.Drawing.Size(238, 560);
     this.splitContainer1.SplitterDistance = 278;
     this.splitContainer1.TabIndex = 26;
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewCheckBoxColumn2,
     this.FIELDNAME,
     this.dataGridViewTextBoxColumn5,
     this.dataGridViewTextBoxColumn6});
     this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView1.Location = new System.Drawing.Point(0, 0);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.RowHeadersWidth = 20;
     this.dataGridView1.RowTemplate.Height = 23;
     this.dataGridView1.Size = new System.Drawing.Size(238, 278);
     this.dataGridView1.TabIndex = 3;
     //
     // dataGridViewCheckBoxColumn2
     //
     this.dataGridViewCheckBoxColumn2.HeaderText = "";
     this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
     this.dataGridViewCheckBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewCheckBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.dataGridViewCheckBoxColumn2.Width = 20;
     //
     // FIELDNAME
     //
     this.FIELDNAME.HeaderText = "字段";
     this.FIELDNAME.Name = "FIELDNAME";
     this.FIELDNAME.Width = 60;
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.HeaderText = "描述";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.HeaderText = "检查表";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.Width = 60;
     //
     // dataGridView2
     //
     this.dataGridView2.AllowUserToAddRows = false;
     this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewCheckBoxColumn1,
     this.FIELDNAME1,
     this.dataGridViewTextBoxColumn2,
     this.dataGridViewTextBoxColumn3});
     this.dataGridView2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView2.Location = new System.Drawing.Point(0, 0);
     this.dataGridView2.Name = "dataGridView2";
     this.dataGridView2.RowHeadersWidth = 20;
     this.dataGridView2.RowTemplate.Height = 23;
     this.dataGridView2.Size = new System.Drawing.Size(238, 278);
     this.dataGridView2.TabIndex = 2;
     //
     // dataGridViewCheckBoxColumn1
     //
     this.dataGridViewCheckBoxColumn1.HeaderText = "";
     this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
     this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.dataGridViewCheckBoxColumn1.Width = 20;
     //
     // FIELDNAME1
     //
     this.FIELDNAME1.HeaderText = "字段";
     this.FIELDNAME1.Name = "FIELDNAME1";
     this.FIELDNAME1.Width = 60;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.HeaderText = "描述";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.HeaderText = "检查表";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.ReadOnly = true;
     this.dataGridViewTextBoxColumn3.Width = 60;
     //
     // btnSelect2
     //
     this.btnSelect2.Location = new System.Drawing.Point(82, 87);
     this.btnSelect2.Name = "btnSelect2";
     this.btnSelect2.Size = new System.Drawing.Size(44, 23);
     this.btnSelect2.TabIndex = 23;
     this.btnSelect2.Text = "选中所选";
     this.btnSelect2.UseVisualStyleBackColor = true;
     this.btnSelect2.Click += new System.EventHandler(this.btnSelect2_Click);
     //
     // btnUnSelect2
     //
     this.btnUnSelect2.Location = new System.Drawing.Point(132, 87);
     this.btnUnSelect2.Name = "btnUnSelect2";
     this.btnUnSelect2.Size = new System.Drawing.Size(37, 23);
     this.btnUnSelect2.TabIndex = 24;
     this.btnUnSelect2.Text = "取消";
     this.btnUnSelect2.UseVisualStyleBackColor = true;
     this.btnUnSelect2.Click += new System.EventHandler(this.btnUnSelect2_Click);
     //
     // btnLoadFields2
     //
     this.btnLoadFields2.Location = new System.Drawing.Point(175, 87);
     this.btnLoadFields2.Name = "btnLoadFields2";
     this.btnLoadFields2.Size = new System.Drawing.Size(47, 23);
     this.btnLoadFields2.TabIndex = 25;
     this.btnLoadFields2.Text = "加载";
     this.btnLoadFields2.UseVisualStyleBackColor = true;
     this.btnLoadFields2.Click += new System.EventHandler(this.btnLoadFields2_Click);
     //
     // GetTableMetaControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.btnLoadFields2);
     this.Controls.Add(this.btnUnSelect2);
     this.Controls.Add(this.loadFields);
     this.Controls.Add(this.btnSelect2);
     this.Controls.Add(this.btnUnSelect);
     this.Controls.Add(this.btnSelect);
     this.Controls.Add(this.cbx_systemlist);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtTableName);
     this.Controls.Add(this.Run);
     this.Name = "GetTableMetaControl";
     this.Size = new System.Drawing.Size(248, 679);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 51
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tpUser = new System.Windows.Forms.TabPage();
     this.grpRequestAnAccount = new System.Windows.Forms.GroupBox();
     this.ucSubCompany = new DotNet.WinForm.Common.WinControls.UCOrganizeSelect();
     this.lblSubCompany = new System.Windows.Forms.Label();
     this.txtCode = new System.Windows.Forms.TextBox();
     this.lblCode = new System.Windows.Forms.Label();
     this.txtMobile = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.ucWorkgroup = new DotNet.WinForm.Common.WinControls.UCOrganizeSelect();
     this.lblWorkgroup = new System.Windows.Forms.Label();
     this.ucDepartment = new DotNet.WinForm.Common.WinControls.UCOrganizeSelect();
     this.ucCompany = new DotNet.WinForm.Common.WinControls.UCOrganizeSelect();
     this.txtEmail = new System.Windows.Forms.TextBox();
     this.lblE_mail = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.txtDescription = new System.Windows.Forms.TextBox();
     this.lblDescription = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.lblUserNameReq = new System.Windows.Forms.Label();
     this.lblDepartment = new System.Windows.Forms.Label();
     this.lblCompanyName = new System.Windows.Forms.Label();
     this.cmbRole = new System.Windows.Forms.ComboBox();
     this.lblRole = new System.Windows.Forms.Label();
     this.txtRealName = new System.Windows.Forms.TextBox();
     this.chbEnabled = new System.Windows.Forms.CheckBox();
     this.txtUserName = new System.Windows.Forms.TextBox();
     this.lblRealName = new System.Windows.Forms.Label();
     this.lblUserName = new System.Windows.Forms.Label();
     this.tpUserOrganize = new System.Windows.Forms.TabPage();
     this.btnRemove = new System.Windows.Forms.Button();
     this.grdUserOrganize = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colCompanyName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDepartmentName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWorkgroupName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRoleName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnAddToOrganize = new System.Windows.Forms.Button();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.btnSetPassword = new System.Windows.Forms.Button();
     this.btnLikeAdd = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tpUser.SuspendLayout();
     this.grpRequestAnAccount.SuspendLayout();
     this.tpUserOrganize.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdUserOrganize)).BeginInit();
     this.SuspendLayout();
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(490, 463);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 4;
     this.btnCancel.Text = "取消";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.btnSave.Location = new System.Drawing.Point(363, 463);
     this.btnSave.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(124, 23);
     this.btnSave.TabIndex = 3;
     this.btnSave.Text = "更新用户(&R)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.Controls.Add(this.tpUser);
     this.tabControl1.Controls.Add(this.tpUserOrganize);
     this.tabControl1.Location = new System.Drawing.Point(8, 11);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(558, 446);
     this.tabControl1.TabIndex = 0;
     //
     // tpUser
     //
     this.tpUser.BackColor = System.Drawing.SystemColors.Control;
     this.tpUser.Controls.Add(this.grpRequestAnAccount);
     this.tpUser.Location = new System.Drawing.Point(4, 22);
     this.tpUser.Name = "tpUser";
     this.tpUser.Padding = new System.Windows.Forms.Padding(3);
     this.tpUser.Size = new System.Drawing.Size(550, 420);
     this.tpUser.TabIndex = 0;
     this.tpUser.Text = "用户信息";
     //
     // grpRequestAnAccount
     //
     this.grpRequestAnAccount.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.grpRequestAnAccount.Controls.Add(this.ucSubCompany);
     this.grpRequestAnAccount.Controls.Add(this.lblSubCompany);
     this.grpRequestAnAccount.Controls.Add(this.txtCode);
     this.grpRequestAnAccount.Controls.Add(this.lblCode);
     this.grpRequestAnAccount.Controls.Add(this.txtMobile);
     this.grpRequestAnAccount.Controls.Add(this.label2);
     this.grpRequestAnAccount.Controls.Add(this.ucWorkgroup);
     this.grpRequestAnAccount.Controls.Add(this.lblWorkgroup);
     this.grpRequestAnAccount.Controls.Add(this.ucDepartment);
     this.grpRequestAnAccount.Controls.Add(this.ucCompany);
     this.grpRequestAnAccount.Controls.Add(this.txtEmail);
     this.grpRequestAnAccount.Controls.Add(this.lblE_mail);
     this.grpRequestAnAccount.Controls.Add(this.label4);
     this.grpRequestAnAccount.Controls.Add(this.txtDescription);
     this.grpRequestAnAccount.Controls.Add(this.lblDescription);
     this.grpRequestAnAccount.Controls.Add(this.label1);
     this.grpRequestAnAccount.Controls.Add(this.lblUserNameReq);
     this.grpRequestAnAccount.Controls.Add(this.lblDepartment);
     this.grpRequestAnAccount.Controls.Add(this.lblCompanyName);
     this.grpRequestAnAccount.Controls.Add(this.cmbRole);
     this.grpRequestAnAccount.Controls.Add(this.lblRole);
     this.grpRequestAnAccount.Controls.Add(this.txtRealName);
     this.grpRequestAnAccount.Controls.Add(this.chbEnabled);
     this.grpRequestAnAccount.Controls.Add(this.txtUserName);
     this.grpRequestAnAccount.Controls.Add(this.lblRealName);
     this.grpRequestAnAccount.Controls.Add(this.lblUserName);
     this.grpRequestAnAccount.Location = new System.Drawing.Point(9, 9);
     this.grpRequestAnAccount.Name = "grpRequestAnAccount";
     this.grpRequestAnAccount.Size = new System.Drawing.Size(531, 400);
     this.grpRequestAnAccount.TabIndex = 0;
     this.grpRequestAnAccount.TabStop = false;
     this.grpRequestAnAccount.Text = "用户";
     //
     // ucSubCompany
     //
     this.ucSubCompany.AllowNull = true;
     this.ucSubCompany.AllowSelect = true;
     this.ucSubCompany.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ucSubCompany.AutoSize = true;
     this.ucSubCompany.CanEdit = false;
     this.ucSubCompany.CheckMove = false;
     this.ucSubCompany.Location = new System.Drawing.Point(116, 217);
     this.ucSubCompany.MultiSelect = false;
     this.ucSubCompany.Name = "ucSubCompany";
     this.ucSubCompany.OpenId = "";
     this.ucSubCompany.PermissionItemScopeCode = "";
     this.ucSubCompany.SelectedFullName = "";
     this.ucSubCompany.SelectedId = "";
     this.ucSubCompany.Size = new System.Drawing.Size(383, 23);
     this.ucSubCompany.TabIndex = 17;
     //
     // lblSubCompany
     //
     this.lblSubCompany.Location = new System.Drawing.Point(4, 221);
     this.lblSubCompany.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblSubCompany.Name = "lblSubCompany";
     this.lblSubCompany.Size = new System.Drawing.Size(106, 12);
     this.lblSubCompany.TabIndex = 16;
     this.lblSubCompany.Text = "所在分支机构:";
     this.lblSubCompany.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtCode
     //
     this.txtCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCode.Location = new System.Drawing.Point(116, 76);
     this.txtCode.MaxLength = 50;
     this.txtCode.Name = "txtCode";
     this.txtCode.Size = new System.Drawing.Size(384, 21);
     this.txtCode.TabIndex = 6;
     //
     // lblCode
     //
     this.lblCode.Location = new System.Drawing.Point(4, 78);
     this.lblCode.Name = "lblCode";
     this.lblCode.Size = new System.Drawing.Size(106, 12);
     this.lblCode.TabIndex = 5;
     this.lblCode.Text = "工号(编号):";
     this.lblCode.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtMobile
     //
     this.txtMobile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMobile.Location = new System.Drawing.Point(116, 108);
     this.txtMobile.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.txtMobile.MaxLength = 50;
     this.txtMobile.Name = "txtMobile";
     this.txtMobile.Size = new System.Drawing.Size(383, 21);
     this.txtMobile.TabIndex = 8;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(4, 111);
     this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(106, 12);
     this.label2.TabIndex = 7;
     this.label2.Text = "手机(&M):";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // ucWorkgroup
     //
     this.ucWorkgroup.AllowNull = true;
     this.ucWorkgroup.AllowSelect = true;
     this.ucWorkgroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ucWorkgroup.AutoSize = true;
     this.ucWorkgroup.CanEdit = false;
     this.ucWorkgroup.CheckMove = false;
     this.ucWorkgroup.Location = new System.Drawing.Point(116, 275);
     this.ucWorkgroup.MultiSelect = false;
     this.ucWorkgroup.Name = "ucWorkgroup";
     this.ucWorkgroup.OpenId = "";
     this.ucWorkgroup.PermissionItemScopeCode = "";
     this.ucWorkgroup.SelectedFullName = "";
     this.ucWorkgroup.SelectedId = "";
     this.ucWorkgroup.Size = new System.Drawing.Size(383, 23);
     this.ucWorkgroup.TabIndex = 21;
     //
     // lblWorkgroup
     //
     this.lblWorkgroup.Location = new System.Drawing.Point(4, 278);
     this.lblWorkgroup.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblWorkgroup.Name = "lblWorkgroup";
     this.lblWorkgroup.Size = new System.Drawing.Size(106, 12);
     this.lblWorkgroup.TabIndex = 20;
     this.lblWorkgroup.Text = "所在工作组:";
     this.lblWorkgroup.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // ucDepartment
     //
     this.ucDepartment.AllowNull = true;
     this.ucDepartment.AllowSelect = true;
     this.ucDepartment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ucDepartment.AutoSize = true;
     this.ucDepartment.CanEdit = false;
     this.ucDepartment.CheckMove = false;
     this.ucDepartment.Location = new System.Drawing.Point(116, 247);
     this.ucDepartment.MultiSelect = false;
     this.ucDepartment.Name = "ucDepartment";
     this.ucDepartment.OpenId = "";
     this.ucDepartment.PermissionItemScopeCode = "";
     this.ucDepartment.SelectedFullName = "";
     this.ucDepartment.SelectedId = "";
     this.ucDepartment.Size = new System.Drawing.Size(383, 23);
     this.ucDepartment.TabIndex = 19;
     //
     // ucCompany
     //
     this.ucCompany.AllowNull = true;
     this.ucCompany.AllowSelect = true;
     this.ucCompany.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ucCompany.AutoSize = true;
     this.ucCompany.CanEdit = false;
     this.ucCompany.CheckMove = false;
     this.ucCompany.Location = new System.Drawing.Point(116, 190);
     this.ucCompany.MultiSelect = false;
     this.ucCompany.Name = "ucCompany";
     this.ucCompany.OpenId = "";
     this.ucCompany.PermissionItemScopeCode = "";
     this.ucCompany.SelectedFullName = "";
     this.ucCompany.SelectedId = "";
     this.ucCompany.Size = new System.Drawing.Size(383, 23);
     this.ucCompany.TabIndex = 14;
     //
     // txtEmail
     //
     this.txtEmail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtEmail.Location = new System.Drawing.Point(116, 135);
     this.txtEmail.MaxLength = 100;
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(384, 21);
     this.txtEmail.TabIndex = 10;
     //
     // lblE_mail
     //
     this.lblE_mail.Location = new System.Drawing.Point(4, 138);
     this.lblE_mail.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblE_mail.Name = "lblE_mail";
     this.lblE_mail.Size = new System.Drawing.Size(106, 12);
     this.lblE_mail.TabIndex = 9;
     this.lblE_mail.Text = "E_mail(&E):";
     this.lblE_mail.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.Red;
     this.label4.Location = new System.Drawing.Point(509, 196);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(11, 12);
     this.label4.TabIndex = 15;
     this.label4.Text = "*";
     //
     // txtDescription
     //
     this.txtDescription.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.txtDescription.Location = new System.Drawing.Point(116, 332);
     this.txtDescription.Margin = new System.Windows.Forms.Padding(4);
     this.txtDescription.MaxLength = 200;
     this.txtDescription.Multiline = true;
     this.txtDescription.Name = "txtDescription";
     this.txtDescription.Size = new System.Drawing.Size(384, 57);
     this.txtDescription.TabIndex = 24;
     //
     // lblDescription
     //
     this.lblDescription.Location = new System.Drawing.Point(4, 332);
     this.lblDescription.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(106, 12);
     this.lblDescription.TabIndex = 23;
     this.lblDescription.Text = "描述(&D):";
     this.lblDescription.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.Red;
     this.label1.Location = new System.Drawing.Point(509, 51);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(11, 12);
     this.label1.TabIndex = 5;
     this.label1.Text = "*";
     //
     // lblUserNameReq
     //
     this.lblUserNameReq.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblUserNameReq.AutoSize = true;
     this.lblUserNameReq.ForeColor = System.Drawing.Color.Red;
     this.lblUserNameReq.Location = new System.Drawing.Point(509, 24);
     this.lblUserNameReq.Name = "lblUserNameReq";
     this.lblUserNameReq.Size = new System.Drawing.Size(11, 12);
     this.lblUserNameReq.TabIndex = 2;
     this.lblUserNameReq.Text = "*";
     //
     // lblDepartment
     //
     this.lblDepartment.Location = new System.Drawing.Point(4, 250);
     this.lblDepartment.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblDepartment.Name = "lblDepartment";
     this.lblDepartment.Size = new System.Drawing.Size(106, 12);
     this.lblDepartment.TabIndex = 18;
     this.lblDepartment.Text = "所在部门:";
     this.lblDepartment.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblCompanyName
     //
     this.lblCompanyName.Location = new System.Drawing.Point(4, 193);
     this.lblCompanyName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblCompanyName.Name = "lblCompanyName";
     this.lblCompanyName.Size = new System.Drawing.Size(106, 12);
     this.lblCompanyName.TabIndex = 13;
     this.lblCompanyName.Text = "所在单位:";
     this.lblCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmbRole
     //
     this.cmbRole.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbRole.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbRole.Location = new System.Drawing.Point(116, 163);
     this.cmbRole.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.cmbRole.Name = "cmbRole";
     this.cmbRole.Size = new System.Drawing.Size(384, 20);
     this.cmbRole.TabIndex = 12;
     //
     // lblRole
     //
     this.lblRole.Location = new System.Drawing.Point(4, 166);
     this.lblRole.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblRole.Name = "lblRole";
     this.lblRole.Size = new System.Drawing.Size(106, 12);
     this.lblRole.TabIndex = 11;
     this.lblRole.Text = "默认角色(&R):";
     this.lblRole.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtRealName
     //
     this.txtRealName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRealName.Location = new System.Drawing.Point(116, 47);
     this.txtRealName.MaxLength = 50;
     this.txtRealName.Name = "txtRealName";
     this.txtRealName.Size = new System.Drawing.Size(384, 21);
     this.txtRealName.TabIndex = 4;
     this.txtRealName.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.txtRealName_MouseDoubleClick);
     //
     // chbEnabled
     //
     this.chbEnabled.AutoSize = true;
     this.chbEnabled.Location = new System.Drawing.Point(116, 309);
     this.chbEnabled.Name = "chbEnabled";
     this.chbEnabled.Size = new System.Drawing.Size(48, 16);
     this.chbEnabled.TabIndex = 22;
     this.chbEnabled.Text = "有效";
     //
     // txtUserName
     //
     this.txtUserName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUserName.Location = new System.Drawing.Point(116, 19);
     this.txtUserName.MaxLength = 50;
     this.txtUserName.Name = "txtUserName";
     this.txtUserName.Size = new System.Drawing.Size(384, 21);
     this.txtUserName.TabIndex = 1;
     //
     // lblRealName
     //
     this.lblRealName.Location = new System.Drawing.Point(4, 50);
     this.lblRealName.Name = "lblRealName";
     this.lblRealName.Size = new System.Drawing.Size(106, 12);
     this.lblRealName.TabIndex = 3;
     this.lblRealName.Text = "姓名(&N):";
     this.lblRealName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblUserName
     //
     this.lblUserName.Location = new System.Drawing.Point(4, 22);
     this.lblUserName.Name = "lblUserName";
     this.lblUserName.Size = new System.Drawing.Size(106, 12);
     this.lblUserName.TabIndex = 0;
     this.lblUserName.Text = "用户名(&U):";
     this.lblUserName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tpUserOrganize
     //
     this.tpUserOrganize.BackColor = System.Drawing.SystemColors.Control;
     this.tpUserOrganize.Controls.Add(this.btnRemove);
     this.tpUserOrganize.Controls.Add(this.grdUserOrganize);
     this.tpUserOrganize.Controls.Add(this.btnAddToOrganize);
     this.tpUserOrganize.Controls.Add(this.btnInvertSelect);
     this.tpUserOrganize.Controls.Add(this.btnSelectAll);
     this.tpUserOrganize.Location = new System.Drawing.Point(4, 22);
     this.tpUserOrganize.Name = "tpUserOrganize";
     this.tpUserOrganize.Padding = new System.Windows.Forms.Padding(3);
     this.tpUserOrganize.Size = new System.Drawing.Size(550, 420);
     this.tpUserOrganize.TabIndex = 1;
     this.tpUserOrganize.Text = "兼任职务";
     //
     // btnRemove
     //
     this.btnRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRemove.Enabled = false;
     this.btnRemove.Location = new System.Drawing.Point(449, 393);
     this.btnRemove.Name = "btnRemove";
     this.btnRemove.Size = new System.Drawing.Size(95, 23);
     this.btnRemove.TabIndex = 11;
     this.btnRemove.Text = "移除(&R)";
     this.btnRemove.UseVisualStyleBackColor = true;
     this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
     //
     // grdUserOrganize
     //
     this.grdUserOrganize.AllowUserToAddRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.AliceBlue;
     this.grdUserOrganize.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.grdUserOrganize.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.grdUserOrganize.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdUserOrganize.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdUserOrganize.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdUserOrganize.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colCompanyName,
     this.colDepartmentName,
     this.colWorkgroupName,
     this.colRoleName});
     this.grdUserOrganize.Location = new System.Drawing.Point(6, 6);
     this.grdUserOrganize.MultiSelect = false;
     this.grdUserOrganize.Name = "grdUserOrganize";
     this.grdUserOrganize.RowTemplate.Height = 23;
     this.grdUserOrganize.Size = new System.Drawing.Size(538, 384);
     this.grdUserOrganize.TabIndex = 4;
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Width = 50;
     //
     // colCompanyName
     //
     this.colCompanyName.DataPropertyName = "CompanyName";
     this.colCompanyName.FillWeight = 90F;
     this.colCompanyName.HeaderText = "公司";
     this.colCompanyName.MaxInputLength = 50;
     this.colCompanyName.Name = "colCompanyName";
     this.colCompanyName.ReadOnly = true;
     this.colCompanyName.Width = 90;
     //
     // colDepartmentName
     //
     this.colDepartmentName.DataPropertyName = "DepartmentName";
     this.colDepartmentName.FillWeight = 200F;
     this.colDepartmentName.HeaderText = "部门";
     this.colDepartmentName.MaxInputLength = 50;
     this.colDepartmentName.Name = "colDepartmentName";
     this.colDepartmentName.ReadOnly = true;
     //
     // colWorkgroupName
     //
     this.colWorkgroupName.DataPropertyName = "WorkgroupName";
     this.colWorkgroupName.FillWeight = 90F;
     this.colWorkgroupName.HeaderText = "工作组";
     this.colWorkgroupName.MaxInputLength = 90;
     this.colWorkgroupName.Name = "colWorkgroupName";
     this.colWorkgroupName.ReadOnly = true;
     this.colWorkgroupName.Width = 90;
     //
     // colRoleName
     //
     this.colRoleName.DataPropertyName = "RoleName";
     this.colRoleName.FillWeight = 120F;
     this.colRoleName.HeaderText = "职务";
     this.colRoleName.MaxInputLength = 50;
     this.colRoleName.Name = "colRoleName";
     this.colRoleName.Width = 120;
     //
     // btnAddToOrganize
     //
     this.btnAddToOrganize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAddToOrganize.Location = new System.Drawing.Point(342, 394);
     this.btnAddToOrganize.Name = "btnAddToOrganize";
     this.btnAddToOrganize.Size = new System.Drawing.Size(101, 23);
     this.btnAddToOrganize.TabIndex = 10;
     this.btnAddToOrganize.Text = "添加兼任(&D)...";
     this.btnAddToOrganize.UseVisualStyleBackColor = true;
     this.btnAddToOrganize.Click += new System.EventHandler(this.btnAddToOrganize_Click);
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Enabled = false;
     this.btnInvertSelect.Location = new System.Drawing.Point(115, 393);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(105, 23);
     this.btnInvertSelect.TabIndex = 9;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Enabled = false;
     this.btnSelectAll.Location = new System.Drawing.Point(4, 393);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(105, 23);
     this.btnSelectAll.TabIndex = 8;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // btnSetPassword
     //
     this.btnSetPassword.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSetPassword.Enabled = false;
     this.btnSetPassword.Location = new System.Drawing.Point(8, 463);
     this.btnSetPassword.Name = "btnSetPassword";
     this.btnSetPassword.Size = new System.Drawing.Size(115, 23);
     this.btnSetPassword.TabIndex = 1;
     this.btnSetPassword.Text = "设置密码(&S)...";
     this.btnSetPassword.Click += new System.EventHandler(this.btnSetPassword_Click);
     //
     // btnLikeAdd
     //
     this.btnLikeAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnLikeAdd.Location = new System.Drawing.Point(128, 463);
     this.btnLikeAdd.Name = "btnLikeAdd";
     this.btnLikeAdd.Size = new System.Drawing.Size(113, 23);
     this.btnLikeAdd.TabIndex = 2;
     this.btnLikeAdd.Text = "类似添加(&A)";
     this.btnLikeAdd.UseVisualStyleBackColor = true;
     this.btnLikeAdd.Click += new System.EventHandler(this.btnLikeAdd_Click);
     //
     // FrmAccountEdit
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(573, 490);
     this.Controls.Add(this.btnLikeAdd);
     this.Controls.Add(this.btnSetPassword);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabControl1);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.HelpButton = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmAccountEdit";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "编辑用户";
     this.tabControl1.ResumeLayout(false);
     this.tpUser.ResumeLayout(false);
     this.grpRequestAnAccount.ResumeLayout(false);
     this.grpRequestAnAccount.PerformLayout();
     this.tpUserOrganize.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdUserOrganize)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 52
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.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Gabriola", 27.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(44, 36);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(147, 68);
     this.label1.TabIndex = 0;
     this.label1.Text = "FOODIES";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Gabriola", 18F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(299, 109);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(115, 45);
     this.label2.TabIndex = 1;
     this.label2.Text = "User Status";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.LinkColor = System.Drawing.Color.Black;
     this.linkLabel1.Location = new System.Drawing.Point(557, 57);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(35, 13);
     this.linkLabel1.TabIndex = 3;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "Home";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // dataGridView1
     //
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1});
     this.dataGridView1.Location = new System.Drawing.Point(106, 203);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(270, 150);
     this.dataGridView1.TabIndex = 2;
     this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "Ispaid";
     this.Column1.Name = "Column1";
     //
     // Status
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(629, 394);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Name = "Status";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Status";
     this.Load += new System.EventHandler(this.Status_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }