118 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Project.Dialog
 | |
| {
 | |
|     partial class fSelectDept
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Required designer variable.
 | |
|         /// </summary>
 | |
|         private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Clean up any resources being used.
 | |
|         /// </summary>
 | |
|         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
|         protected override void Dispose(bool disposing)
 | |
|         {
 | |
|             if (disposing && (components != null))
 | |
|             {
 | |
|                 components.Dispose();
 | |
|             }
 | |
|             base.Dispose(disposing);
 | |
|         }
 | |
| 
 | |
|         #region Windows Form Designer generated code
 | |
| 
 | |
|         /// <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();
 | |
|             FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType();
 | |
|             this.fpSpread1 = new FarPoint.Win.Spread.FpSpread();
 | |
|             this.dsMSSQL = new Project.dsMSSQL();
 | |
|             this.bs = new System.Windows.Forms.BindingSource(this.components);
 | |
|             this.ta = new Project.dsMSSQLTableAdapters.UserGroupTableAdapter();
 | |
|             this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).BeginInit();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // fpSpread1
 | |
|             // 
 | |
|             this.fpSpread1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.fpSpread1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.fpSpread1.Name = "fpSpread1";
 | |
|             this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
 | |
|             this.fpSpread1_Sheet1});
 | |
|             this.fpSpread1.Size = new System.Drawing.Size(495, 562);
 | |
|             this.fpSpread1.TabIndex = 5;
 | |
|             // 
 | |
|             // dsMSSQL
 | |
|             // 
 | |
|             this.dsMSSQL.DataSetName = "dsMSSQL";
 | |
|             this.dsMSSQL.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
 | |
|             // 
 | |
|             // bs
 | |
|             // 
 | |
|             this.bs.DataMember = "UserGroup";
 | |
|             this.bs.DataSource = this.dsMSSQL;
 | |
|             // 
 | |
|             // ta
 | |
|             // 
 | |
|             this.ta.ClearBeforeFill = true;
 | |
|             // 
 | |
|             // fpSpread1_Sheet1
 | |
|             // 
 | |
|             this.fpSpread1_Sheet1.Reset();
 | |
|             this.fpSpread1_Sheet1.SheetName = "Sheet1";
 | |
|             // Formulas and custom names must be loaded with R1C1 reference style
 | |
|             this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
 | |
|             this.fpSpread1_Sheet1.ColumnCount = 1;
 | |
|             this.fpSpread1_Sheet1.ActiveColumnIndex = -1;
 | |
|             this.fpSpread1_Sheet1.ActiveRowIndex = -1;
 | |
|             this.fpSpread1_Sheet1.AutoGenerateColumns = false;
 | |
|             this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value = "부서명";
 | |
|             this.fpSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height = 32F;
 | |
|             this.fpSpread1_Sheet1.Columns.Get(0).CellType = textCellType1;
 | |
|             this.fpSpread1_Sheet1.Columns.Get(0).DataField = "dept";
 | |
|             this.fpSpread1_Sheet1.Columns.Get(0).Label = "부서명";
 | |
|             this.fpSpread1_Sheet1.Columns.Get(0).Width = 413F;
 | |
|             this.fpSpread1_Sheet1.DataAutoSizeColumns = false;
 | |
|             this.fpSpread1_Sheet1.DataSource = this.bs;
 | |
|             this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
 | |
|             this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
 | |
|             // 
 | |
|             // fSelectDept
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(495, 562);
 | |
|             this.Controls.Add(this.fpSpread1);
 | |
|             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
 | |
|             this.MaximizeBox = false;
 | |
|             this.MinimizeBox = false;
 | |
|             this.Name = "fSelectDept";
 | |
|             this.Text = "부서목록";
 | |
|             this.Load += new System.EventHandler(this.fSelectDept_Load);
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).EndInit();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private FarPoint.Win.Spread.FpSpread fpSpread1;
 | |
|         private dsMSSQL dsMSSQL;
 | |
|         private System.Windows.Forms.BindingSource bs;
 | |
|         private dsMSSQLTableAdapters.UserGroupTableAdapter ta;
 | |
|         private FarPoint.Win.Spread.SheetView fpSpread1_Sheet1;
 | |
| 
 | |
|     }
 | |
| } | 
