From 2b500ce3036b24cca351774bc0e2da161dd6e9cf Mon Sep 17 00:00:00 2001 From: chi Date: Thu, 2 Jun 2022 09:34:43 +0900 Subject: [PATCH] .. --- JobReportMailService/fJobReportDay.cs | 3 +- Project/Properties/AssemblyInfo.cs | 4 +- Project/_Common/fAddNewUser.cs | 362 +++++----- Project/_Common/fUserList.Designer.cs | 988 +++++++++++++------------- 4 files changed, 679 insertions(+), 678 deletions(-) diff --git a/JobReportMailService/fJobReportDay.cs b/JobReportMailService/fJobReportDay.cs index a7a7279..6323618 100644 --- a/JobReportMailService/fJobReportDay.cs +++ b/JobReportMailService/fJobReportDay.cs @@ -151,7 +151,8 @@ namespace JobReportMailService var vGcode = gcodedata; if (string.IsNullOrEmpty(vGcode)) continue; - //if (vGcode.Contains("K5") == false) continue; + if (vGcode.Contains("K5") == false) continue; + var MailJD = dtMailForm.Where(t => t.gcode == vGcode & t.cate == "JD").FirstOrDefault(); if (MailJD == null) diff --git a/Project/Properties/AssemblyInfo.cs b/Project/Properties/AssemblyInfo.cs index b669793..6e502ea 100644 --- a/Project/Properties/AssemblyInfo.cs +++ b/Project/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로 // 지정되도록 할 수 있습니다. // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("22.05.30.1600")] -[assembly: AssemblyFileVersion("22.05.30.1600")] +[assembly: AssemblyVersion("22.06.02.0930")] +[assembly: AssemblyFileVersion("22.06.02.0930")] diff --git a/Project/_Common/fAddNewUser.cs b/Project/_Common/fAddNewUser.cs index e2910d2..45ad0f8 100644 --- a/Project/_Common/fAddNewUser.cs +++ b/Project/_Common/fAddNewUser.cs @@ -9,209 +9,209 @@ using System.Windows.Forms; namespace Project._Common { - public partial class fAddNewUser : Form // FCOMMON.fBase - { - string p_dept = string.Empty; - string p_id = string.Empty; + public partial class fAddNewUser : Form // FCOMMON.fBase + { + string p_dept = string.Empty; + string p_id = string.Empty; - public fAddNewUser(string dept, string id) - { - InitializeComponent(); - p_dept = dept; - p_id = id; + public fAddNewUser(string dept, string id) + { + InitializeComponent(); + p_dept = dept; + p_id = id; - this.tbDept.Text = dept; - this.StartPosition = FormStartPosition.CenterScreen; - this.tbId.Text = id; + this.tbDept.Text = dept; + this.StartPosition = FormStartPosition.CenterScreen; + this.tbId.Text = id; - //자료를 불러와서 먼저 불러온다 - if (id.isEmpty() == false) - { - tbId.Enabled = false; - button1.Enabled = false; - textBox1.Enabled = false; + //자료를 불러와서 먼저 불러온다 + if (id.isEmpty() == false) + { + tbId.Enabled = false; + button1.Enabled = false; + textBox1.Enabled = false; - var db = new EEEntitiesMain(); - var db_user = db.Users.Where(t => t.id == id).FirstOrDefault(); - var db_guser = db.EETGW_GroupUser.Where(t => t.gcode == FCOMMON.info.Login.gcode && t.uid == id).FirstOrDefault(); - if (db_user != null) - { - tbNameK.Text = db_user.name; - tbNameE.Text = db_user.nameE; - tbDept.Text = db_user.dept; - tbEmail.Text = db_user.email; - tbTel.Text = db_user.tel; - tbHp.Text = db_user.hp; - tbDateIn.Text = db_user.indate; - tbDateO.Text = db_user.outdate; - tbGrade.Text = db_user.grade; - tbMemo.Text = db_user.memo; - } - if (db_guser != null) - { - tbProcess.Text = db_guser.Process; - tbState.Text = db_guser.state; - //this.chkJobReport.Checked = (db_guser.useJobReport == null ? false : (bool)db_guser.useJobReport); - this.chkUserSt.Checked = (db_guser.useUserState == null ? false : (bool)db_guser.useUserState); - } - this.Text = "사용자 정보 변경"; - } - else this.Text = "사용자 정보 추가"; + var db = new EEEntitiesMain(); + var db_user = db.Users.Where(t => t.id == id).FirstOrDefault(); + var db_guser = db.EETGW_GroupUser.Where(t => t.gcode == FCOMMON.info.Login.gcode && t.uid == id).FirstOrDefault(); + if (db_user != null) + { + tbNameK.Text = db_user.name; + tbNameE.Text = db_user.nameE; + tbDept.Text = db_user.dept; + tbEmail.Text = db_user.email; + tbTel.Text = db_user.tel; + tbHp.Text = db_user.hp; + tbDateIn.Text = db_user.indate; + tbDateO.Text = db_user.outdate; + tbGrade.Text = db_user.grade; + tbMemo.Text = db_user.memo; + } + if (db_guser != null) + { + tbProcess.Text = db_guser.Process; + tbState.Text = db_guser.state; + //this.chkJobReport.Checked = (db_guser.useJobReport == null ? false : (bool)db_guser.useJobReport); + this.chkUserSt.Checked = (db_guser.useJobReport == null ? false : (bool)db_guser.useJobReport); + } + this.Text = "사용자 정보 변경"; + } + else this.Text = "사용자 정보 추가"; - } + } - private void fUserInfo_Load(object sender, EventArgs e) - { + private void fUserInfo_Load(object sender, EventArgs e) + { - } - private void button1_Click(object sender, EventArgs e) - { - //입력한 id확인해서 잇으면 해당 자료를 표시해준다. - var id = this.tbId.Text.Trim(); - if (id.isEmpty()) - { - FCOMMON.Util.MsgE("id를 입력하세요"); - this.tbId.SelectAll(); - this.tbId.Focus(); - return; - } + } + private void button1_Click(object sender, EventArgs e) + { + //입력한 id확인해서 잇으면 해당 자료를 표시해준다. + var id = this.tbId.Text.Trim(); + if (id.isEmpty()) + { + FCOMMON.Util.MsgE("id를 입력하세요"); + this.tbId.SelectAll(); + this.tbId.Focus(); + return; + } - var db = new EEEntitiesMain(); - var dr_user = db.Users.Where(t => t.id == id).FirstOrDefault(); - if (dr_user == null) - { - FCOMMON.Util.MsgE("등록된 자료가 없습니다"); - tbNameK.Focus(); - } - else - { - tbNameK.Text = dr_user.name; - tbNameE.Text = dr_user.nameE; - if (tbDept.Text.isEmpty()) tbDept.Text = dr_user.dept; - tbEmail.Text = dr_user.email; - tbTel.Text = dr_user.tel; - tbHp.Text = dr_user.hp; - tbDateIn.Text = dr_user.indate; - tbDateO.Text = dr_user.outdate; - tbGrade.Text = dr_user.grade; - tbMemo.Text = dr_user.memo; - tbProcess.Text = string.Empty; + var db = new EEEntitiesMain(); + var dr_user = db.Users.Where(t => t.id == id).FirstOrDefault(); + if (dr_user == null) + { + FCOMMON.Util.MsgE("등록된 자료가 없습니다"); + tbNameK.Focus(); + } + else + { + tbNameK.Text = dr_user.name; + tbNameE.Text = dr_user.nameE; + if (tbDept.Text.isEmpty()) tbDept.Text = dr_user.dept; + tbEmail.Text = dr_user.email; + tbTel.Text = dr_user.tel; + tbHp.Text = dr_user.hp; + tbDateIn.Text = dr_user.indate; + tbDateO.Text = dr_user.outdate; + tbGrade.Text = dr_user.grade; + tbMemo.Text = dr_user.memo; + tbProcess.Text = string.Empty; - //부서가잇다면 해당 부서에서 해당 사용자의 공정을 찾는다 - if (tbDept.Text.isEmpty() == false) - { - var drGrp = db.vGroupUser.Where(t => t.id == id).FirstOrDefault(); - if (drGrp != null) - { - tbProcess.Text = drGrp.processs; - } - } - } - } + //부서가잇다면 해당 부서에서 해당 사용자의 공정을 찾는다 + if (tbDept.Text.isEmpty() == false) + { + var drGrp = db.vGroupUser.Where(t => t.id == id).FirstOrDefault(); + if (drGrp != null) + { + tbProcess.Text = drGrp.processs; + } + } + } + } - private void button2_Click(object sender, EventArgs e) - { - this.Validate(); - var db = new EEEntitiesMain(); + private void button2_Click(object sender, EventArgs e) + { + this.Validate(); + var db = new EEEntitiesMain(); - //해당 그룹에 데이터를 추가한다. - //var drDept = db.UserGroup.Where(t => t.dept == tbDept.Text).FirstOrDefault(); - //if (drDept == null) - //{ - // FCOMMON.Util.MsgE("해당 부서정보가 존재하지 않습니다\n\n부서를 신규로 추가할 수는 없습니다\n관리자에 문의하세요"); - // return; - //} + //해당 그룹에 데이터를 추가한다. + //var drDept = db.UserGroup.Where(t => t.dept == tbDept.Text).FirstOrDefault(); + //if (drDept == null) + //{ + // FCOMMON.Util.MsgE("해당 부서정보가 존재하지 않습니다\n\n부서를 신규로 추가할 수는 없습니다\n관리자에 문의하세요"); + // return; + //} - //해당 그룹에 해당 사용자가 존재하는지 확이한다. - var gcode = FCOMMON.info.Login.gcode; - var uid = (p_id.isEmpty() ? tbId.Text.Trim() : p_id); - var drGuser = db.EETGW_GroupUser.Where(t => t.gcode == gcode && t.uid == uid).FirstOrDefault(); - if (drGuser != null) - { - drGuser.Process = this.tbProcess.Text.Trim(); - drGuser.state = this.tbState.Text.Trim(); - drGuser.useUserState = chkUserSt.Checked; - //drGuser.useJobReport = chkJobReport.Checked; - } - else - { - //불러온경우 - if (tbId.Enabled == false) - { - FCOMMON.Util.MsgE("사용자 ID정보가 없어 진행할 수 없습니다"); - return; - } + //해당 그룹에 해당 사용자가 존재하는지 확이한다. + var gcode = FCOMMON.info.Login.gcode; + var uid = (p_id.isEmpty() ? tbId.Text.Trim() : p_id); + var drGuser = db.EETGW_GroupUser.Where(t => t.gcode == gcode && t.uid == uid).FirstOrDefault(); + if (drGuser != null) + { + drGuser.Process = this.tbProcess.Text.Trim(); + drGuser.state = this.tbState.Text.Trim(); + drGuser.useJobReport = chkUserSt.Checked; + //drGuser.useJobReport = chkJobReport.Checked; + } + else + { + //불러온경우 + if (tbId.Enabled == false) + { + FCOMMON.Util.MsgE("사용자 ID정보가 없어 진행할 수 없습니다"); + return; + } - drGuser = new EETGW_GroupUser(); - drGuser.wuid = FCOMMON.info.Login.no; - drGuser.wdate = DateTime.Now; - drGuser.gcode = gcode; - drGuser.level = 1; - drGuser.uid = this.tbId.Text.Trim(); - drGuser.state = this.tbState.Text.Trim(); - drGuser.Process = this.tbProcess.Text.Trim(); - //drGuser.useJobReport = this.chkJobReport.Checked; - drGuser.useUserState = this.chkUserSt.Checked; - db.EETGW_GroupUser.Add(drGuser); - } + drGuser = new EETGW_GroupUser(); + drGuser.wuid = FCOMMON.info.Login.no; + drGuser.wdate = DateTime.Now; + drGuser.gcode = gcode; + drGuser.level = 1; + drGuser.uid = this.tbId.Text.Trim(); + drGuser.state = this.tbState.Text.Trim(); + drGuser.Process = this.tbProcess.Text.Trim(); + //drGuser.useJobReport = this.chkJobReport.Checked; + drGuser.useJobReport = this.chkUserSt.Checked; + db.EETGW_GroupUser.Add(drGuser); + } - //사용자 목록에 없다면 추가한다 - var drUser = db.Users.SingleOrDefault(t => t.id == uid); - if (drUser == null) - { - drUser = new Users(); - drUser.wuid = FCOMMON.info.Login.no; - drUser.wdate = DateTime.Now; - drUser.gcode = gcode; - drUser.level = 1; - drUser.id = tbId.Text.Trim(); - drUser.password = "B6589FC6AB0DC82CF12099D1C2D40AB994E8410C"; //기본값0 + //사용자 목록에 없다면 추가한다 + var drUser = db.Users.SingleOrDefault(t => t.id == uid); + if (drUser == null) + { + drUser = new Users(); + drUser.wuid = FCOMMON.info.Login.no; + drUser.wdate = DateTime.Now; + drUser.gcode = gcode; + drUser.level = 1; + drUser.id = tbId.Text.Trim(); + drUser.password = "B6589FC6AB0DC82CF12099D1C2D40AB994E8410C"; //기본값0 - drUser.name = tbNameK.Text.Trim(); - drUser.nameE = tbNameE.Text.Trim(); - drUser.dept = this.tbDept.Text.Trim(); - drUser.email = tbEmail.Text; - drUser.tel = tbTel.Text; - drUser.hp = tbHp.Text; - drUser.indate = tbDateIn.Text; - drUser.outdate = tbDateO.Text; - drUser.memo = tbMemo.Text; - drUser.processs = tbProcess.Text; - db.Users.Add(drUser); - } + drUser.name = tbNameK.Text.Trim(); + drUser.nameE = tbNameE.Text.Trim(); + drUser.dept = this.tbDept.Text.Trim(); + drUser.email = tbEmail.Text; + drUser.tel = tbTel.Text; + drUser.hp = tbHp.Text; + drUser.indate = tbDateIn.Text; + drUser.outdate = tbDateO.Text; + drUser.memo = tbMemo.Text; + drUser.processs = tbProcess.Text; + db.Users.Add(drUser); + } - else - { - if (drUser.password.isEmpty()) drUser.password = "B6589FC6AB0DC82CF12099D1C2D40AB994E8410C"; - drUser.name = tbNameK.Text.Trim(); - drUser.nameE = tbNameE.Text.Trim(); - drUser.dept = this.tbDept.Text.Trim(); - drUser.email = tbEmail.Text; - drUser.tel = tbTel.Text; - drUser.hp = tbHp.Text; - drUser.indate = tbDateIn.Text; - drUser.outdate = tbDateO.Text; - drUser.memo = tbMemo.Text; - drUser.processs = tbProcess.Text; - - } + else + { + if (drUser.password.isEmpty()) drUser.password = "B6589FC6AB0DC82CF12099D1C2D40AB994E8410C"; + drUser.name = tbNameK.Text.Trim(); + drUser.nameE = tbNameE.Text.Trim(); + drUser.dept = this.tbDept.Text.Trim(); + drUser.email = tbEmail.Text; + drUser.tel = tbTel.Text; + drUser.hp = tbHp.Text; + drUser.indate = tbDateIn.Text; + drUser.outdate = tbDateO.Text; + drUser.memo = tbMemo.Text; + drUser.processs = tbProcess.Text; - db.SaveChanges(); - this.DialogResult = DialogResult.OK; + } - } + db.SaveChanges(); + this.DialogResult = DialogResult.OK; - private void chkUserSt_CheckedChanged(object sender, EventArgs e) - { - - } + } - private void chkJobReport_CheckedChanged(object sender, EventArgs e) - { - } - } + private void chkUserSt_CheckedChanged(object sender, EventArgs e) + { + + } + + private void chkJobReport_CheckedChanged(object sender, EventArgs e) + { + } + } } diff --git a/Project/_Common/fUserList.Designer.cs b/Project/_Common/fUserList.Designer.cs index c68443b..d3df508 100644 --- a/Project/_Common/fUserList.Designer.cs +++ b/Project/_Common/fUserList.Designer.cs @@ -28,78 +28,78 @@ /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fUserList)); - FarPoint.Win.Spread.DefaultFocusIndicatorRenderer defaultFocusIndicatorRenderer1 = new FarPoint.Win.Spread.DefaultFocusIndicatorRenderer(); - FarPoint.Win.Spread.DefaultScrollBarRenderer defaultScrollBarRenderer1 = new FarPoint.Win.Spread.DefaultScrollBarRenderer(); - FarPoint.Win.Spread.DefaultScrollBarRenderer defaultScrollBarRenderer2 = new FarPoint.Win.Spread.DefaultScrollBarRenderer(); - FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType1 = new FarPoint.Win.Spread.CellType.CheckBoxCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType2 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType3 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType4 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType5 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType6 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType7 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType8 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType9 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType10 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType11 = new FarPoint.Win.Spread.CellType.TextCellType(); - this.bn = new System.Windows.Forms.BindingNavigator(this.components); - this.bs = new System.Windows.Forms.BindingSource(this.components); - this.dsMSSQL = new Project.dsMSSQL(); - 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.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator(); - this.btAdd = new System.Windows.Forms.ToolStripButton(); - this.btEdit = new System.Windows.Forms.ToolStripButton(); - this.btDel = new System.Windows.Forms.ToolStripButton(); - this.btSave = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); - this.btDevel = new System.Windows.Forms.ToolStripDropDownButton(); - this.한글이름분리ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.cm1 = new System.Windows.Forms.ContextMenuStrip(this.components); - this.autoResizeColumnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator(); - this.iDChangeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.passwordChangeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); - this.mailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStrip1 = new System.Windows.Forms.ToolStrip(); - this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel(); - this.cmbdept = new System.Windows.Forms.ToolStripComboBox(); - this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel(); - this.tbProcess = new System.Windows.Forms.ToolStripTextBox(); - this.btRef = new System.Windows.Forms.ToolStripButton(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.fpSpread1 = new FarPoint.Win.Spread.FpSpread(); - this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView(); - this.ta = new Project.dsMSSQLTableAdapters.vGroupUserTableAdapter(); - ((System.ComponentModel.ISupportInitialize)(this.bn)).BeginInit(); - this.bn.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).BeginInit(); - this.cm1.SuspendLayout(); - this.toolStrip1.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit(); - this.SuspendLayout(); - // - // bn - // - this.bn.AddNewItem = null; - this.bn.BindingSource = this.bs; - this.bn.CountItem = this.bindingNavigatorCountItem; - this.bn.DeleteItem = null; - this.bn.Dock = System.Windows.Forms.DockStyle.Bottom; - this.bn.ImageScalingSize = new System.Drawing.Size(32, 32); - this.bn.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fUserList)); + FarPoint.Win.Spread.DefaultFocusIndicatorRenderer defaultFocusIndicatorRenderer1 = new FarPoint.Win.Spread.DefaultFocusIndicatorRenderer(); + FarPoint.Win.Spread.DefaultScrollBarRenderer defaultScrollBarRenderer1 = new FarPoint.Win.Spread.DefaultScrollBarRenderer(); + FarPoint.Win.Spread.DefaultScrollBarRenderer defaultScrollBarRenderer2 = new FarPoint.Win.Spread.DefaultScrollBarRenderer(); + FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType1 = new FarPoint.Win.Spread.CellType.CheckBoxCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType2 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType3 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType4 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType5 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType6 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType7 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType8 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType9 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType10 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType11 = new FarPoint.Win.Spread.CellType.TextCellType(); + this.bn = new System.Windows.Forms.BindingNavigator(this.components); + this.bs = new System.Windows.Forms.BindingSource(this.components); + this.dsMSSQL = new Project.dsMSSQL(); + 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.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.btAdd = new System.Windows.Forms.ToolStripButton(); + this.btEdit = new System.Windows.Forms.ToolStripButton(); + this.btDel = new System.Windows.Forms.ToolStripButton(); + this.btSave = new System.Windows.Forms.ToolStripButton(); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.btDevel = new System.Windows.Forms.ToolStripDropDownButton(); + this.한글이름분리ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.cm1 = new System.Windows.Forms.ContextMenuStrip(this.components); + this.autoResizeColumnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator(); + this.iDChangeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.passwordChangeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); + this.mailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStrip1 = new System.Windows.Forms.ToolStrip(); + this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel(); + this.cmbdept = new System.Windows.Forms.ToolStripComboBox(); + this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel(); + this.tbProcess = new System.Windows.Forms.ToolStripTextBox(); + this.btRef = new System.Windows.Forms.ToolStripButton(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.fpSpread1 = new FarPoint.Win.Spread.FpSpread(); + this.ta = new Project.dsMSSQLTableAdapters.vGroupUserTableAdapter(); + this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView(); + ((System.ComponentModel.ISupportInitialize)(this.bn)).BeginInit(); + this.bn.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).BeginInit(); + this.cm1.SuspendLayout(); + this.toolStrip1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit(); + this.SuspendLayout(); + // + // bn + // + this.bn.AddNewItem = null; + this.bn.BindingSource = this.bs; + this.bn.CountItem = this.bindingNavigatorCountItem; + this.bn.DeleteItem = null; + this.bn.Dock = System.Windows.Forms.DockStyle.Bottom; + this.bn.ImageScalingSize = new System.Drawing.Size(32, 32); + this.bn.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.bindingNavigatorMoveFirstItem, this.bindingNavigatorMovePreviousItem, this.bindingNavigatorSeparator, @@ -115,439 +115,439 @@ this.btSave, this.toolStripSeparator1, this.btDevel}); - this.bn.Location = new System.Drawing.Point(0, 774); - this.bn.MoveFirstItem = this.bindingNavigatorMoveFirstItem; - this.bn.MoveLastItem = this.bindingNavigatorMoveLastItem; - this.bn.MoveNextItem = this.bindingNavigatorMoveNextItem; - this.bn.MovePreviousItem = this.bindingNavigatorMovePreviousItem; - this.bn.Name = "bn"; - this.bn.PositionItem = this.bindingNavigatorPositionItem; - this.bn.Size = new System.Drawing.Size(1357, 39); - this.bn.TabIndex = 0; - this.bn.Text = "bindingNavigator1"; - // - // bs - // - this.bs.DataMember = "vGroupUser"; - this.bs.DataSource = this.dsMSSQL; - // - // dsMSSQL - // - this.dsMSSQL.DataSetName = "dsMSSQL"; - this.dsMSSQL.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; - // - // bindingNavigatorCountItem - // - this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem"; - this.bindingNavigatorCountItem.Size = new System.Drawing.Size(27, 36); - this.bindingNavigatorCountItem.Text = "/{0}"; - this.bindingNavigatorCountItem.ToolTipText = "전체 항목 수"; - // - // 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(36, 36); - this.bindingNavigatorMoveFirstItem.Text = "처음으로 이동"; - // - // 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(36, 36); - this.bindingNavigatorMovePreviousItem.Text = "이전으로 이동"; - // - // bindingNavigatorSeparator - // - this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator"; - this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 39); - // - // bindingNavigatorPositionItem - // - this.bindingNavigatorPositionItem.AccessibleName = "위치"; - this.bindingNavigatorPositionItem.AutoSize = false; - this.bindingNavigatorPositionItem.Font = new System.Drawing.Font("맑은 고딕", 9F); - this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem"; - this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23); - this.bindingNavigatorPositionItem.Text = "0"; - this.bindingNavigatorPositionItem.ToolTipText = "현재 위치"; - // - // bindingNavigatorSeparator1 - // - this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1"; - this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 39); - // - // 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(36, 36); - this.bindingNavigatorMoveNextItem.Text = "다음으로 이동"; - // - // 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(36, 36); - this.bindingNavigatorMoveLastItem.Text = "마지막으로 이동"; - // - // bindingNavigatorSeparator2 - // - this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2"; - this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 39); - // - // btAdd - // - this.btAdd.Image = ((System.Drawing.Image)(resources.GetObject("btAdd.Image"))); - this.btAdd.Name = "btAdd"; - this.btAdd.RightToLeftAutoMirrorImage = true; - this.btAdd.Size = new System.Drawing.Size(83, 36); - this.btAdd.Text = "추가(&A)"; - this.btAdd.Click += new System.EventHandler(this.bindingNavigatorAddNewItem_Click); - // - // btEdit - // - this.btEdit.Image = ((System.Drawing.Image)(resources.GetObject("btEdit.Image"))); - this.btEdit.ImageTransparentColor = System.Drawing.Color.Magenta; - this.btEdit.Name = "btEdit"; - this.btEdit.Size = new System.Drawing.Size(81, 36); - this.btEdit.Text = "편집(&E)"; - this.btEdit.Click += new System.EventHandler(this.toolStripButton2_Click); - // - // btDel - // - this.btDel.Image = ((System.Drawing.Image)(resources.GetObject("btDel.Image"))); - this.btDel.ImageTransparentColor = System.Drawing.Color.Magenta; - this.btDel.Name = "btDel"; - this.btDel.Size = new System.Drawing.Size(84, 36); - this.btDel.Text = "삭제(&D)"; - this.btDel.Click += new System.EventHandler(this.btDel_Click); - // - // btSave - // - this.btSave.Image = ((System.Drawing.Image)(resources.GetObject("btSave.Image"))); - this.btSave.ImageTransparentColor = System.Drawing.Color.Magenta; - this.btSave.Name = "btSave"; - this.btSave.Size = new System.Drawing.Size(82, 36); - this.btSave.Text = "저장(&S)"; - this.btSave.Visible = false; - this.btSave.Click += new System.EventHandler(this.toolStripButton1_Click); - // - // toolStripSeparator1 - // - this.toolStripSeparator1.Name = "toolStripSeparator1"; - this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39); - // - // btDevel - // - this.btDevel.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; - this.btDevel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.bn.Location = new System.Drawing.Point(0, 774); + this.bn.MoveFirstItem = this.bindingNavigatorMoveFirstItem; + this.bn.MoveLastItem = this.bindingNavigatorMoveLastItem; + this.bn.MoveNextItem = this.bindingNavigatorMoveNextItem; + this.bn.MovePreviousItem = this.bindingNavigatorMovePreviousItem; + this.bn.Name = "bn"; + this.bn.PositionItem = this.bindingNavigatorPositionItem; + this.bn.Size = new System.Drawing.Size(1357, 39); + this.bn.TabIndex = 0; + this.bn.Text = "bindingNavigator1"; + // + // bs + // + this.bs.DataMember = "vGroupUser"; + this.bs.DataSource = this.dsMSSQL; + // + // dsMSSQL + // + this.dsMSSQL.DataSetName = "dsMSSQL"; + this.dsMSSQL.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; + // + // bindingNavigatorCountItem + // + this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem"; + this.bindingNavigatorCountItem.Size = new System.Drawing.Size(27, 36); + this.bindingNavigatorCountItem.Text = "/{0}"; + this.bindingNavigatorCountItem.ToolTipText = "전체 항목 수"; + // + // 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(36, 36); + this.bindingNavigatorMoveFirstItem.Text = "처음으로 이동"; + // + // 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(36, 36); + this.bindingNavigatorMovePreviousItem.Text = "이전으로 이동"; + // + // bindingNavigatorSeparator + // + this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator"; + this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 39); + // + // bindingNavigatorPositionItem + // + this.bindingNavigatorPositionItem.AccessibleName = "위치"; + this.bindingNavigatorPositionItem.AutoSize = false; + this.bindingNavigatorPositionItem.Font = new System.Drawing.Font("맑은 고딕", 9F); + this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem"; + this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23); + this.bindingNavigatorPositionItem.Text = "0"; + this.bindingNavigatorPositionItem.ToolTipText = "현재 위치"; + // + // bindingNavigatorSeparator1 + // + this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1"; + this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 39); + // + // 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(36, 36); + this.bindingNavigatorMoveNextItem.Text = "다음으로 이동"; + // + // 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(36, 36); + this.bindingNavigatorMoveLastItem.Text = "마지막으로 이동"; + // + // bindingNavigatorSeparator2 + // + this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2"; + this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 39); + // + // btAdd + // + this.btAdd.Image = ((System.Drawing.Image)(resources.GetObject("btAdd.Image"))); + this.btAdd.Name = "btAdd"; + this.btAdd.RightToLeftAutoMirrorImage = true; + this.btAdd.Size = new System.Drawing.Size(83, 36); + this.btAdd.Text = "추가(&A)"; + this.btAdd.Click += new System.EventHandler(this.bindingNavigatorAddNewItem_Click); + // + // btEdit + // + this.btEdit.Image = ((System.Drawing.Image)(resources.GetObject("btEdit.Image"))); + this.btEdit.ImageTransparentColor = System.Drawing.Color.Magenta; + this.btEdit.Name = "btEdit"; + this.btEdit.Size = new System.Drawing.Size(81, 36); + this.btEdit.Text = "편집(&E)"; + this.btEdit.Click += new System.EventHandler(this.toolStripButton2_Click); + // + // btDel + // + this.btDel.Image = ((System.Drawing.Image)(resources.GetObject("btDel.Image"))); + this.btDel.ImageTransparentColor = System.Drawing.Color.Magenta; + this.btDel.Name = "btDel"; + this.btDel.Size = new System.Drawing.Size(84, 36); + this.btDel.Text = "삭제(&D)"; + this.btDel.Click += new System.EventHandler(this.btDel_Click); + // + // btSave + // + this.btSave.Image = ((System.Drawing.Image)(resources.GetObject("btSave.Image"))); + this.btSave.ImageTransparentColor = System.Drawing.Color.Magenta; + this.btSave.Name = "btSave"; + this.btSave.Size = new System.Drawing.Size(82, 36); + this.btSave.Text = "저장(&S)"; + this.btSave.Visible = false; + this.btSave.Click += new System.EventHandler(this.toolStripButton1_Click); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39); + // + // btDevel + // + this.btDevel.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; + this.btDevel.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.한글이름분리ToolStripMenuItem}); - this.btDevel.Image = ((System.Drawing.Image)(resources.GetObject("btDevel.Image"))); - this.btDevel.ImageTransparentColor = System.Drawing.Color.Magenta; - this.btDevel.Name = "btDevel"; - this.btDevel.Size = new System.Drawing.Size(104, 36); - this.btDevel.Text = "developer"; - // - // 한글이름분리ToolStripMenuItem - // - this.한글이름분리ToolStripMenuItem.Name = "한글이름분리ToolStripMenuItem"; - this.한글이름분리ToolStripMenuItem.Size = new System.Drawing.Size(146, 22); - this.한글이름분리ToolStripMenuItem.Text = "한글이름분리"; - this.한글이름분리ToolStripMenuItem.Click += new System.EventHandler(this.한글이름분리ToolStripMenuItem_Click); - // - // cm1 - // - this.cm1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.btDevel.Image = ((System.Drawing.Image)(resources.GetObject("btDevel.Image"))); + this.btDevel.ImageTransparentColor = System.Drawing.Color.Magenta; + this.btDevel.Name = "btDevel"; + this.btDevel.Size = new System.Drawing.Size(104, 36); + this.btDevel.Text = "developer"; + // + // 한글이름분리ToolStripMenuItem + // + this.한글이름분리ToolStripMenuItem.Name = "한글이름분리ToolStripMenuItem"; + this.한글이름분리ToolStripMenuItem.Size = new System.Drawing.Size(146, 22); + this.한글이름분리ToolStripMenuItem.Text = "한글이름분리"; + this.한글이름분리ToolStripMenuItem.Click += new System.EventHandler(this.한글이름분리ToolStripMenuItem_Click); + // + // cm1 + // + this.cm1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.autoResizeColumnToolStripMenuItem, this.toolStripMenuItem2, this.iDChangeToolStripMenuItem, this.passwordChangeToolStripMenuItem, this.toolStripMenuItem1, this.mailToolStripMenuItem}); - this.cm1.Name = "cm1"; - this.cm1.Size = new System.Drawing.Size(181, 104); - // - // autoResizeColumnToolStripMenuItem - // - this.autoResizeColumnToolStripMenuItem.Name = "autoResizeColumnToolStripMenuItem"; - this.autoResizeColumnToolStripMenuItem.Size = new System.Drawing.Size(180, 22); - this.autoResizeColumnToolStripMenuItem.Text = "AutoResize Column"; - this.autoResizeColumnToolStripMenuItem.Click += new System.EventHandler(this.autoResizeColumnToolStripMenuItem_Click); - // - // toolStripMenuItem2 - // - this.toolStripMenuItem2.Name = "toolStripMenuItem2"; - this.toolStripMenuItem2.Size = new System.Drawing.Size(177, 6); - // - // iDChangeToolStripMenuItem - // - this.iDChangeToolStripMenuItem.Name = "iDChangeToolStripMenuItem"; - this.iDChangeToolStripMenuItem.Size = new System.Drawing.Size(180, 22); - this.iDChangeToolStripMenuItem.Text = "ID Change"; - this.iDChangeToolStripMenuItem.Click += new System.EventHandler(this.iDChangeToolStripMenuItem_Click); - // - // passwordChangeToolStripMenuItem - // - this.passwordChangeToolStripMenuItem.Name = "passwordChangeToolStripMenuItem"; - this.passwordChangeToolStripMenuItem.Size = new System.Drawing.Size(180, 22); - this.passwordChangeToolStripMenuItem.Text = "Password Change"; - this.passwordChangeToolStripMenuItem.Click += new System.EventHandler(this.passwordChangeToolStripMenuItem_Click); - // - // toolStripMenuItem1 - // - this.toolStripMenuItem1.Name = "toolStripMenuItem1"; - this.toolStripMenuItem1.Size = new System.Drawing.Size(177, 6); - // - // mailToolStripMenuItem - // - this.mailToolStripMenuItem.Name = "mailToolStripMenuItem"; - this.mailToolStripMenuItem.Size = new System.Drawing.Size(180, 22); - this.mailToolStripMenuItem.Text = "Mail"; - this.mailToolStripMenuItem.Click += new System.EventHandler(this.mailToolStripMenuItem_Click); - // - // toolStrip1 - // - this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.cm1.Name = "cm1"; + this.cm1.Size = new System.Drawing.Size(181, 104); + // + // autoResizeColumnToolStripMenuItem + // + this.autoResizeColumnToolStripMenuItem.Name = "autoResizeColumnToolStripMenuItem"; + this.autoResizeColumnToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.autoResizeColumnToolStripMenuItem.Text = "AutoResize Column"; + this.autoResizeColumnToolStripMenuItem.Click += new System.EventHandler(this.autoResizeColumnToolStripMenuItem_Click); + // + // toolStripMenuItem2 + // + this.toolStripMenuItem2.Name = "toolStripMenuItem2"; + this.toolStripMenuItem2.Size = new System.Drawing.Size(177, 6); + // + // iDChangeToolStripMenuItem + // + this.iDChangeToolStripMenuItem.Name = "iDChangeToolStripMenuItem"; + this.iDChangeToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.iDChangeToolStripMenuItem.Text = "ID Change"; + this.iDChangeToolStripMenuItem.Click += new System.EventHandler(this.iDChangeToolStripMenuItem_Click); + // + // passwordChangeToolStripMenuItem + // + this.passwordChangeToolStripMenuItem.Name = "passwordChangeToolStripMenuItem"; + this.passwordChangeToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.passwordChangeToolStripMenuItem.Text = "Password Change"; + this.passwordChangeToolStripMenuItem.Click += new System.EventHandler(this.passwordChangeToolStripMenuItem_Click); + // + // toolStripMenuItem1 + // + this.toolStripMenuItem1.Name = "toolStripMenuItem1"; + this.toolStripMenuItem1.Size = new System.Drawing.Size(177, 6); + // + // mailToolStripMenuItem + // + this.mailToolStripMenuItem.Name = "mailToolStripMenuItem"; + this.mailToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.mailToolStripMenuItem.Text = "Mail"; + this.mailToolStripMenuItem.Click += new System.EventHandler(this.mailToolStripMenuItem_Click); + // + // toolStrip1 + // + this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripLabel1, this.cmbdept, this.toolStripLabel2, this.tbProcess, this.btRef}); - this.toolStrip1.Location = new System.Drawing.Point(0, 0); - this.toolStrip1.Name = "toolStrip1"; - this.toolStrip1.Size = new System.Drawing.Size(1357, 25); - this.toolStrip1.TabIndex = 2; - this.toolStrip1.Text = "toolStrip1"; - // - // toolStripLabel1 - // - this.toolStripLabel1.Name = "toolStripLabel1"; - this.toolStripLabel1.Size = new System.Drawing.Size(31, 22); - this.toolStripLabel1.Text = "소속"; - // - // cmbdept - // - this.cmbdept.Enabled = false; - this.cmbdept.Name = "cmbdept"; - this.cmbdept.Size = new System.Drawing.Size(400, 25); - // - // toolStripLabel2 - // - this.toolStripLabel2.Name = "toolStripLabel2"; - this.toolStripLabel2.Size = new System.Drawing.Size(31, 22); - this.toolStripLabel2.Text = "공정"; - // - // tbProcess - // - this.tbProcess.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.tbProcess.Font = new System.Drawing.Font("맑은 고딕", 9F); - this.tbProcess.Name = "tbProcess"; - this.tbProcess.Size = new System.Drawing.Size(100, 25); - this.tbProcess.Text = "%"; - this.tbProcess.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center; - // - // btRef - // - this.btRef.Image = ((System.Drawing.Image)(resources.GetObject("btRef.Image"))); - this.btRef.ImageTransparentColor = System.Drawing.Color.Magenta; - this.btRef.Name = "btRef"; - this.btRef.Size = new System.Drawing.Size(90, 22); - this.btRef.Text = "새로고침(&R)"; - this.btRef.Click += new System.EventHandler(this.btRef_Click); - // - // textBox1 - // - this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "ads_title", true)); - this.textBox1.Dock = System.Windows.Forms.DockStyle.Bottom; - this.textBox1.Location = new System.Drawing.Point(0, 753); - this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(1357, 21); - this.textBox1.TabIndex = 3; - // - // fpSpread1 - // - this.fpSpread1.AccessibleDescription = ""; - this.fpSpread1.AutoClipboard = false; - this.fpSpread1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.fpSpread1.Dock = System.Windows.Forms.DockStyle.Fill; - this.fpSpread1.EditModeReplace = true; - this.fpSpread1.EnableCrossSheetReference = false; - this.fpSpread1.FocusRenderer = defaultFocusIndicatorRenderer1; - this.fpSpread1.HorizontalScrollBar.Buttons = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton"); - this.fpSpread1.HorizontalScrollBar.Name = ""; - this.fpSpread1.HorizontalScrollBar.Renderer = defaultScrollBarRenderer1; - this.fpSpread1.Location = new System.Drawing.Point(0, 25); - this.fpSpread1.Name = "fpSpread1"; - this.fpSpread1.SelectionBlockOptions = ((FarPoint.Win.Spread.SelectionBlockOptions)((FarPoint.Win.Spread.SelectionBlockOptions.Rows | FarPoint.Win.Spread.SelectionBlockOptions.Sheet))); - this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] { + this.toolStrip1.Location = new System.Drawing.Point(0, 0); + this.toolStrip1.Name = "toolStrip1"; + this.toolStrip1.Size = new System.Drawing.Size(1357, 25); + this.toolStrip1.TabIndex = 2; + this.toolStrip1.Text = "toolStrip1"; + // + // toolStripLabel1 + // + this.toolStripLabel1.Name = "toolStripLabel1"; + this.toolStripLabel1.Size = new System.Drawing.Size(31, 22); + this.toolStripLabel1.Text = "소속"; + // + // cmbdept + // + this.cmbdept.Enabled = false; + this.cmbdept.Name = "cmbdept"; + this.cmbdept.Size = new System.Drawing.Size(400, 25); + // + // toolStripLabel2 + // + this.toolStripLabel2.Name = "toolStripLabel2"; + this.toolStripLabel2.Size = new System.Drawing.Size(31, 22); + this.toolStripLabel2.Text = "공정"; + // + // tbProcess + // + this.tbProcess.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.tbProcess.Font = new System.Drawing.Font("맑은 고딕", 9F); + this.tbProcess.Name = "tbProcess"; + this.tbProcess.Size = new System.Drawing.Size(100, 25); + this.tbProcess.Text = "%"; + this.tbProcess.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // btRef + // + this.btRef.Image = ((System.Drawing.Image)(resources.GetObject("btRef.Image"))); + this.btRef.ImageTransparentColor = System.Drawing.Color.Magenta; + this.btRef.Name = "btRef"; + this.btRef.Size = new System.Drawing.Size(90, 22); + this.btRef.Text = "새로고침(&R)"; + this.btRef.Click += new System.EventHandler(this.btRef_Click); + // + // textBox1 + // + this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "ads_title", true)); + this.textBox1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.textBox1.Location = new System.Drawing.Point(0, 753); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(1357, 21); + this.textBox1.TabIndex = 3; + // + // fpSpread1 + // + this.fpSpread1.AccessibleDescription = ""; + this.fpSpread1.AutoClipboard = false; + this.fpSpread1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.fpSpread1.Dock = System.Windows.Forms.DockStyle.Fill; + this.fpSpread1.EditModeReplace = true; + this.fpSpread1.EnableCrossSheetReference = false; + this.fpSpread1.FocusRenderer = defaultFocusIndicatorRenderer1; + this.fpSpread1.HorizontalScrollBar.Buttons = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton"); + this.fpSpread1.HorizontalScrollBar.Name = ""; + this.fpSpread1.HorizontalScrollBar.Renderer = defaultScrollBarRenderer1; + this.fpSpread1.Location = new System.Drawing.Point(0, 25); + this.fpSpread1.Name = "fpSpread1"; + this.fpSpread1.SelectionBlockOptions = ((FarPoint.Win.Spread.SelectionBlockOptions)((FarPoint.Win.Spread.SelectionBlockOptions.Rows | FarPoint.Win.Spread.SelectionBlockOptions.Sheet))); + this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] { this.fpSpread1_Sheet1}); - this.fpSpread1.Size = new System.Drawing.Size(1357, 728); - this.fpSpread1.Skin = FarPoint.Win.Spread.DefaultSpreadSkins.Classic; - this.fpSpread1.TabIndex = 5; - this.fpSpread1.VerticalScrollBar.Buttons = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton"); - this.fpSpread1.VerticalScrollBar.Name = ""; - this.fpSpread1.VerticalScrollBar.Renderer = defaultScrollBarRenderer2; - this.fpSpread1.VisualStyles = FarPoint.Win.VisualStyles.Off; - // - // 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 = 12; - this.fpSpread1_Sheet1.ActiveColumnIndex = -1; - this.fpSpread1_Sheet1.ActiveRowIndex = -1; - this.fpSpread1_Sheet1.AlternatingRows.Get(1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.fpSpread1_Sheet1.AutoGenerateColumns = false; - this.fpSpread1_Sheet1.ColumnFooter.DefaultStyle.BackColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.ColumnFooter.DefaultStyle.ForeColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.ColumnFooter.DefaultStyle.Parent = "HeaderDefault"; - this.fpSpread1_Sheet1.ColumnFooterSheetCornerStyle.BackColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.ColumnFooterSheetCornerStyle.ForeColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.ColumnFooterSheetCornerStyle.Parent = "RowHeaderDefault"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value = "인원\r\n포함"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Value = "ID"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Value = "상태"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 3).Value = "공정"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 4).Value = "성명"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 5).Value = "영문명"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).Value = "직책"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).Value = "이메일"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 8).Value = "휴대전화"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 9).Value = "입사일"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 10).Value = "퇴사일"; - this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 11).Value = "비고"; - this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.ForeColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent = "HeaderDefault"; - this.fpSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height = 33F; - this.fpSpread1_Sheet1.Columns.Get(0).CellType = checkBoxCellType1; - this.fpSpread1_Sheet1.Columns.Get(0).DataField = "useUserState"; - this.fpSpread1_Sheet1.Columns.Get(0).Label = "인원\r\n포함"; - this.fpSpread1_Sheet1.Columns.Get(0).Width = 45F; - this.fpSpread1_Sheet1.Columns.Get(1).CellType = textCellType1; - this.fpSpread1_Sheet1.Columns.Get(1).DataField = "id"; - this.fpSpread1_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(1).Label = "ID"; - this.fpSpread1_Sheet1.Columns.Get(1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(1).Width = 95F; - this.fpSpread1_Sheet1.Columns.Get(2).CellType = textCellType2; - this.fpSpread1_Sheet1.Columns.Get(2).DataField = "state"; - this.fpSpread1_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(2).Label = "상태"; - this.fpSpread1_Sheet1.Columns.Get(2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(2).Width = 56F; - this.fpSpread1_Sheet1.Columns.Get(3).CellType = textCellType3; - this.fpSpread1_Sheet1.Columns.Get(3).DataField = "processs"; - this.fpSpread1_Sheet1.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(3).Label = "공정"; - this.fpSpread1_Sheet1.Columns.Get(3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(3).Width = 151F; - this.fpSpread1_Sheet1.Columns.Get(4).CellType = textCellType4; - this.fpSpread1_Sheet1.Columns.Get(4).DataField = "name"; - this.fpSpread1_Sheet1.Columns.Get(4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(4).Label = "성명"; - this.fpSpread1_Sheet1.Columns.Get(4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(4).Width = 105F; - this.fpSpread1_Sheet1.Columns.Get(5).CellType = textCellType5; - this.fpSpread1_Sheet1.Columns.Get(5).DataField = "nameE"; - this.fpSpread1_Sheet1.Columns.Get(5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(5).Label = "영문명"; - this.fpSpread1_Sheet1.Columns.Get(5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(5).Width = 91F; - this.fpSpread1_Sheet1.Columns.Get(6).CellType = textCellType6; - this.fpSpread1_Sheet1.Columns.Get(6).DataField = "grade"; - this.fpSpread1_Sheet1.Columns.Get(6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(6).Label = "직책"; - this.fpSpread1_Sheet1.Columns.Get(6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(6).Width = 115F; - this.fpSpread1_Sheet1.Columns.Get(7).CellType = textCellType7; - this.fpSpread1_Sheet1.Columns.Get(7).DataField = "email"; - this.fpSpread1_Sheet1.Columns.Get(7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(7).Label = "이메일"; - this.fpSpread1_Sheet1.Columns.Get(7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(7).Width = 151F; - this.fpSpread1_Sheet1.Columns.Get(8).CellType = textCellType8; - this.fpSpread1_Sheet1.Columns.Get(8).DataField = "hp"; - this.fpSpread1_Sheet1.Columns.Get(8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(8).Label = "휴대전화"; - this.fpSpread1_Sheet1.Columns.Get(8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(8).Width = 111F; - this.fpSpread1_Sheet1.Columns.Get(9).CellType = textCellType9; - this.fpSpread1_Sheet1.Columns.Get(9).DataField = "indate"; - this.fpSpread1_Sheet1.Columns.Get(9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(9).Label = "입사일"; - this.fpSpread1_Sheet1.Columns.Get(9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(9).Width = 79F; - this.fpSpread1_Sheet1.Columns.Get(10).CellType = textCellType10; - this.fpSpread1_Sheet1.Columns.Get(10).DataField = "outdate"; - this.fpSpread1_Sheet1.Columns.Get(10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(10).Label = "퇴사일"; - this.fpSpread1_Sheet1.Columns.Get(10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(10).Width = 65F; - this.fpSpread1_Sheet1.Columns.Get(11).CellType = textCellType11; - this.fpSpread1_Sheet1.Columns.Get(11).DataField = "memo"; - this.fpSpread1_Sheet1.Columns.Get(11).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(11).Label = "비고"; - this.fpSpread1_Sheet1.Columns.Get(11).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(11).Width = 151F; - this.fpSpread1_Sheet1.DataAutoSizeColumns = false; - this.fpSpread1_Sheet1.DataSource = this.bs; - this.fpSpread1_Sheet1.FilterBar.DefaultStyle.BackColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.FilterBar.DefaultStyle.ForeColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.FilterBar.DefaultStyle.Parent = "FilterBarDefault"; - this.fpSpread1_Sheet1.FilterBarHeaderStyle.BackColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.FilterBarHeaderStyle.ForeColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.FilterBarHeaderStyle.Parent = "RowHeaderDefault"; - this.fpSpread1_Sheet1.Protect = false; - this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false; - this.fpSpread1_Sheet1.RowHeader.DefaultStyle.BackColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.RowHeader.DefaultStyle.ForeColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Parent = "RowHeaderDefault"; - this.fpSpread1_Sheet1.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Row; - this.fpSpread1_Sheet1.SheetCornerStyle.BackColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.SheetCornerStyle.ForeColor = System.Drawing.Color.Empty; - this.fpSpread1_Sheet1.SheetCornerStyle.Parent = "RowHeaderDefault"; - this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1; - // - // ta - // - this.ta.ClearBeforeFill = true; - // - // fUserList - // - this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1357, 813); - this.Controls.Add(this.fpSpread1); - this.Controls.Add(this.textBox1); - this.Controls.Add(this.toolStrip1); - this.Controls.Add(this.bn); - this.Name = "fUserList"; - this.Text = "그룹내 사용자 목록"; - this.Load += new System.EventHandler(this.@__Load); - ((System.ComponentModel.ISupportInitialize)(this.bn)).EndInit(); - this.bn.ResumeLayout(false); - this.bn.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).EndInit(); - this.cm1.ResumeLayout(false); - this.toolStrip1.ResumeLayout(false); - this.toolStrip1.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); + this.fpSpread1.Size = new System.Drawing.Size(1357, 728); + this.fpSpread1.Skin = FarPoint.Win.Spread.DefaultSpreadSkins.Classic; + this.fpSpread1.TabIndex = 5; + this.fpSpread1.VerticalScrollBar.Buttons = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton"); + this.fpSpread1.VerticalScrollBar.Name = ""; + this.fpSpread1.VerticalScrollBar.Renderer = defaultScrollBarRenderer2; + this.fpSpread1.VisualStyles = FarPoint.Win.VisualStyles.Off; + // + // 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 = 12; + this.fpSpread1_Sheet1.ActiveColumnIndex = -1; + this.fpSpread1_Sheet1.ActiveRowIndex = -1; + this.fpSpread1_Sheet1.AlternatingRows.Get(1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.fpSpread1_Sheet1.AutoGenerateColumns = false; + this.fpSpread1_Sheet1.ColumnFooter.DefaultStyle.BackColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.ColumnFooter.DefaultStyle.ForeColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.ColumnFooter.DefaultStyle.Parent = "HeaderDefault"; + this.fpSpread1_Sheet1.ColumnFooterSheetCornerStyle.BackColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.ColumnFooterSheetCornerStyle.ForeColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.ColumnFooterSheetCornerStyle.Parent = "RowHeaderDefault"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value = "업무일지"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Value = "ID"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Value = "상태"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 3).Value = "공정"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 4).Value = "성명"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 5).Value = "영문명"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).Value = "직책"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).Value = "이메일"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 8).Value = "휴대전화"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 9).Value = "입사일"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 10).Value = "퇴사일"; + this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 11).Value = "비고"; + this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.ForeColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent = "HeaderDefault"; + this.fpSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height = 33F; + this.fpSpread1_Sheet1.Columns.Get(0).CellType = checkBoxCellType1; + this.fpSpread1_Sheet1.Columns.Get(0).DataField = "useJobReport"; + this.fpSpread1_Sheet1.Columns.Get(0).Label = "업무일지"; + this.fpSpread1_Sheet1.Columns.Get(0).Width = 45F; + this.fpSpread1_Sheet1.Columns.Get(1).CellType = textCellType1; + this.fpSpread1_Sheet1.Columns.Get(1).DataField = "id"; + this.fpSpread1_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(1).Label = "ID"; + this.fpSpread1_Sheet1.Columns.Get(1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(1).Width = 95F; + this.fpSpread1_Sheet1.Columns.Get(2).CellType = textCellType2; + this.fpSpread1_Sheet1.Columns.Get(2).DataField = "state"; + this.fpSpread1_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(2).Label = "상태"; + this.fpSpread1_Sheet1.Columns.Get(2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(2).Width = 56F; + this.fpSpread1_Sheet1.Columns.Get(3).CellType = textCellType3; + this.fpSpread1_Sheet1.Columns.Get(3).DataField = "processs"; + this.fpSpread1_Sheet1.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(3).Label = "공정"; + this.fpSpread1_Sheet1.Columns.Get(3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(3).Width = 151F; + this.fpSpread1_Sheet1.Columns.Get(4).CellType = textCellType4; + this.fpSpread1_Sheet1.Columns.Get(4).DataField = "name"; + this.fpSpread1_Sheet1.Columns.Get(4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(4).Label = "성명"; + this.fpSpread1_Sheet1.Columns.Get(4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(4).Width = 105F; + this.fpSpread1_Sheet1.Columns.Get(5).CellType = textCellType5; + this.fpSpread1_Sheet1.Columns.Get(5).DataField = "nameE"; + this.fpSpread1_Sheet1.Columns.Get(5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(5).Label = "영문명"; + this.fpSpread1_Sheet1.Columns.Get(5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(5).Width = 91F; + this.fpSpread1_Sheet1.Columns.Get(6).CellType = textCellType6; + this.fpSpread1_Sheet1.Columns.Get(6).DataField = "grade"; + this.fpSpread1_Sheet1.Columns.Get(6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(6).Label = "직책"; + this.fpSpread1_Sheet1.Columns.Get(6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(6).Width = 115F; + this.fpSpread1_Sheet1.Columns.Get(7).CellType = textCellType7; + this.fpSpread1_Sheet1.Columns.Get(7).DataField = "email"; + this.fpSpread1_Sheet1.Columns.Get(7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(7).Label = "이메일"; + this.fpSpread1_Sheet1.Columns.Get(7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(7).Width = 151F; + this.fpSpread1_Sheet1.Columns.Get(8).CellType = textCellType8; + this.fpSpread1_Sheet1.Columns.Get(8).DataField = "hp"; + this.fpSpread1_Sheet1.Columns.Get(8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(8).Label = "휴대전화"; + this.fpSpread1_Sheet1.Columns.Get(8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(8).Width = 111F; + this.fpSpread1_Sheet1.Columns.Get(9).CellType = textCellType9; + this.fpSpread1_Sheet1.Columns.Get(9).DataField = "indate"; + this.fpSpread1_Sheet1.Columns.Get(9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(9).Label = "입사일"; + this.fpSpread1_Sheet1.Columns.Get(9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(9).Width = 79F; + this.fpSpread1_Sheet1.Columns.Get(10).CellType = textCellType10; + this.fpSpread1_Sheet1.Columns.Get(10).DataField = "outdate"; + this.fpSpread1_Sheet1.Columns.Get(10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(10).Label = "퇴사일"; + this.fpSpread1_Sheet1.Columns.Get(10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(10).Width = 65F; + this.fpSpread1_Sheet1.Columns.Get(11).CellType = textCellType11; + this.fpSpread1_Sheet1.Columns.Get(11).DataField = "memo"; + this.fpSpread1_Sheet1.Columns.Get(11).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(11).Label = "비고"; + this.fpSpread1_Sheet1.Columns.Get(11).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(11).Width = 151F; + this.fpSpread1_Sheet1.DataAutoSizeColumns = false; + this.fpSpread1_Sheet1.DataSource = this.bs; + this.fpSpread1_Sheet1.FilterBar.DefaultStyle.BackColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.FilterBar.DefaultStyle.ForeColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.FilterBar.DefaultStyle.Parent = "FilterBarDefault"; + this.fpSpread1_Sheet1.FilterBarHeaderStyle.BackColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.FilterBarHeaderStyle.ForeColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.FilterBarHeaderStyle.Parent = "RowHeaderDefault"; + this.fpSpread1_Sheet1.Protect = false; + this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false; + this.fpSpread1_Sheet1.RowHeader.DefaultStyle.BackColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.RowHeader.DefaultStyle.ForeColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Parent = "RowHeaderDefault"; + this.fpSpread1_Sheet1.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Row; + this.fpSpread1_Sheet1.SheetCornerStyle.BackColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.SheetCornerStyle.ForeColor = System.Drawing.Color.Empty; + this.fpSpread1_Sheet1.SheetCornerStyle.Parent = "RowHeaderDefault"; + this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1; + // + // fUserList + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1357, 813); + this.Controls.Add(this.fpSpread1); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.toolStrip1); + this.Controls.Add(this.bn); + this.Name = "fUserList"; + this.Text = "그룹내 사용자 목록"; + this.Load += new System.EventHandler(this.@__Load); + ((System.ComponentModel.ISupportInitialize)(this.bn)).EndInit(); + this.bn.ResumeLayout(false); + this.bn.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).EndInit(); + this.cm1.ResumeLayout(false); + this.toolStrip1.ResumeLayout(false); + this.toolStrip1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); } @@ -587,7 +587,7 @@ private dsMSSQLTableAdapters.vGroupUserTableAdapter ta; private System.Windows.Forms.ToolStripButton btEdit; private System.Windows.Forms.ToolStripButton btSave; - private FarPoint.Win.Spread.SheetView fpSpread1_Sheet1; private System.Windows.Forms.ToolStripButton btDel; - } + private FarPoint.Win.Spread.SheetView fpSpread1_Sheet1; + } } \ No newline at end of file