181210 chi NR구매등록시 이미지 표시 및 추가 기능
NR구매목록에서 권한 없는 사람이 더블클릭으로 편집할 수 있는 버그 수정
This commit is contained in:
@@ -1,32 +1,34 @@
|
||||
181207 chi 업체정보화면 에 담당자 목록 추가
|
||||
업체대표 및 담당자 테이블 데이터 추가
|
||||
품목에 이미지 확인 사항 추가
|
||||
품목 검색창에서 이미지 확인 및 추가 가능
|
||||
181205 chi 메뉴한글과
|
||||
업체정보 업데이트 (양진원)
|
||||
업체정보 열너비 저장 가능
|
||||
181203 chi 구매 - 상태검색 기능 활성
|
||||
일반 - 시작화면 선택 기능
|
||||
프로그램설정 - 처음 실행 화면 설정가능
|
||||
구매목록 - 상태 검색 기능 사용 가능
|
||||
구매목록 - 데이터 복사시 추가정보 및 상태 초기화
|
||||
구매목록 - 본인외 및 SC자료 삭제 불가
|
||||
구매추가 - 본인 자료 만 편집 가능
|
||||
구매추가 - 입고예정일을 좌측 그룹으로 이동
|
||||
구매추가 - 입력자 못 고침
|
||||
구매추가 - 상태창 값이 맞지 않는 현상 수정
|
||||
구매추가 - 공정 자동 불러오도록 함
|
||||
구매추가 - 합계에 천단위 구분기호(콤마) 표시
|
||||
구매추가 - 화면 한글 화
|
||||
구매추가 - SC 값이 있으면 일반 사용자는 편집 불가
|
||||
구매추가 - 견적서 폴더 열기 기능 추가(공유폴더연결)
|
||||
|
||||
|
||||
181031 chi 구매 - 프로젝트 검색시 유사 검색 기능이 되도록 수정
|
||||
181030 chi 구매시 - 서플라이 검색 기능 추가됨, 날짜 입력 편하게 됨
|
||||
indate 가 자동 활성화되는 현상 수정
|
||||
181023 chi getAuth_Purchase, 추가
|
||||
181004 chi 장비목록 출력물이 나오지 않는 현상 제거 (resource path 오류)
|
||||
장비목록 내부검색기능 추가
|
||||
180917 chi
|
||||
181210 chi NR구매등록시 이미지 표시 및 추가 기능
|
||||
NR구매목록에서 권한 없는 사람이 더블클릭으로 편집할 수 있는 버그 수정
|
||||
181207 chi 업체정보화면 에 담당자 목록 추가
|
||||
업체대표 및 담당자 테이블 데이터 추가
|
||||
품목에 이미지 확인 사항 추가
|
||||
품목 검색창에서 이미지 확인 및 추가 가능
|
||||
181205 chi 메뉴한글과
|
||||
업체정보 업데이트 (양진원)
|
||||
업체정보 열너비 저장 가능
|
||||
181203 chi 구매 - 상태검색 기능 활성
|
||||
일반 - 시작화면 선택 기능
|
||||
프로그램설정 - 처음 실행 화면 설정가능
|
||||
구매목록 - 상태 검색 기능 사용 가능
|
||||
구매목록 - 데이터 복사시 추가정보 및 상태 초기화
|
||||
구매목록 - 본인외 및 SC자료 삭제 불가
|
||||
구매추가 - 본인 자료 만 편집 가능
|
||||
구매추가 - 입고예정일을 좌측 그룹으로 이동
|
||||
구매추가 - 입력자 못 고침
|
||||
구매추가 - 상태창 값이 맞지 않는 현상 수정
|
||||
구매추가 - 공정 자동 불러오도록 함
|
||||
구매추가 - 합계에 천단위 구분기호(콤마) 표시
|
||||
구매추가 - 화면 한글 화
|
||||
구매추가 - SC 값이 있으면 일반 사용자는 편집 불가
|
||||
구매추가 - 견적서 폴더 열기 기능 추가(공유폴더연결)
|
||||
|
||||
|
||||
181031 chi 구매 - 프로젝트 검색시 유사 검색 기능이 되도록 수정
|
||||
181030 chi 구매시 - 서플라이 검색 기능 추가됨, 날짜 입력 편하게 됨
|
||||
indate 가 자동 활성화되는 현상 수정
|
||||
181023 chi getAuth_Purchase, 추가
|
||||
181004 chi 장비목록 출력물이 나오지 않는 현상 제거 (resource path 오류)
|
||||
장비목록 내부검색기능 추가
|
||||
180917 chi
|
||||
180624 chi setting 의 경로를 applicationdata 적용 되도록 수정
|
||||
@@ -1,33 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace Project
|
||||
{
|
||||
|
||||
public class keyValuedataTable
|
||||
{
|
||||
System.Data.DataTable dt;
|
||||
public System.Data.DataTable DataTable
|
||||
{
|
||||
get
|
||||
{
|
||||
return dt;
|
||||
}
|
||||
}
|
||||
public keyValuedataTable()
|
||||
{
|
||||
dt = new System.Data.DataTable();
|
||||
dt.Columns.Add("key");
|
||||
dt.Columns.Add("value");
|
||||
}
|
||||
public void Add(string key, string value)
|
||||
{
|
||||
dt.Rows.Add(new string[] { key,value });
|
||||
dt.AcceptChanges();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace Project
|
||||
{
|
||||
|
||||
public class keyValuedataTable
|
||||
{
|
||||
System.Data.DataTable dt;
|
||||
public System.Data.DataTable DataTable
|
||||
{
|
||||
get
|
||||
{
|
||||
return dt;
|
||||
}
|
||||
}
|
||||
public keyValuedataTable()
|
||||
{
|
||||
dt = new System.Data.DataTable();
|
||||
dt.Columns.Add("key");
|
||||
dt.Columns.Add("value");
|
||||
}
|
||||
public void Add(string key, string value)
|
||||
{
|
||||
dt.Rows.Add(new string[] { key,value });
|
||||
dt.AcceptChanges();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
|
||||
// 지정되도록 할 수 있습니다.
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("18.12.07.1200")]
|
||||
[assembly: AssemblyFileVersion("18.12.07.1200")]
|
||||
[assembly: AssemblyVersion("18.12.10.1200")]
|
||||
[assembly: AssemblyFileVersion("18.12.10.1200")]
|
||||
|
||||
0
Project/Properties/licenses.licx
Normal file
0
Project/Properties/licenses.licx
Normal file
224
Project/_Common/fNewID.Designer.cs
generated
224
Project/_Common/fNewID.Designer.cs
generated
@@ -1,113 +1,113 @@
|
||||
namespace Project._Common
|
||||
{
|
||||
partial class fNewID
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
System.Windows.Forms.Label nameLabel;
|
||||
System.Windows.Forms.Label label1;
|
||||
this.tbIDO = new System.Windows.Forms.TextBox();
|
||||
this.tbIDN = new System.Windows.Forms.TextBox();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
nameLabel = new System.Windows.Forms.Label();
|
||||
label1 = new System.Windows.Forms.Label();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// nameLabel
|
||||
//
|
||||
nameLabel.AutoSize = true;
|
||||
nameLabel.Location = new System.Drawing.Point(60, 15);
|
||||
nameLabel.Name = "nameLabel";
|
||||
nameLabel.Size = new System.Drawing.Size(46, 12);
|
||||
nameLabel.TabIndex = 0;
|
||||
nameLabel.Text = "User ID";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
label1.AutoSize = true;
|
||||
label1.Location = new System.Drawing.Point(60, 41);
|
||||
label1.Name = "label1";
|
||||
label1.Size = new System.Drawing.Size(46, 12);
|
||||
label1.TabIndex = 2;
|
||||
label1.Text = "New ID";
|
||||
//
|
||||
// tbIDO
|
||||
//
|
||||
this.tbIDO.Location = new System.Drawing.Point(112, 12);
|
||||
this.tbIDO.Name = "tbIDO";
|
||||
this.tbIDO.ReadOnly = true;
|
||||
this.tbIDO.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbIDO.TabIndex = 1;
|
||||
this.tbIDO.TabStop = false;
|
||||
this.tbIDO.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// tbIDN
|
||||
//
|
||||
this.tbIDN.Location = new System.Drawing.Point(112, 38);
|
||||
this.tbIDN.Name = "tbIDN";
|
||||
this.tbIDN.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbIDN.TabIndex = 3;
|
||||
this.tbIDN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.Location = new System.Drawing.Point(112, 65);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(170, 30);
|
||||
this.button1.TabIndex = 4;
|
||||
this.button1.Text = "OK";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// fNewID
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(296, 110);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(label1);
|
||||
this.Controls.Add(this.tbIDN);
|
||||
this.Controls.Add(nameLabel);
|
||||
this.Controls.Add(this.tbIDO);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "fNewID";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "fNewPassword";
|
||||
this.Load += new System.EventHandler(this.fNewPassword_Load);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button button1;
|
||||
public System.Windows.Forms.TextBox tbIDO;
|
||||
public System.Windows.Forms.TextBox tbIDN;
|
||||
}
|
||||
namespace Project._Common
|
||||
{
|
||||
partial class fNewID
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
System.Windows.Forms.Label nameLabel;
|
||||
System.Windows.Forms.Label label1;
|
||||
this.tbIDO = new System.Windows.Forms.TextBox();
|
||||
this.tbIDN = new System.Windows.Forms.TextBox();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
nameLabel = new System.Windows.Forms.Label();
|
||||
label1 = new System.Windows.Forms.Label();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// nameLabel
|
||||
//
|
||||
nameLabel.AutoSize = true;
|
||||
nameLabel.Location = new System.Drawing.Point(60, 15);
|
||||
nameLabel.Name = "nameLabel";
|
||||
nameLabel.Size = new System.Drawing.Size(46, 12);
|
||||
nameLabel.TabIndex = 0;
|
||||
nameLabel.Text = "User ID";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
label1.AutoSize = true;
|
||||
label1.Location = new System.Drawing.Point(60, 41);
|
||||
label1.Name = "label1";
|
||||
label1.Size = new System.Drawing.Size(46, 12);
|
||||
label1.TabIndex = 2;
|
||||
label1.Text = "New ID";
|
||||
//
|
||||
// tbIDO
|
||||
//
|
||||
this.tbIDO.Location = new System.Drawing.Point(112, 12);
|
||||
this.tbIDO.Name = "tbIDO";
|
||||
this.tbIDO.ReadOnly = true;
|
||||
this.tbIDO.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbIDO.TabIndex = 1;
|
||||
this.tbIDO.TabStop = false;
|
||||
this.tbIDO.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// tbIDN
|
||||
//
|
||||
this.tbIDN.Location = new System.Drawing.Point(112, 38);
|
||||
this.tbIDN.Name = "tbIDN";
|
||||
this.tbIDN.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbIDN.TabIndex = 3;
|
||||
this.tbIDN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.Location = new System.Drawing.Point(112, 65);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(170, 30);
|
||||
this.button1.TabIndex = 4;
|
||||
this.button1.Text = "OK";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// fNewID
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(296, 110);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(label1);
|
||||
this.Controls.Add(this.tbIDN);
|
||||
this.Controls.Add(nameLabel);
|
||||
this.Controls.Add(this.tbIDO);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "fNewID";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "fNewPassword";
|
||||
this.Load += new System.EventHandler(this.fNewPassword_Load);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button button1;
|
||||
public System.Windows.Forms.TextBox tbIDO;
|
||||
public System.Windows.Forms.TextBox tbIDN;
|
||||
}
|
||||
}
|
||||
322
Project/_Common/fNewPassword.Designer.cs
generated
322
Project/_Common/fNewPassword.Designer.cs
generated
@@ -1,162 +1,162 @@
|
||||
namespace Project._Common
|
||||
{
|
||||
partial class fNewPassword
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
System.Windows.Forms.Label nameLabel;
|
||||
System.Windows.Forms.Label deptLabel;
|
||||
System.Windows.Forms.Label gradeLabel;
|
||||
System.Windows.Forms.Label label1;
|
||||
this.tbUserID = new System.Windows.Forms.TextBox();
|
||||
this.tbPass1 = new System.Windows.Forms.TextBox();
|
||||
this.tbPass2 = new System.Windows.Forms.TextBox();
|
||||
this.tbPassO = new System.Windows.Forms.TextBox();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
nameLabel = new System.Windows.Forms.Label();
|
||||
deptLabel = new System.Windows.Forms.Label();
|
||||
gradeLabel = new System.Windows.Forms.Label();
|
||||
label1 = new System.Windows.Forms.Label();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// nameLabel
|
||||
//
|
||||
nameLabel.AutoSize = true;
|
||||
nameLabel.Location = new System.Drawing.Point(60, 15);
|
||||
nameLabel.Name = "nameLabel";
|
||||
nameLabel.Size = new System.Drawing.Size(46, 12);
|
||||
nameLabel.TabIndex = 0;
|
||||
nameLabel.Text = "User ID";
|
||||
//
|
||||
// deptLabel
|
||||
//
|
||||
deptLabel.AutoSize = true;
|
||||
deptLabel.Location = new System.Drawing.Point(14, 67);
|
||||
deptLabel.Name = "deptLabel";
|
||||
deptLabel.Size = new System.Drawing.Size(92, 12);
|
||||
deptLabel.TabIndex = 4;
|
||||
deptLabel.Text = "New Password";
|
||||
//
|
||||
// gradeLabel
|
||||
//
|
||||
gradeLabel.AutoSize = true;
|
||||
gradeLabel.Location = new System.Drawing.Point(69, 93);
|
||||
gradeLabel.Name = "gradeLabel";
|
||||
gradeLabel.Size = new System.Drawing.Size(37, 12);
|
||||
gradeLabel.TabIndex = 6;
|
||||
gradeLabel.Text = "Verify";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
label1.AutoSize = true;
|
||||
label1.Location = new System.Drawing.Point(16, 41);
|
||||
label1.Name = "label1";
|
||||
label1.Size = new System.Drawing.Size(90, 12);
|
||||
label1.TabIndex = 2;
|
||||
label1.Text = "OLD Password";
|
||||
//
|
||||
// tbUserID
|
||||
//
|
||||
this.tbUserID.Location = new System.Drawing.Point(112, 12);
|
||||
this.tbUserID.Name = "tbUserID";
|
||||
this.tbUserID.ReadOnly = true;
|
||||
this.tbUserID.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbUserID.TabIndex = 1;
|
||||
this.tbUserID.TabStop = false;
|
||||
this.tbUserID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// tbPass1
|
||||
//
|
||||
this.tbPass1.Location = new System.Drawing.Point(112, 64);
|
||||
this.tbPass1.Name = "tbPass1";
|
||||
this.tbPass1.PasswordChar = '*';
|
||||
this.tbPass1.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbPass1.TabIndex = 5;
|
||||
this.tbPass1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// tbPass2
|
||||
//
|
||||
this.tbPass2.Location = new System.Drawing.Point(112, 90);
|
||||
this.tbPass2.Name = "tbPass2";
|
||||
this.tbPass2.PasswordChar = '*';
|
||||
this.tbPass2.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbPass2.TabIndex = 7;
|
||||
this.tbPass2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// tbPassO
|
||||
//
|
||||
this.tbPassO.Location = new System.Drawing.Point(112, 38);
|
||||
this.tbPassO.Name = "tbPassO";
|
||||
this.tbPassO.PasswordChar = '*';
|
||||
this.tbPassO.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbPassO.TabIndex = 3;
|
||||
this.tbPassO.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.Location = new System.Drawing.Point(112, 119);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(169, 30);
|
||||
this.button1.TabIndex = 8;
|
||||
this.button1.Text = "OK";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// fNewPassword
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(296, 157);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(label1);
|
||||
this.Controls.Add(this.tbPassO);
|
||||
this.Controls.Add(nameLabel);
|
||||
this.Controls.Add(this.tbUserID);
|
||||
this.Controls.Add(deptLabel);
|
||||
this.Controls.Add(this.tbPass1);
|
||||
this.Controls.Add(gradeLabel);
|
||||
this.Controls.Add(this.tbPass2);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "fNewPassword";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "fNewPassword";
|
||||
this.Load += new System.EventHandler(this.fNewPassword_Load);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.TextBox tbPass2;
|
||||
private System.Windows.Forms.Button button1;
|
||||
public System.Windows.Forms.TextBox tbUserID;
|
||||
public System.Windows.Forms.TextBox tbPass1;
|
||||
public System.Windows.Forms.TextBox tbPassO;
|
||||
}
|
||||
namespace Project._Common
|
||||
{
|
||||
partial class fNewPassword
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
System.Windows.Forms.Label nameLabel;
|
||||
System.Windows.Forms.Label deptLabel;
|
||||
System.Windows.Forms.Label gradeLabel;
|
||||
System.Windows.Forms.Label label1;
|
||||
this.tbUserID = new System.Windows.Forms.TextBox();
|
||||
this.tbPass1 = new System.Windows.Forms.TextBox();
|
||||
this.tbPass2 = new System.Windows.Forms.TextBox();
|
||||
this.tbPassO = new System.Windows.Forms.TextBox();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
nameLabel = new System.Windows.Forms.Label();
|
||||
deptLabel = new System.Windows.Forms.Label();
|
||||
gradeLabel = new System.Windows.Forms.Label();
|
||||
label1 = new System.Windows.Forms.Label();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// nameLabel
|
||||
//
|
||||
nameLabel.AutoSize = true;
|
||||
nameLabel.Location = new System.Drawing.Point(60, 15);
|
||||
nameLabel.Name = "nameLabel";
|
||||
nameLabel.Size = new System.Drawing.Size(46, 12);
|
||||
nameLabel.TabIndex = 0;
|
||||
nameLabel.Text = "User ID";
|
||||
//
|
||||
// deptLabel
|
||||
//
|
||||
deptLabel.AutoSize = true;
|
||||
deptLabel.Location = new System.Drawing.Point(14, 67);
|
||||
deptLabel.Name = "deptLabel";
|
||||
deptLabel.Size = new System.Drawing.Size(92, 12);
|
||||
deptLabel.TabIndex = 4;
|
||||
deptLabel.Text = "New Password";
|
||||
//
|
||||
// gradeLabel
|
||||
//
|
||||
gradeLabel.AutoSize = true;
|
||||
gradeLabel.Location = new System.Drawing.Point(69, 93);
|
||||
gradeLabel.Name = "gradeLabel";
|
||||
gradeLabel.Size = new System.Drawing.Size(37, 12);
|
||||
gradeLabel.TabIndex = 6;
|
||||
gradeLabel.Text = "Verify";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
label1.AutoSize = true;
|
||||
label1.Location = new System.Drawing.Point(16, 41);
|
||||
label1.Name = "label1";
|
||||
label1.Size = new System.Drawing.Size(90, 12);
|
||||
label1.TabIndex = 2;
|
||||
label1.Text = "OLD Password";
|
||||
//
|
||||
// tbUserID
|
||||
//
|
||||
this.tbUserID.Location = new System.Drawing.Point(112, 12);
|
||||
this.tbUserID.Name = "tbUserID";
|
||||
this.tbUserID.ReadOnly = true;
|
||||
this.tbUserID.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbUserID.TabIndex = 1;
|
||||
this.tbUserID.TabStop = false;
|
||||
this.tbUserID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// tbPass1
|
||||
//
|
||||
this.tbPass1.Location = new System.Drawing.Point(112, 64);
|
||||
this.tbPass1.Name = "tbPass1";
|
||||
this.tbPass1.PasswordChar = '*';
|
||||
this.tbPass1.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbPass1.TabIndex = 5;
|
||||
this.tbPass1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// tbPass2
|
||||
//
|
||||
this.tbPass2.Location = new System.Drawing.Point(112, 90);
|
||||
this.tbPass2.Name = "tbPass2";
|
||||
this.tbPass2.PasswordChar = '*';
|
||||
this.tbPass2.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbPass2.TabIndex = 7;
|
||||
this.tbPass2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// tbPassO
|
||||
//
|
||||
this.tbPassO.Location = new System.Drawing.Point(112, 38);
|
||||
this.tbPassO.Name = "tbPassO";
|
||||
this.tbPassO.PasswordChar = '*';
|
||||
this.tbPassO.Size = new System.Drawing.Size(170, 21);
|
||||
this.tbPassO.TabIndex = 3;
|
||||
this.tbPassO.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.Location = new System.Drawing.Point(112, 119);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(169, 30);
|
||||
this.button1.TabIndex = 8;
|
||||
this.button1.Text = "OK";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// fNewPassword
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(296, 157);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(label1);
|
||||
this.Controls.Add(this.tbPassO);
|
||||
this.Controls.Add(nameLabel);
|
||||
this.Controls.Add(this.tbUserID);
|
||||
this.Controls.Add(deptLabel);
|
||||
this.Controls.Add(this.tbPass1);
|
||||
this.Controls.Add(gradeLabel);
|
||||
this.Controls.Add(this.tbPass2);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "fNewPassword";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "fNewPassword";
|
||||
this.Load += new System.EventHandler(this.fNewPassword_Load);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.TextBox tbPass2;
|
||||
private System.Windows.Forms.Button button1;
|
||||
public System.Windows.Forms.TextBox tbUserID;
|
||||
public System.Windows.Forms.TextBox tbPass1;
|
||||
public System.Windows.Forms.TextBox tbPassO;
|
||||
}
|
||||
}
|
||||
808
Project/_Common/fUserInfo.Designer.cs
generated
808
Project/_Common/fUserInfo.Designer.cs
generated
@@ -1,405 +1,405 @@
|
||||
namespace Project._Common
|
||||
{
|
||||
partial class fUserInfo
|
||||
{
|
||||
/// <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();
|
||||
System.Windows.Forms.Label idLabel;
|
||||
System.Windows.Forms.Label passwordLabel;
|
||||
System.Windows.Forms.Label nameLabel;
|
||||
System.Windows.Forms.Label deptLabel;
|
||||
System.Windows.Forms.Label gradeLabel;
|
||||
System.Windows.Forms.Label emailLabel;
|
||||
System.Windows.Forms.Label levelLabel;
|
||||
System.Windows.Forms.Label indateLabel;
|
||||
System.Windows.Forms.Label outdateLabel;
|
||||
System.Windows.Forms.Label memoLabel;
|
||||
System.Windows.Forms.Label label1;
|
||||
System.Windows.Forms.Label label2;
|
||||
System.Windows.Forms.Label label3;
|
||||
this.idTextBox = new System.Windows.Forms.TextBox();
|
||||
this.bs = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.dsMSSQL = new Project.dsMSSQL();
|
||||
this.nameTextBox = new System.Windows.Forms.TextBox();
|
||||
this.deptTextBox = new System.Windows.Forms.TextBox();
|
||||
this.gradeTextBox = new System.Windows.Forms.TextBox();
|
||||
this.emailTextBox = new System.Windows.Forms.TextBox();
|
||||
this.levelTextBox = new System.Windows.Forms.TextBox();
|
||||
this.indateTextBox = new System.Windows.Forms.TextBox();
|
||||
this.outdateTextBox = new System.Windows.Forms.TextBox();
|
||||
this.memoTextBox = new System.Windows.Forms.TextBox();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
this.button2 = new System.Windows.Forms.Button();
|
||||
this.ta = new Project.dsMSSQLTableAdapters.UsersTableAdapter();
|
||||
this.tam = new Project.dsMSSQLTableAdapters.TableAdapterManager();
|
||||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||||
this.textBox2 = new System.Windows.Forms.TextBox();
|
||||
this.textBox3 = new System.Windows.Forms.TextBox();
|
||||
idLabel = new System.Windows.Forms.Label();
|
||||
passwordLabel = new System.Windows.Forms.Label();
|
||||
nameLabel = new System.Windows.Forms.Label();
|
||||
deptLabel = new System.Windows.Forms.Label();
|
||||
gradeLabel = new System.Windows.Forms.Label();
|
||||
emailLabel = new System.Windows.Forms.Label();
|
||||
levelLabel = new System.Windows.Forms.Label();
|
||||
indateLabel = new System.Windows.Forms.Label();
|
||||
outdateLabel = new System.Windows.Forms.Label();
|
||||
memoLabel = new System.Windows.Forms.Label();
|
||||
label1 = new System.Windows.Forms.Label();
|
||||
label2 = new System.Windows.Forms.Label();
|
||||
label3 = new System.Windows.Forms.Label();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// idLabel
|
||||
//
|
||||
idLabel.AutoSize = true;
|
||||
idLabel.Location = new System.Drawing.Point(22, 15);
|
||||
idLabel.Name = "idLabel";
|
||||
idLabel.Size = new System.Drawing.Size(19, 12);
|
||||
idLabel.TabIndex = 0;
|
||||
idLabel.Text = "id:";
|
||||
//
|
||||
// passwordLabel
|
||||
//
|
||||
passwordLabel.AutoSize = true;
|
||||
passwordLabel.Location = new System.Drawing.Point(22, 42);
|
||||
passwordLabel.Name = "passwordLabel";
|
||||
passwordLabel.Size = new System.Drawing.Size(65, 12);
|
||||
passwordLabel.TabIndex = 2;
|
||||
passwordLabel.Text = "password:";
|
||||
//
|
||||
// nameLabel
|
||||
//
|
||||
nameLabel.AutoSize = true;
|
||||
nameLabel.Location = new System.Drawing.Point(22, 69);
|
||||
nameLabel.Name = "nameLabel";
|
||||
nameLabel.Size = new System.Drawing.Size(41, 12);
|
||||
nameLabel.TabIndex = 4;
|
||||
nameLabel.Text = "name:";
|
||||
//
|
||||
// deptLabel
|
||||
//
|
||||
deptLabel.AutoSize = true;
|
||||
deptLabel.Location = new System.Drawing.Point(22, 122);
|
||||
deptLabel.Name = "deptLabel";
|
||||
deptLabel.Size = new System.Drawing.Size(33, 12);
|
||||
deptLabel.TabIndex = 8;
|
||||
deptLabel.Text = "dept:";
|
||||
//
|
||||
// gradeLabel
|
||||
//
|
||||
gradeLabel.AutoSize = true;
|
||||
gradeLabel.Location = new System.Drawing.Point(22, 149);
|
||||
gradeLabel.Name = "gradeLabel";
|
||||
gradeLabel.Size = new System.Drawing.Size(41, 12);
|
||||
gradeLabel.TabIndex = 10;
|
||||
gradeLabel.Text = "grade:";
|
||||
//
|
||||
// emailLabel
|
||||
//
|
||||
emailLabel.AutoSize = true;
|
||||
emailLabel.Location = new System.Drawing.Point(22, 176);
|
||||
emailLabel.Name = "emailLabel";
|
||||
emailLabel.Size = new System.Drawing.Size(40, 12);
|
||||
emailLabel.TabIndex = 12;
|
||||
emailLabel.Text = "email:";
|
||||
//
|
||||
// levelLabel
|
||||
//
|
||||
levelLabel.AutoSize = true;
|
||||
levelLabel.Location = new System.Drawing.Point(22, 257);
|
||||
levelLabel.Name = "levelLabel";
|
||||
levelLabel.Size = new System.Drawing.Size(35, 12);
|
||||
levelLabel.TabIndex = 18;
|
||||
levelLabel.Text = "level:";
|
||||
//
|
||||
// indateLabel
|
||||
//
|
||||
indateLabel.AutoSize = true;
|
||||
indateLabel.Location = new System.Drawing.Point(22, 284);
|
||||
indateLabel.Name = "indateLabel";
|
||||
indateLabel.Size = new System.Drawing.Size(43, 12);
|
||||
indateLabel.TabIndex = 20;
|
||||
indateLabel.Text = "indate:";
|
||||
//
|
||||
// outdateLabel
|
||||
//
|
||||
outdateLabel.AutoSize = true;
|
||||
outdateLabel.Location = new System.Drawing.Point(22, 311);
|
||||
outdateLabel.Name = "outdateLabel";
|
||||
outdateLabel.Size = new System.Drawing.Size(50, 12);
|
||||
outdateLabel.TabIndex = 22;
|
||||
outdateLabel.Text = "outdate:";
|
||||
//
|
||||
// memoLabel
|
||||
//
|
||||
memoLabel.AutoSize = true;
|
||||
memoLabel.Location = new System.Drawing.Point(22, 338);
|
||||
memoLabel.Name = "memoLabel";
|
||||
memoLabel.Size = new System.Drawing.Size(45, 12);
|
||||
memoLabel.TabIndex = 24;
|
||||
memoLabel.Text = "memo:";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
label1.AutoSize = true;
|
||||
label1.Location = new System.Drawing.Point(22, 203);
|
||||
label1.Name = "label1";
|
||||
label1.Size = new System.Drawing.Size(23, 12);
|
||||
label1.TabIndex = 14;
|
||||
label1.Text = "Tel";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
label2.AutoSize = true;
|
||||
label2.Location = new System.Drawing.Point(22, 230);
|
||||
label2.Name = "label2";
|
||||
label2.Size = new System.Drawing.Size(20, 12);
|
||||
label2.TabIndex = 16;
|
||||
label2.Text = "Hp";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
label3.AutoSize = true;
|
||||
label3.Location = new System.Drawing.Point(22, 95);
|
||||
label3.Name = "label3";
|
||||
label3.Size = new System.Drawing.Size(55, 12);
|
||||
label3.TabIndex = 6;
|
||||
label3.Text = "name(E)";
|
||||
//
|
||||
// idTextBox
|
||||
//
|
||||
this.idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "id", true));
|
||||
this.idTextBox.Location = new System.Drawing.Point(93, 12);
|
||||
this.idTextBox.Name = "idTextBox";
|
||||
this.idTextBox.ReadOnly = true;
|
||||
this.idTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.idTextBox.TabIndex = 1;
|
||||
//
|
||||
// bs
|
||||
//
|
||||
this.bs.DataMember = "Users";
|
||||
this.bs.DataSource = this.dsMSSQL;
|
||||
this.bs.CurrentChanged += new System.EventHandler(this.bs_CurrentChanged);
|
||||
//
|
||||
// dsMSSQL
|
||||
//
|
||||
this.dsMSSQL.DataSetName = "dsMSSQL";
|
||||
this.dsMSSQL.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
|
||||
//
|
||||
// nameTextBox
|
||||
//
|
||||
this.nameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "name", true));
|
||||
this.nameTextBox.Location = new System.Drawing.Point(93, 66);
|
||||
this.nameTextBox.Name = "nameTextBox";
|
||||
this.nameTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.nameTextBox.TabIndex = 5;
|
||||
//
|
||||
// deptTextBox
|
||||
//
|
||||
this.deptTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "dept", true));
|
||||
this.deptTextBox.Location = new System.Drawing.Point(93, 119);
|
||||
this.deptTextBox.Name = "deptTextBox";
|
||||
this.deptTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.deptTextBox.TabIndex = 9;
|
||||
//
|
||||
// gradeTextBox
|
||||
//
|
||||
this.gradeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "grade", true));
|
||||
this.gradeTextBox.Location = new System.Drawing.Point(93, 146);
|
||||
this.gradeTextBox.Name = "gradeTextBox";
|
||||
this.gradeTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.gradeTextBox.TabIndex = 11;
|
||||
//
|
||||
// emailTextBox
|
||||
//
|
||||
this.emailTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "email", true));
|
||||
this.emailTextBox.Location = new System.Drawing.Point(93, 173);
|
||||
this.emailTextBox.Name = "emailTextBox";
|
||||
this.emailTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.emailTextBox.TabIndex = 13;
|
||||
//
|
||||
// levelTextBox
|
||||
//
|
||||
this.levelTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "level", true));
|
||||
this.levelTextBox.Location = new System.Drawing.Point(93, 254);
|
||||
this.levelTextBox.Name = "levelTextBox";
|
||||
this.levelTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.levelTextBox.TabIndex = 19;
|
||||
//
|
||||
// indateTextBox
|
||||
//
|
||||
this.indateTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "indate", true));
|
||||
this.indateTextBox.Location = new System.Drawing.Point(93, 281);
|
||||
this.indateTextBox.Name = "indateTextBox";
|
||||
this.indateTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.indateTextBox.TabIndex = 21;
|
||||
//
|
||||
// outdateTextBox
|
||||
//
|
||||
this.outdateTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "outdate", true));
|
||||
this.outdateTextBox.Location = new System.Drawing.Point(93, 308);
|
||||
this.outdateTextBox.Name = "outdateTextBox";
|
||||
this.outdateTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.outdateTextBox.TabIndex = 23;
|
||||
//
|
||||
// memoTextBox
|
||||
//
|
||||
this.memoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "memo", true));
|
||||
this.memoTextBox.Location = new System.Drawing.Point(93, 335);
|
||||
this.memoTextBox.Name = "memoTextBox";
|
||||
this.memoTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.memoTextBox.TabIndex = 25;
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.Location = new System.Drawing.Point(93, 38);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(200, 21);
|
||||
this.button1.TabIndex = 3;
|
||||
this.button1.Text = "Change";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// button2
|
||||
//
|
||||
this.button2.Location = new System.Drawing.Point(93, 363);
|
||||
this.button2.Name = "button2";
|
||||
this.button2.Size = new System.Drawing.Size(200, 30);
|
||||
this.button2.TabIndex = 26;
|
||||
this.button2.Text = "Save";
|
||||
this.button2.UseVisualStyleBackColor = true;
|
||||
this.button2.Click += new System.EventHandler(this.button2_Click);
|
||||
//
|
||||
// ta
|
||||
//
|
||||
this.ta.ClearBeforeFill = true;
|
||||
//
|
||||
// tam
|
||||
//
|
||||
this.tam.BackupDataSetBeforeUpdate = false;
|
||||
this.tam.InventoryTableAdapter = null;
|
||||
this.tam.ItemsTableAdapter = null;
|
||||
this.tam.LineCodeTableAdapter = null;
|
||||
this.tam.ProjectsTableAdapter = null;
|
||||
this.tam.UpdateOrder = Project.dsMSSQLTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
|
||||
this.tam.UsersTableAdapter = this.ta;
|
||||
//
|
||||
// textBox1
|
||||
//
|
||||
this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "tel", true));
|
||||
this.textBox1.Location = new System.Drawing.Point(93, 200);
|
||||
this.textBox1.Name = "textBox1";
|
||||
this.textBox1.Size = new System.Drawing.Size(200, 21);
|
||||
this.textBox1.TabIndex = 15;
|
||||
//
|
||||
// textBox2
|
||||
//
|
||||
this.textBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "hp", true));
|
||||
this.textBox2.Location = new System.Drawing.Point(93, 227);
|
||||
this.textBox2.Name = "textBox2";
|
||||
this.textBox2.Size = new System.Drawing.Size(200, 21);
|
||||
this.textBox2.TabIndex = 17;
|
||||
//
|
||||
// textBox3
|
||||
//
|
||||
this.textBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "nameE", true));
|
||||
this.textBox3.Location = new System.Drawing.Point(93, 92);
|
||||
this.textBox3.Name = "textBox3";
|
||||
this.textBox3.Size = new System.Drawing.Size(200, 21);
|
||||
this.textBox3.TabIndex = 7;
|
||||
//
|
||||
// fUserInfo
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(305, 402);
|
||||
this.Controls.Add(label3);
|
||||
this.Controls.Add(this.textBox3);
|
||||
this.Controls.Add(label2);
|
||||
this.Controls.Add(this.textBox2);
|
||||
this.Controls.Add(label1);
|
||||
this.Controls.Add(this.textBox1);
|
||||
this.Controls.Add(this.button2);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(idLabel);
|
||||
this.Controls.Add(this.idTextBox);
|
||||
this.Controls.Add(passwordLabel);
|
||||
this.Controls.Add(nameLabel);
|
||||
this.Controls.Add(this.nameTextBox);
|
||||
this.Controls.Add(deptLabel);
|
||||
this.Controls.Add(this.deptTextBox);
|
||||
this.Controls.Add(gradeLabel);
|
||||
this.Controls.Add(this.gradeTextBox);
|
||||
this.Controls.Add(emailLabel);
|
||||
this.Controls.Add(this.emailTextBox);
|
||||
this.Controls.Add(levelLabel);
|
||||
this.Controls.Add(this.levelTextBox);
|
||||
this.Controls.Add(indateLabel);
|
||||
this.Controls.Add(this.indateTextBox);
|
||||
this.Controls.Add(outdateLabel);
|
||||
this.Controls.Add(this.outdateTextBox);
|
||||
this.Controls.Add(memoLabel);
|
||||
this.Controls.Add(this.memoTextBox);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "fUserInfo";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "fUserInfo";
|
||||
this.Load += new System.EventHandler(this.fUserInfo_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private dsMSSQL dsMSSQL;
|
||||
private System.Windows.Forms.BindingSource bs;
|
||||
private dsMSSQLTableAdapters.UsersTableAdapter ta;
|
||||
private dsMSSQLTableAdapters.TableAdapterManager tam;
|
||||
private System.Windows.Forms.TextBox idTextBox;
|
||||
private System.Windows.Forms.TextBox nameTextBox;
|
||||
private System.Windows.Forms.TextBox deptTextBox;
|
||||
private System.Windows.Forms.TextBox gradeTextBox;
|
||||
private System.Windows.Forms.TextBox emailTextBox;
|
||||
private System.Windows.Forms.TextBox levelTextBox;
|
||||
private System.Windows.Forms.TextBox indateTextBox;
|
||||
private System.Windows.Forms.TextBox outdateTextBox;
|
||||
private System.Windows.Forms.TextBox memoTextBox;
|
||||
private System.Windows.Forms.Button button1;
|
||||
private System.Windows.Forms.Button button2;
|
||||
private System.Windows.Forms.TextBox textBox1;
|
||||
private System.Windows.Forms.TextBox textBox2;
|
||||
private System.Windows.Forms.TextBox textBox3;
|
||||
}
|
||||
namespace Project._Common
|
||||
{
|
||||
partial class fUserInfo
|
||||
{
|
||||
/// <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();
|
||||
System.Windows.Forms.Label idLabel;
|
||||
System.Windows.Forms.Label passwordLabel;
|
||||
System.Windows.Forms.Label nameLabel;
|
||||
System.Windows.Forms.Label deptLabel;
|
||||
System.Windows.Forms.Label gradeLabel;
|
||||
System.Windows.Forms.Label emailLabel;
|
||||
System.Windows.Forms.Label levelLabel;
|
||||
System.Windows.Forms.Label indateLabel;
|
||||
System.Windows.Forms.Label outdateLabel;
|
||||
System.Windows.Forms.Label memoLabel;
|
||||
System.Windows.Forms.Label label1;
|
||||
System.Windows.Forms.Label label2;
|
||||
System.Windows.Forms.Label label3;
|
||||
this.idTextBox = new System.Windows.Forms.TextBox();
|
||||
this.bs = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.dsMSSQL = new Project.dsMSSQL();
|
||||
this.nameTextBox = new System.Windows.Forms.TextBox();
|
||||
this.deptTextBox = new System.Windows.Forms.TextBox();
|
||||
this.gradeTextBox = new System.Windows.Forms.TextBox();
|
||||
this.emailTextBox = new System.Windows.Forms.TextBox();
|
||||
this.levelTextBox = new System.Windows.Forms.TextBox();
|
||||
this.indateTextBox = new System.Windows.Forms.TextBox();
|
||||
this.outdateTextBox = new System.Windows.Forms.TextBox();
|
||||
this.memoTextBox = new System.Windows.Forms.TextBox();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
this.button2 = new System.Windows.Forms.Button();
|
||||
this.ta = new Project.dsMSSQLTableAdapters.UsersTableAdapter();
|
||||
this.tam = new Project.dsMSSQLTableAdapters.TableAdapterManager();
|
||||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||||
this.textBox2 = new System.Windows.Forms.TextBox();
|
||||
this.textBox3 = new System.Windows.Forms.TextBox();
|
||||
idLabel = new System.Windows.Forms.Label();
|
||||
passwordLabel = new System.Windows.Forms.Label();
|
||||
nameLabel = new System.Windows.Forms.Label();
|
||||
deptLabel = new System.Windows.Forms.Label();
|
||||
gradeLabel = new System.Windows.Forms.Label();
|
||||
emailLabel = new System.Windows.Forms.Label();
|
||||
levelLabel = new System.Windows.Forms.Label();
|
||||
indateLabel = new System.Windows.Forms.Label();
|
||||
outdateLabel = new System.Windows.Forms.Label();
|
||||
memoLabel = new System.Windows.Forms.Label();
|
||||
label1 = new System.Windows.Forms.Label();
|
||||
label2 = new System.Windows.Forms.Label();
|
||||
label3 = new System.Windows.Forms.Label();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// idLabel
|
||||
//
|
||||
idLabel.AutoSize = true;
|
||||
idLabel.Location = new System.Drawing.Point(22, 15);
|
||||
idLabel.Name = "idLabel";
|
||||
idLabel.Size = new System.Drawing.Size(19, 12);
|
||||
idLabel.TabIndex = 0;
|
||||
idLabel.Text = "id:";
|
||||
//
|
||||
// passwordLabel
|
||||
//
|
||||
passwordLabel.AutoSize = true;
|
||||
passwordLabel.Location = new System.Drawing.Point(22, 42);
|
||||
passwordLabel.Name = "passwordLabel";
|
||||
passwordLabel.Size = new System.Drawing.Size(65, 12);
|
||||
passwordLabel.TabIndex = 2;
|
||||
passwordLabel.Text = "password:";
|
||||
//
|
||||
// nameLabel
|
||||
//
|
||||
nameLabel.AutoSize = true;
|
||||
nameLabel.Location = new System.Drawing.Point(22, 69);
|
||||
nameLabel.Name = "nameLabel";
|
||||
nameLabel.Size = new System.Drawing.Size(41, 12);
|
||||
nameLabel.TabIndex = 4;
|
||||
nameLabel.Text = "name:";
|
||||
//
|
||||
// deptLabel
|
||||
//
|
||||
deptLabel.AutoSize = true;
|
||||
deptLabel.Location = new System.Drawing.Point(22, 122);
|
||||
deptLabel.Name = "deptLabel";
|
||||
deptLabel.Size = new System.Drawing.Size(33, 12);
|
||||
deptLabel.TabIndex = 8;
|
||||
deptLabel.Text = "dept:";
|
||||
//
|
||||
// gradeLabel
|
||||
//
|
||||
gradeLabel.AutoSize = true;
|
||||
gradeLabel.Location = new System.Drawing.Point(22, 149);
|
||||
gradeLabel.Name = "gradeLabel";
|
||||
gradeLabel.Size = new System.Drawing.Size(41, 12);
|
||||
gradeLabel.TabIndex = 10;
|
||||
gradeLabel.Text = "grade:";
|
||||
//
|
||||
// emailLabel
|
||||
//
|
||||
emailLabel.AutoSize = true;
|
||||
emailLabel.Location = new System.Drawing.Point(22, 176);
|
||||
emailLabel.Name = "emailLabel";
|
||||
emailLabel.Size = new System.Drawing.Size(40, 12);
|
||||
emailLabel.TabIndex = 12;
|
||||
emailLabel.Text = "email:";
|
||||
//
|
||||
// levelLabel
|
||||
//
|
||||
levelLabel.AutoSize = true;
|
||||
levelLabel.Location = new System.Drawing.Point(22, 257);
|
||||
levelLabel.Name = "levelLabel";
|
||||
levelLabel.Size = new System.Drawing.Size(35, 12);
|
||||
levelLabel.TabIndex = 18;
|
||||
levelLabel.Text = "level:";
|
||||
//
|
||||
// indateLabel
|
||||
//
|
||||
indateLabel.AutoSize = true;
|
||||
indateLabel.Location = new System.Drawing.Point(22, 284);
|
||||
indateLabel.Name = "indateLabel";
|
||||
indateLabel.Size = new System.Drawing.Size(43, 12);
|
||||
indateLabel.TabIndex = 20;
|
||||
indateLabel.Text = "indate:";
|
||||
//
|
||||
// outdateLabel
|
||||
//
|
||||
outdateLabel.AutoSize = true;
|
||||
outdateLabel.Location = new System.Drawing.Point(22, 311);
|
||||
outdateLabel.Name = "outdateLabel";
|
||||
outdateLabel.Size = new System.Drawing.Size(50, 12);
|
||||
outdateLabel.TabIndex = 22;
|
||||
outdateLabel.Text = "outdate:";
|
||||
//
|
||||
// memoLabel
|
||||
//
|
||||
memoLabel.AutoSize = true;
|
||||
memoLabel.Location = new System.Drawing.Point(22, 338);
|
||||
memoLabel.Name = "memoLabel";
|
||||
memoLabel.Size = new System.Drawing.Size(45, 12);
|
||||
memoLabel.TabIndex = 24;
|
||||
memoLabel.Text = "memo:";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
label1.AutoSize = true;
|
||||
label1.Location = new System.Drawing.Point(22, 203);
|
||||
label1.Name = "label1";
|
||||
label1.Size = new System.Drawing.Size(23, 12);
|
||||
label1.TabIndex = 14;
|
||||
label1.Text = "Tel";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
label2.AutoSize = true;
|
||||
label2.Location = new System.Drawing.Point(22, 230);
|
||||
label2.Name = "label2";
|
||||
label2.Size = new System.Drawing.Size(20, 12);
|
||||
label2.TabIndex = 16;
|
||||
label2.Text = "Hp";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
label3.AutoSize = true;
|
||||
label3.Location = new System.Drawing.Point(22, 95);
|
||||
label3.Name = "label3";
|
||||
label3.Size = new System.Drawing.Size(55, 12);
|
||||
label3.TabIndex = 6;
|
||||
label3.Text = "name(E)";
|
||||
//
|
||||
// idTextBox
|
||||
//
|
||||
this.idTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "id", true));
|
||||
this.idTextBox.Location = new System.Drawing.Point(93, 12);
|
||||
this.idTextBox.Name = "idTextBox";
|
||||
this.idTextBox.ReadOnly = true;
|
||||
this.idTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.idTextBox.TabIndex = 1;
|
||||
//
|
||||
// bs
|
||||
//
|
||||
this.bs.DataMember = "Users";
|
||||
this.bs.DataSource = this.dsMSSQL;
|
||||
this.bs.CurrentChanged += new System.EventHandler(this.bs_CurrentChanged);
|
||||
//
|
||||
// dsMSSQL
|
||||
//
|
||||
this.dsMSSQL.DataSetName = "dsMSSQL";
|
||||
this.dsMSSQL.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
|
||||
//
|
||||
// nameTextBox
|
||||
//
|
||||
this.nameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "name", true));
|
||||
this.nameTextBox.Location = new System.Drawing.Point(93, 66);
|
||||
this.nameTextBox.Name = "nameTextBox";
|
||||
this.nameTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.nameTextBox.TabIndex = 5;
|
||||
//
|
||||
// deptTextBox
|
||||
//
|
||||
this.deptTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "dept", true));
|
||||
this.deptTextBox.Location = new System.Drawing.Point(93, 119);
|
||||
this.deptTextBox.Name = "deptTextBox";
|
||||
this.deptTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.deptTextBox.TabIndex = 9;
|
||||
//
|
||||
// gradeTextBox
|
||||
//
|
||||
this.gradeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "grade", true));
|
||||
this.gradeTextBox.Location = new System.Drawing.Point(93, 146);
|
||||
this.gradeTextBox.Name = "gradeTextBox";
|
||||
this.gradeTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.gradeTextBox.TabIndex = 11;
|
||||
//
|
||||
// emailTextBox
|
||||
//
|
||||
this.emailTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "email", true));
|
||||
this.emailTextBox.Location = new System.Drawing.Point(93, 173);
|
||||
this.emailTextBox.Name = "emailTextBox";
|
||||
this.emailTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.emailTextBox.TabIndex = 13;
|
||||
//
|
||||
// levelTextBox
|
||||
//
|
||||
this.levelTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "level", true));
|
||||
this.levelTextBox.Location = new System.Drawing.Point(93, 254);
|
||||
this.levelTextBox.Name = "levelTextBox";
|
||||
this.levelTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.levelTextBox.TabIndex = 19;
|
||||
//
|
||||
// indateTextBox
|
||||
//
|
||||
this.indateTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "indate", true));
|
||||
this.indateTextBox.Location = new System.Drawing.Point(93, 281);
|
||||
this.indateTextBox.Name = "indateTextBox";
|
||||
this.indateTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.indateTextBox.TabIndex = 21;
|
||||
//
|
||||
// outdateTextBox
|
||||
//
|
||||
this.outdateTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "outdate", true));
|
||||
this.outdateTextBox.Location = new System.Drawing.Point(93, 308);
|
||||
this.outdateTextBox.Name = "outdateTextBox";
|
||||
this.outdateTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.outdateTextBox.TabIndex = 23;
|
||||
//
|
||||
// memoTextBox
|
||||
//
|
||||
this.memoTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "memo", true));
|
||||
this.memoTextBox.Location = new System.Drawing.Point(93, 335);
|
||||
this.memoTextBox.Name = "memoTextBox";
|
||||
this.memoTextBox.Size = new System.Drawing.Size(200, 21);
|
||||
this.memoTextBox.TabIndex = 25;
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.Location = new System.Drawing.Point(93, 38);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(200, 21);
|
||||
this.button1.TabIndex = 3;
|
||||
this.button1.Text = "Change";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// button2
|
||||
//
|
||||
this.button2.Location = new System.Drawing.Point(93, 363);
|
||||
this.button2.Name = "button2";
|
||||
this.button2.Size = new System.Drawing.Size(200, 30);
|
||||
this.button2.TabIndex = 26;
|
||||
this.button2.Text = "Save";
|
||||
this.button2.UseVisualStyleBackColor = true;
|
||||
this.button2.Click += new System.EventHandler(this.button2_Click);
|
||||
//
|
||||
// ta
|
||||
//
|
||||
this.ta.ClearBeforeFill = true;
|
||||
//
|
||||
// tam
|
||||
//
|
||||
this.tam.BackupDataSetBeforeUpdate = false;
|
||||
this.tam.InventoryTableAdapter = null;
|
||||
this.tam.ItemsTableAdapter = null;
|
||||
this.tam.LineCodeTableAdapter = null;
|
||||
this.tam.ProjectsTableAdapter = null;
|
||||
this.tam.UpdateOrder = Project.dsMSSQLTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
|
||||
this.tam.UsersTableAdapter = this.ta;
|
||||
//
|
||||
// textBox1
|
||||
//
|
||||
this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "tel", true));
|
||||
this.textBox1.Location = new System.Drawing.Point(93, 200);
|
||||
this.textBox1.Name = "textBox1";
|
||||
this.textBox1.Size = new System.Drawing.Size(200, 21);
|
||||
this.textBox1.TabIndex = 15;
|
||||
//
|
||||
// textBox2
|
||||
//
|
||||
this.textBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "hp", true));
|
||||
this.textBox2.Location = new System.Drawing.Point(93, 227);
|
||||
this.textBox2.Name = "textBox2";
|
||||
this.textBox2.Size = new System.Drawing.Size(200, 21);
|
||||
this.textBox2.TabIndex = 17;
|
||||
//
|
||||
// textBox3
|
||||
//
|
||||
this.textBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "nameE", true));
|
||||
this.textBox3.Location = new System.Drawing.Point(93, 92);
|
||||
this.textBox3.Name = "textBox3";
|
||||
this.textBox3.Size = new System.Drawing.Size(200, 21);
|
||||
this.textBox3.TabIndex = 7;
|
||||
//
|
||||
// fUserInfo
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(305, 402);
|
||||
this.Controls.Add(label3);
|
||||
this.Controls.Add(this.textBox3);
|
||||
this.Controls.Add(label2);
|
||||
this.Controls.Add(this.textBox2);
|
||||
this.Controls.Add(label1);
|
||||
this.Controls.Add(this.textBox1);
|
||||
this.Controls.Add(this.button2);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(idLabel);
|
||||
this.Controls.Add(this.idTextBox);
|
||||
this.Controls.Add(passwordLabel);
|
||||
this.Controls.Add(nameLabel);
|
||||
this.Controls.Add(this.nameTextBox);
|
||||
this.Controls.Add(deptLabel);
|
||||
this.Controls.Add(this.deptTextBox);
|
||||
this.Controls.Add(gradeLabel);
|
||||
this.Controls.Add(this.gradeTextBox);
|
||||
this.Controls.Add(emailLabel);
|
||||
this.Controls.Add(this.emailTextBox);
|
||||
this.Controls.Add(levelLabel);
|
||||
this.Controls.Add(this.levelTextBox);
|
||||
this.Controls.Add(indateLabel);
|
||||
this.Controls.Add(this.indateTextBox);
|
||||
this.Controls.Add(outdateLabel);
|
||||
this.Controls.Add(this.outdateTextBox);
|
||||
this.Controls.Add(memoLabel);
|
||||
this.Controls.Add(this.memoTextBox);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "fUserInfo";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "fUserInfo";
|
||||
this.Load += new System.EventHandler(this.fUserInfo_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private dsMSSQL dsMSSQL;
|
||||
private System.Windows.Forms.BindingSource bs;
|
||||
private dsMSSQLTableAdapters.UsersTableAdapter ta;
|
||||
private dsMSSQLTableAdapters.TableAdapterManager tam;
|
||||
private System.Windows.Forms.TextBox idTextBox;
|
||||
private System.Windows.Forms.TextBox nameTextBox;
|
||||
private System.Windows.Forms.TextBox deptTextBox;
|
||||
private System.Windows.Forms.TextBox gradeTextBox;
|
||||
private System.Windows.Forms.TextBox emailTextBox;
|
||||
private System.Windows.Forms.TextBox levelTextBox;
|
||||
private System.Windows.Forms.TextBox indateTextBox;
|
||||
private System.Windows.Forms.TextBox outdateTextBox;
|
||||
private System.Windows.Forms.TextBox memoTextBox;
|
||||
private System.Windows.Forms.Button button1;
|
||||
private System.Windows.Forms.Button button2;
|
||||
private System.Windows.Forms.TextBox textBox1;
|
||||
private System.Windows.Forms.TextBox textBox2;
|
||||
private System.Windows.Forms.TextBox textBox3;
|
||||
}
|
||||
}
|
||||
@@ -1,79 +1,79 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Project._Common
|
||||
{
|
||||
public partial class fUserInfo : Form
|
||||
{
|
||||
public fUserInfo()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
|
||||
private void fUserInfo_Load(object sender, EventArgs e)
|
||||
{
|
||||
// TODO: 이 코드는 데이터를 'dsMSSQL.Users' 테이블에 로드합니다. 필요한 경우 이 코드를 이동하거나 제거할 수 있습니다.
|
||||
this.ta.FillID(this.dsMSSQL.Users,FCOMMON.info.Login.no);
|
||||
//this.bs.Filter = "id='" + FCOMMON.info.Login.no + "'";
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
_Common.fNewPassword f = new fNewPassword(FCOMMON.info.Login.no);
|
||||
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||
{
|
||||
var encpassO = Pub.MakePasswordEnc(f.tbPassO.Text);
|
||||
var encpassN = Pub.MakePasswordEnc(f.tbPass1.Text);
|
||||
if (currentPassword != encpassO)
|
||||
{
|
||||
Util.MsgE("Old password error");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
var drv = bs.Current as DataRowView;
|
||||
drv["password"] = encpassN;
|
||||
this.bs.EndEdit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
string currentPassword = string.Empty;
|
||||
private void bs_CurrentChanged(object sender, EventArgs e)
|
||||
{
|
||||
var drv = bs.Current as DataRowView;
|
||||
currentPassword = string.Empty;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsMSSQL.UsersRow;
|
||||
currentPassword = dr.password;
|
||||
}
|
||||
|
||||
private void button2_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
try
|
||||
{
|
||||
var cnt = this.tam.UpdateAll(this.dsMSSQL);
|
||||
Util.MsgI(string.Format("{0}건의 자료가 업데이트 됨", cnt));
|
||||
DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Util.MsgE(ex.Message);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Project._Common
|
||||
{
|
||||
public partial class fUserInfo : Form
|
||||
{
|
||||
public fUserInfo()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
|
||||
private void fUserInfo_Load(object sender, EventArgs e)
|
||||
{
|
||||
// TODO: 이 코드는 데이터를 'dsMSSQL.Users' 테이블에 로드합니다. 필요한 경우 이 코드를 이동하거나 제거할 수 있습니다.
|
||||
this.ta.FillID(this.dsMSSQL.Users,FCOMMON.info.Login.no);
|
||||
//this.bs.Filter = "id='" + FCOMMON.info.Login.no + "'";
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
_Common.fNewPassword f = new fNewPassword(FCOMMON.info.Login.no);
|
||||
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||
{
|
||||
var encpassO = Pub.MakePasswordEnc(f.tbPassO.Text);
|
||||
var encpassN = Pub.MakePasswordEnc(f.tbPass1.Text);
|
||||
if (currentPassword != encpassO)
|
||||
{
|
||||
Util.MsgE("Old password error");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
var drv = bs.Current as DataRowView;
|
||||
drv["password"] = encpassN;
|
||||
this.bs.EndEdit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
string currentPassword = string.Empty;
|
||||
private void bs_CurrentChanged(object sender, EventArgs e)
|
||||
{
|
||||
var drv = bs.Current as DataRowView;
|
||||
currentPassword = string.Empty;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsMSSQL.UsersRow;
|
||||
currentPassword = dr.password;
|
||||
}
|
||||
|
||||
private void button2_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
try
|
||||
{
|
||||
var cnt = this.tam.UpdateAll(this.dsMSSQL);
|
||||
Util.MsgI(string.Format("{0}건의 자료가 업데이트 됨", cnt));
|
||||
DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Util.MsgE(ex.Message);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,171 +1,171 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="idLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="passwordLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="nameLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="deptLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="gradeLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="emailLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="levelLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="indateLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="outdateLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="memoLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="label1.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="label2.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="label3.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="bs.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>122, 17</value>
|
||||
</metadata>
|
||||
<metadata name="dsMSSQL.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="ta.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>186, 17</value>
|
||||
</metadata>
|
||||
<metadata name="tam.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>248, 17</value>
|
||||
</metadata>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="idLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="passwordLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="nameLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="deptLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="gradeLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="emailLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="levelLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="indateLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="outdateLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="memoLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="label1.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="label2.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="label3.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="bs.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>122, 17</value>
|
||||
</metadata>
|
||||
<metadata name="dsMSSQL.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="ta.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>186, 17</value>
|
||||
</metadata>
|
||||
<metadata name="tam.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>248, 17</value>
|
||||
</metadata>
|
||||
</root>
|
||||
1104
Project/_Common/fUserList.Designer.cs
generated
1104
Project/_Common/fUserList.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -1,169 +1,169 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Project._Common
|
||||
{
|
||||
public partial class fUserList : Form
|
||||
{
|
||||
public fUserList()
|
||||
{
|
||||
InitializeComponent();
|
||||
this.dsMSSQL.Users.TableNewRow += Users_TableNewRow;
|
||||
this.FormClosed += __Closed;
|
||||
}
|
||||
|
||||
void __Closed(object sender, FormClosedEventArgs e)
|
||||
{
|
||||
var form = this as Form;
|
||||
Pub.SetFormStatus(ref form, this.Name, false);
|
||||
}
|
||||
|
||||
void Users_TableNewRow(object sender, DataTableNewRowEventArgs e)
|
||||
{
|
||||
e.Row["wuid"] = FCOMMON.info.Login.no;
|
||||
e.Row["wdate"] = DateTime.Now;
|
||||
e.Row["password"] = Pub.MakePasswordEnc("0");
|
||||
e.Row["level"] = 1;
|
||||
}
|
||||
|
||||
private void __Load(object sender, EventArgs e)
|
||||
{
|
||||
var form = this as Form;
|
||||
Pub.SetFormStatus(ref form, this.Name , true);
|
||||
this.Show();
|
||||
Application.DoEvents();
|
||||
|
||||
if(FCOMMON.info.Login.level > 9)
|
||||
{
|
||||
this.btDevel.Visible = true;
|
||||
this.dv1.EditMode = DataGridViewEditMode.EditOnKeystrokeOrF2;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.dv1.EditMode = DataGridViewEditMode.EditProgrammatically;
|
||||
this.dv1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
||||
this.btDevel.Visible = false;
|
||||
this.textBox1.Enabled = false;
|
||||
this.dvc_id.Visible = false;
|
||||
this.dvc_level.Visible = false;
|
||||
this.usersBindingNavigatorSaveItem.Enabled = false;
|
||||
this.bindingNavigatorAddNewItem.Enabled = false;
|
||||
this.bindingNavigatorDeleteItem.Enabled = false;
|
||||
|
||||
}
|
||||
|
||||
//부서목록 업데이트
|
||||
this.cmbdept.Items.Clear();
|
||||
var deptList = FCOMMON.DBM.getGroupList("dept", "users");
|
||||
foreach (var item in deptList)
|
||||
this.cmbdept.Items.Add(item);
|
||||
|
||||
this.cmbdept.Text = FCOMMON.info.Login.dept;
|
||||
btRef.PerformClick();
|
||||
|
||||
}
|
||||
private void usersBindingNavigatorSaveItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
this.tam.UpdateAll(this.dsMSSQL);
|
||||
|
||||
}
|
||||
|
||||
private void iDChangeToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var drv = this.bs.Current as DataRowView;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsMSSQL.UsersRow;
|
||||
|
||||
var f = new fNewID(dr.id);
|
||||
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||
{
|
||||
var newid = f.tbIDN.Text.Trim();
|
||||
if(this.dsMSSQL.Users.Select("id='" + newid + "'").Length != 0)
|
||||
{
|
||||
Util.MsgE("Exist id - error");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
dr.id = newid;
|
||||
dr.EndEdit();
|
||||
this.bs.EndEdit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void passwordChangeToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var drv = this.bs.Current as DataRowView;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsMSSQL.UsersRow;
|
||||
var currentPassword = dr.password;
|
||||
|
||||
_Common.fNewPassword f = new fNewPassword(dr.id);
|
||||
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||
{
|
||||
var encpassO = Pub.MakePasswordEnc(f.tbPassO.Text);
|
||||
var encpassN = Pub.MakePasswordEnc(f.tbPass1.Text);
|
||||
if (currentPassword != encpassO)
|
||||
{
|
||||
Util.MsgE("Old password error");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
dr.password = encpassN;
|
||||
dr.EndEdit();
|
||||
this.bs.EndEdit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void mailToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var drv = this.bs.Current as DataRowView;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsMSSQL.UsersRow;
|
||||
if (dr.email.isEmpty()) return;
|
||||
string cmd = "mailto:" + dr.email;
|
||||
Util.RunExplorer(cmd);
|
||||
}
|
||||
|
||||
private void 한글이름분리ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
foreach(dsMSSQL.UsersRow dr in this.dsMSSQL.Users.Rows)
|
||||
{
|
||||
var name = dr.name;
|
||||
var newname = name.Split(' ')[0];
|
||||
dr.name = newname;
|
||||
dr.EndEdit();
|
||||
}
|
||||
}
|
||||
|
||||
private void btRef_Click(object sender, EventArgs e)
|
||||
{
|
||||
//read data
|
||||
this.dsMSSQL.Users.Clear();
|
||||
this.ta.Fill(this.dsMSSQL.Users, this.cmbdept.Text );
|
||||
this.dsMSSQL.Users.AcceptChanges();
|
||||
}
|
||||
|
||||
private void autoResizeColumnToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.dv1.AutoResizeColumns();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Project._Common
|
||||
{
|
||||
public partial class fUserList : Form
|
||||
{
|
||||
public fUserList()
|
||||
{
|
||||
InitializeComponent();
|
||||
this.dsMSSQL.Users.TableNewRow += Users_TableNewRow;
|
||||
this.FormClosed += __Closed;
|
||||
}
|
||||
|
||||
void __Closed(object sender, FormClosedEventArgs e)
|
||||
{
|
||||
var form = this as Form;
|
||||
Pub.SetFormStatus(ref form, this.Name, false);
|
||||
}
|
||||
|
||||
void Users_TableNewRow(object sender, DataTableNewRowEventArgs e)
|
||||
{
|
||||
e.Row["wuid"] = FCOMMON.info.Login.no;
|
||||
e.Row["wdate"] = DateTime.Now;
|
||||
e.Row["password"] = Pub.MakePasswordEnc("0");
|
||||
e.Row["level"] = 1;
|
||||
}
|
||||
|
||||
private void __Load(object sender, EventArgs e)
|
||||
{
|
||||
var form = this as Form;
|
||||
Pub.SetFormStatus(ref form, this.Name , true);
|
||||
this.Show();
|
||||
Application.DoEvents();
|
||||
|
||||
if(FCOMMON.info.Login.level > 9)
|
||||
{
|
||||
this.btDevel.Visible = true;
|
||||
this.dv1.EditMode = DataGridViewEditMode.EditOnKeystrokeOrF2;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.dv1.EditMode = DataGridViewEditMode.EditProgrammatically;
|
||||
this.dv1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
||||
this.btDevel.Visible = false;
|
||||
this.textBox1.Enabled = false;
|
||||
this.dvc_id.Visible = false;
|
||||
this.dvc_level.Visible = false;
|
||||
this.usersBindingNavigatorSaveItem.Enabled = false;
|
||||
this.bindingNavigatorAddNewItem.Enabled = false;
|
||||
this.bindingNavigatorDeleteItem.Enabled = false;
|
||||
|
||||
}
|
||||
|
||||
//부서목록 업데이트
|
||||
this.cmbdept.Items.Clear();
|
||||
var deptList = FCOMMON.DBM.getGroupList("dept", "users");
|
||||
foreach (var item in deptList)
|
||||
this.cmbdept.Items.Add(item);
|
||||
|
||||
this.cmbdept.Text = FCOMMON.info.Login.dept;
|
||||
btRef.PerformClick();
|
||||
|
||||
}
|
||||
private void usersBindingNavigatorSaveItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
this.tam.UpdateAll(this.dsMSSQL);
|
||||
|
||||
}
|
||||
|
||||
private void iDChangeToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var drv = this.bs.Current as DataRowView;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsMSSQL.UsersRow;
|
||||
|
||||
var f = new fNewID(dr.id);
|
||||
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||
{
|
||||
var newid = f.tbIDN.Text.Trim();
|
||||
if(this.dsMSSQL.Users.Select("id='" + newid + "'").Length != 0)
|
||||
{
|
||||
Util.MsgE("Exist id - error");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
dr.id = newid;
|
||||
dr.EndEdit();
|
||||
this.bs.EndEdit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void passwordChangeToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var drv = this.bs.Current as DataRowView;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsMSSQL.UsersRow;
|
||||
var currentPassword = dr.password;
|
||||
|
||||
_Common.fNewPassword f = new fNewPassword(dr.id);
|
||||
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||
{
|
||||
var encpassO = Pub.MakePasswordEnc(f.tbPassO.Text);
|
||||
var encpassN = Pub.MakePasswordEnc(f.tbPass1.Text);
|
||||
if (currentPassword != encpassO)
|
||||
{
|
||||
Util.MsgE("Old password error");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Validate();
|
||||
this.bs.EndEdit();
|
||||
dr.password = encpassN;
|
||||
dr.EndEdit();
|
||||
this.bs.EndEdit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void mailToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var drv = this.bs.Current as DataRowView;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsMSSQL.UsersRow;
|
||||
if (dr.email.isEmpty()) return;
|
||||
string cmd = "mailto:" + dr.email;
|
||||
Util.RunExplorer(cmd);
|
||||
}
|
||||
|
||||
private void 한글이름분리ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
foreach(dsMSSQL.UsersRow dr in this.dsMSSQL.Users.Rows)
|
||||
{
|
||||
var name = dr.name;
|
||||
var newname = name.Split(' ')[0];
|
||||
dr.name = newname;
|
||||
dr.EndEdit();
|
||||
}
|
||||
}
|
||||
|
||||
private void btRef_Click(object sender, EventArgs e)
|
||||
{
|
||||
//read data
|
||||
this.dsMSSQL.Users.Clear();
|
||||
this.ta.Fill(this.dsMSSQL.Users, this.cmbdept.Text );
|
||||
this.dsMSSQL.Users.AcceptChanges();
|
||||
}
|
||||
|
||||
private void autoResizeColumnToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.dv1.AutoResizeColumns();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,240 +1,240 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="dsMSSQL.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bs.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>122, 17</value>
|
||||
</metadata>
|
||||
<metadata name="ta.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>186, 17</value>
|
||||
</metadata>
|
||||
<metadata name="tam.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>248, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bn.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>321, 17</value>
|
||||
</metadata>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="bindingNavigatorAddNewItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
|
||||
pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
|
||||
Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
|
||||
/5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
|
||||
zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
|
||||
IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
|
||||
rkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorDeleteItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
|
||||
DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
|
||||
rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
|
||||
i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
|
||||
86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
|
||||
QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
|
||||
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMoveFirstItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
|
||||
wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
|
||||
v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
|
||||
UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
|
||||
Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
|
||||
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMovePreviousItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
|
||||
5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
|
||||
Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
|
||||
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMoveNextItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
|
||||
n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
|
||||
N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
|
||||
oAc0QjgAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMoveLastItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
|
||||
h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
|
||||
twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
|
||||
kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
|
||||
WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
|
||||
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="usersBindingNavigatorSaveItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
|
||||
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="btDevel.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
|
||||
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
|
||||
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
|
||||
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
|
||||
VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
|
||||
c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
|
||||
Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
|
||||
mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
|
||||
kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
|
||||
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="cm1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>387, 17</value>
|
||||
</metadata>
|
||||
<metadata name="toolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>462, 17</value>
|
||||
</metadata>
|
||||
<data name="btRef.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFKSURBVDhPtZMxSwNRDMfvu9SC4ODW0q1+G8GhIIp2qINL
|
||||
ERGk0IK4ugkiKjq0q4KDRZw8QfHQoUhxExShsb+YXE+9K3TwB+Hx8vJPcnnvgizkF+aO/bZNh4DSckMK
|
||||
ZsWVHRXB7OKurhb6l/ChJ8XVlrR7b3IWveqKFdYPpN4OJV/Zy07Awcx8XYWN7rNa+TCU8lEkm1d9OXn6
|
||||
lNzSaXoCF2/sd3TFphdasn0ZaYK5475s3bxLrno+PgHtJ6Hl5t2HirGpWlf9JhuBk4H5ISsdkIC2qYw4
|
||||
v3Ydx8SoZ0JM+g0OMlOBSlSkMh14MGuywx/gRMyU+V7Mr8thNswITDYCJ5URMm2mzvTpAEveTnaCYdsk
|
||||
4L5JwP37W2he3GaLgQNa5qXx4qiOIcRo//7xRQaDMQn8jQNv3/8D/gmw0HQ0Yoht471j7v8gCL4AjZn0
|
||||
BRhVTtsAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="dsMSSQL.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bs.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>122, 17</value>
|
||||
</metadata>
|
||||
<metadata name="ta.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>186, 17</value>
|
||||
</metadata>
|
||||
<metadata name="tam.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>248, 17</value>
|
||||
</metadata>
|
||||
<metadata name="bn.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>321, 17</value>
|
||||
</metadata>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="bindingNavigatorAddNewItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
|
||||
pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
|
||||
Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
|
||||
/5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
|
||||
zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
|
||||
IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
|
||||
rkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorDeleteItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
|
||||
DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
|
||||
rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
|
||||
i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
|
||||
86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
|
||||
QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
|
||||
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMoveFirstItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
|
||||
wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
|
||||
v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
|
||||
UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
|
||||
Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
|
||||
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMovePreviousItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
|
||||
5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
|
||||
Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
|
||||
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMoveNextItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
|
||||
n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
|
||||
N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
|
||||
oAc0QjgAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="bindingNavigatorMoveLastItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
|
||||
h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
|
||||
twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
|
||||
kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
|
||||
WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
|
||||
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="usersBindingNavigatorSaveItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
|
||||
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="btDevel.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
|
||||
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
|
||||
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
|
||||
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
|
||||
VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
|
||||
c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
|
||||
Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
|
||||
mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
|
||||
kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
|
||||
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="cm1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>387, 17</value>
|
||||
</metadata>
|
||||
<metadata name="toolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>462, 17</value>
|
||||
</metadata>
|
||||
<data name="btRef.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFKSURBVDhPtZMxSwNRDMfvu9SC4ODW0q1+G8GhIIp2qINL
|
||||
ERGk0IK4ugkiKjq0q4KDRZw8QfHQoUhxExShsb+YXE+9K3TwB+Hx8vJPcnnvgizkF+aO/bZNh4DSckMK
|
||||
ZsWVHRXB7OKurhb6l/ChJ8XVlrR7b3IWveqKFdYPpN4OJV/Zy07Awcx8XYWN7rNa+TCU8lEkm1d9OXn6
|
||||
lNzSaXoCF2/sd3TFphdasn0ZaYK5475s3bxLrno+PgHtJ6Hl5t2HirGpWlf9JhuBk4H5ISsdkIC2qYw4
|
||||
v3Ydx8SoZ0JM+g0OMlOBSlSkMh14MGuywx/gRMyU+V7Mr8thNswITDYCJ5URMm2mzvTpAEveTnaCYdsk
|
||||
4L5JwP37W2he3GaLgQNa5qXx4qiOIcRo//7xRQaDMQn8jQNv3/8D/gmw0HQ0Yoht471j7v8gCL4AjZn0
|
||||
BRhVTtsAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
</root>
|
||||
199
Project/fMain.Designer.cs
generated
199
Project/fMain.Designer.cs
generated
@@ -33,12 +33,8 @@
|
||||
this.tmDisplay = new System.Windows.Forms.Timer(this.components);
|
||||
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
||||
this.bw = new System.ComponentModel.BackgroundWorker();
|
||||
this.cmVision = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.cmTab = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.saveImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.clearShapeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.clerROIToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.debugToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.testToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.sbBWRun = new System.Windows.Forms.ToolStripStatusLabel();
|
||||
this.sbBCD = new System.Windows.Forms.ToolStripStatusLabel();
|
||||
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
||||
@@ -58,7 +54,6 @@
|
||||
this.myAccouserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.aDSUserListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.customerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.lineCodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.staffGridToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mailFormToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
@@ -74,6 +69,8 @@
|
||||
this.dataFOLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.dataMoldEOLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.dataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.라인코드관리ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.personalInventoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.nRPurchaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.windowsMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
@@ -91,10 +88,17 @@
|
||||
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
|
||||
this.cmVision.SuspendLayout();
|
||||
this.tabControl1 = new System.Windows.Forms.TabControl();
|
||||
this.tabPage1 = new System.Windows.Forms.TabPage();
|
||||
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
|
||||
this.cmTab.SuspendLayout();
|
||||
this.statusStrip1.SuspendLayout();
|
||||
this.menuStrip1.SuspendLayout();
|
||||
this.toolStrip.SuspendLayout();
|
||||
this.tabControl1.SuspendLayout();
|
||||
this.toolStripContainer1.ContentPanel.SuspendLayout();
|
||||
this.toolStripContainer1.LeftToolStripPanel.SuspendLayout();
|
||||
this.toolStripContainer1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// tmDisplay
|
||||
@@ -108,46 +112,18 @@
|
||||
this.bw.WorkerSupportsCancellation = true;
|
||||
this.bw.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bw_DoWork);
|
||||
//
|
||||
// cmVision
|
||||
// cmTab
|
||||
//
|
||||
this.cmVision.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.saveImageToolStripMenuItem,
|
||||
this.clearShapeToolStripMenuItem,
|
||||
this.clerROIToolStripMenuItem,
|
||||
this.debugToolStripMenuItem,
|
||||
this.testToolStripMenuItem});
|
||||
this.cmVision.Name = "cmVision";
|
||||
this.cmVision.Size = new System.Drawing.Size(139, 114);
|
||||
this.cmTab.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.saveImageToolStripMenuItem});
|
||||
this.cmTab.Name = "cmVision";
|
||||
this.cmTab.Size = new System.Drawing.Size(99, 26);
|
||||
//
|
||||
// saveImageToolStripMenuItem
|
||||
//
|
||||
this.saveImageToolStripMenuItem.Name = "saveImageToolStripMenuItem";
|
||||
this.saveImageToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
|
||||
this.saveImageToolStripMenuItem.Text = "Save Image";
|
||||
//
|
||||
// clearShapeToolStripMenuItem
|
||||
//
|
||||
this.clearShapeToolStripMenuItem.Name = "clearShapeToolStripMenuItem";
|
||||
this.clearShapeToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
|
||||
this.clearShapeToolStripMenuItem.Text = "Clear Shape";
|
||||
//
|
||||
// clerROIToolStripMenuItem
|
||||
//
|
||||
this.clerROIToolStripMenuItem.Name = "clerROIToolStripMenuItem";
|
||||
this.clerROIToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
|
||||
this.clerROIToolStripMenuItem.Text = "Cler ROI";
|
||||
//
|
||||
// debugToolStripMenuItem
|
||||
//
|
||||
this.debugToolStripMenuItem.Name = "debugToolStripMenuItem";
|
||||
this.debugToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
|
||||
this.debugToolStripMenuItem.Text = "Debug";
|
||||
//
|
||||
// testToolStripMenuItem
|
||||
//
|
||||
this.testToolStripMenuItem.Name = "testToolStripMenuItem";
|
||||
this.testToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
|
||||
this.testToolStripMenuItem.Text = "Test";
|
||||
this.saveImageToolStripMenuItem.Size = new System.Drawing.Size(98, 22);
|
||||
this.saveImageToolStripMenuItem.Text = "닫기";
|
||||
//
|
||||
// sbBWRun
|
||||
//
|
||||
@@ -168,9 +144,9 @@
|
||||
this.sbRedis,
|
||||
this.sbBCD,
|
||||
this.sbLogin});
|
||||
this.statusStrip1.Location = new System.Drawing.Point(1, 644);
|
||||
this.statusStrip1.Location = new System.Drawing.Point(1, 622);
|
||||
this.statusStrip1.Name = "statusStrip1";
|
||||
this.statusStrip1.Size = new System.Drawing.Size(1035, 22);
|
||||
this.statusStrip1.Size = new System.Drawing.Size(1034, 22);
|
||||
this.statusStrip1.TabIndex = 30;
|
||||
this.statusStrip1.Text = "statusStrip1";
|
||||
//
|
||||
@@ -218,7 +194,7 @@
|
||||
this.menuStrip1.Location = new System.Drawing.Point(1, 1);
|
||||
this.menuStrip1.MdiWindowListItem = this.windowsMenu;
|
||||
this.menuStrip1.Name = "menuStrip1";
|
||||
this.menuStrip1.Size = new System.Drawing.Size(1035, 27);
|
||||
this.menuStrip1.Size = new System.Drawing.Size(1034, 27);
|
||||
this.menuStrip1.TabIndex = 29;
|
||||
this.menuStrip1.Text = "menuStrip1";
|
||||
//
|
||||
@@ -253,7 +229,6 @@
|
||||
this.codesToolStripMenuItem,
|
||||
this.userInfoToolStripMenuItem,
|
||||
this.customerToolStripMenuItem,
|
||||
this.lineCodeToolStripMenuItem,
|
||||
this.toolStripMenuItem1,
|
||||
this.staffGridToolStripMenuItem,
|
||||
this.mailFormToolStripMenuItem});
|
||||
@@ -264,14 +239,14 @@
|
||||
// itemsToolStripMenuItem
|
||||
//
|
||||
this.itemsToolStripMenuItem.Name = "itemsToolStripMenuItem";
|
||||
this.itemsToolStripMenuItem.Size = new System.Drawing.Size(156, 24);
|
||||
this.itemsToolStripMenuItem.Size = new System.Drawing.Size(139, 24);
|
||||
this.itemsToolStripMenuItem.Text = "품목";
|
||||
this.itemsToolStripMenuItem.Click += new System.EventHandler(this.itemsToolStripMenuItem_Click);
|
||||
//
|
||||
// codesToolStripMenuItem
|
||||
//
|
||||
this.codesToolStripMenuItem.Name = "codesToolStripMenuItem";
|
||||
this.codesToolStripMenuItem.Size = new System.Drawing.Size(156, 24);
|
||||
this.codesToolStripMenuItem.Size = new System.Drawing.Size(139, 24);
|
||||
this.codesToolStripMenuItem.Text = "공용코드";
|
||||
this.codesToolStripMenuItem.Click += new System.EventHandler(this.codesToolStripMenuItem_Click);
|
||||
//
|
||||
@@ -282,9 +257,8 @@
|
||||
this.myAccouserToolStripMenuItem,
|
||||
this.aDSUserListToolStripMenuItem});
|
||||
this.userInfoToolStripMenuItem.Name = "userInfoToolStripMenuItem";
|
||||
this.userInfoToolStripMenuItem.Size = new System.Drawing.Size(156, 24);
|
||||
this.userInfoToolStripMenuItem.Size = new System.Drawing.Size(139, 24);
|
||||
this.userInfoToolStripMenuItem.Text = "사용자";
|
||||
this.userInfoToolStripMenuItem.Click += new System.EventHandler(this.userInfoToolStripMenuItem_Click);
|
||||
//
|
||||
// userAccountToolStripMenuItem
|
||||
//
|
||||
@@ -311,27 +285,20 @@
|
||||
// customerToolStripMenuItem
|
||||
//
|
||||
this.customerToolStripMenuItem.Name = "customerToolStripMenuItem";
|
||||
this.customerToolStripMenuItem.Size = new System.Drawing.Size(156, 24);
|
||||
this.customerToolStripMenuItem.Size = new System.Drawing.Size(139, 24);
|
||||
this.customerToolStripMenuItem.Text = "업체정보";
|
||||
this.customerToolStripMenuItem.Click += new System.EventHandler(this.customerToolStripMenuItem_Click);
|
||||
//
|
||||
// lineCodeToolStripMenuItem
|
||||
//
|
||||
this.lineCodeToolStripMenuItem.Name = "lineCodeToolStripMenuItem";
|
||||
this.lineCodeToolStripMenuItem.Size = new System.Drawing.Size(156, 24);
|
||||
this.lineCodeToolStripMenuItem.Text = "라인코드";
|
||||
this.lineCodeToolStripMenuItem.Click += new System.EventHandler(this.lineCodeToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripMenuItem1
|
||||
//
|
||||
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
|
||||
this.toolStripMenuItem1.Size = new System.Drawing.Size(153, 6);
|
||||
this.toolStripMenuItem1.Size = new System.Drawing.Size(136, 6);
|
||||
//
|
||||
// staffGridToolStripMenuItem
|
||||
//
|
||||
this.staffGridToolStripMenuItem.ForeColor = System.Drawing.Color.HotPink;
|
||||
this.staffGridToolStripMenuItem.Name = "staffGridToolStripMenuItem";
|
||||
this.staffGridToolStripMenuItem.Size = new System.Drawing.Size(156, 24);
|
||||
this.staffGridToolStripMenuItem.Size = new System.Drawing.Size(139, 24);
|
||||
this.staffGridToolStripMenuItem.Text = "Staff Grid";
|
||||
this.staffGridToolStripMenuItem.Click += new System.EventHandler(this.staffGridToolStripMenuItem_Click);
|
||||
//
|
||||
@@ -339,7 +306,7 @@
|
||||
//
|
||||
this.mailFormToolStripMenuItem.ForeColor = System.Drawing.Color.HotPink;
|
||||
this.mailFormToolStripMenuItem.Name = "mailFormToolStripMenuItem";
|
||||
this.mailFormToolStripMenuItem.Size = new System.Drawing.Size(156, 24);
|
||||
this.mailFormToolStripMenuItem.Size = new System.Drawing.Size(139, 24);
|
||||
this.mailFormToolStripMenuItem.Text = "메일 양식";
|
||||
this.mailFormToolStripMenuItem.Click += new System.EventHandler(this.mailFormToolStripMenuItem_Click);
|
||||
//
|
||||
@@ -416,33 +383,46 @@
|
||||
this.equipmentToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.dataFOLToolStripMenuItem,
|
||||
this.dataMoldEOLToolStripMenuItem,
|
||||
this.dataToolStripMenuItem});
|
||||
this.dataToolStripMenuItem,
|
||||
this.toolStripMenuItem2,
|
||||
this.라인코드관리ToolStripMenuItem});
|
||||
this.equipmentToolStripMenuItem.Name = "equipmentToolStripMenuItem";
|
||||
this.equipmentToolStripMenuItem.Size = new System.Drawing.Size(154, 24);
|
||||
this.equipmentToolStripMenuItem.Text = "장비 목록";
|
||||
this.equipmentToolStripMenuItem.Click += new System.EventHandler(this.equipmentToolStripMenuItem_Click);
|
||||
//
|
||||
// dataFOLToolStripMenuItem
|
||||
//
|
||||
this.dataFOLToolStripMenuItem.Name = "dataFOLToolStripMenuItem";
|
||||
this.dataFOLToolStripMenuItem.Size = new System.Drawing.Size(154, 24);
|
||||
this.dataFOLToolStripMenuItem.Size = new System.Drawing.Size(162, 24);
|
||||
this.dataFOLToolStripMenuItem.Text = "FOL";
|
||||
this.dataFOLToolStripMenuItem.Click += new System.EventHandler(this.dataFOLToolStripMenuItem_Click);
|
||||
//
|
||||
// dataMoldEOLToolStripMenuItem
|
||||
//
|
||||
this.dataMoldEOLToolStripMenuItem.Name = "dataMoldEOLToolStripMenuItem";
|
||||
this.dataMoldEOLToolStripMenuItem.Size = new System.Drawing.Size(154, 24);
|
||||
this.dataMoldEOLToolStripMenuItem.Size = new System.Drawing.Size(162, 24);
|
||||
this.dataMoldEOLToolStripMenuItem.Text = "MOLD & EOL";
|
||||
this.dataMoldEOLToolStripMenuItem.Click += new System.EventHandler(this.dataMoldEOLToolStripMenuItem_Click);
|
||||
//
|
||||
// dataToolStripMenuItem
|
||||
//
|
||||
this.dataToolStripMenuItem.Name = "dataToolStripMenuItem";
|
||||
this.dataToolStripMenuItem.Size = new System.Drawing.Size(154, 24);
|
||||
this.dataToolStripMenuItem.Size = new System.Drawing.Size(162, 24);
|
||||
this.dataToolStripMenuItem.Text = "BUMP";
|
||||
this.dataToolStripMenuItem.Click += new System.EventHandler(this.dataToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripMenuItem2
|
||||
//
|
||||
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
|
||||
this.toolStripMenuItem2.Size = new System.Drawing.Size(159, 6);
|
||||
//
|
||||
// 라인코드관리ToolStripMenuItem
|
||||
//
|
||||
this.라인코드관리ToolStripMenuItem.Name = "라인코드관리ToolStripMenuItem";
|
||||
this.라인코드관리ToolStripMenuItem.Size = new System.Drawing.Size(162, 24);
|
||||
this.라인코드관리ToolStripMenuItem.Text = "라인코드관리";
|
||||
this.라인코드관리ToolStripMenuItem.Click += new System.EventHandler(this.라인코드관리ToolStripMenuItem_Click);
|
||||
//
|
||||
// personalInventoryToolStripMenuItem
|
||||
//
|
||||
this.personalInventoryToolStripMenuItem.ForeColor = System.Drawing.Color.HotPink;
|
||||
@@ -540,15 +520,16 @@
|
||||
//
|
||||
// toolStrip
|
||||
//
|
||||
this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
|
||||
this.toolStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
|
||||
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.toolStripButton1,
|
||||
this.toolStripButton2,
|
||||
this.toolStripButton3,
|
||||
this.toolStripButton4});
|
||||
this.toolStrip.Location = new System.Drawing.Point(1, 28);
|
||||
this.toolStrip.Location = new System.Drawing.Point(0, 4);
|
||||
this.toolStrip.Name = "toolStrip";
|
||||
this.toolStrip.Size = new System.Drawing.Size(1035, 27);
|
||||
this.toolStrip.Size = new System.Drawing.Size(25, 119);
|
||||
this.toolStrip.TabIndex = 32;
|
||||
this.toolStrip.Text = "ToolStrip";
|
||||
//
|
||||
@@ -558,7 +539,7 @@
|
||||
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
|
||||
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButton1.Name = "toolStripButton1";
|
||||
this.toolStripButton1.Size = new System.Drawing.Size(24, 24);
|
||||
this.toolStripButton1.Size = new System.Drawing.Size(23, 24);
|
||||
this.toolStripButton1.Text = "메일전송";
|
||||
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
|
||||
//
|
||||
@@ -568,7 +549,7 @@
|
||||
this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
|
||||
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButton2.Name = "toolStripButton2";
|
||||
this.toolStripButton2.Size = new System.Drawing.Size(24, 24);
|
||||
this.toolStripButton2.Size = new System.Drawing.Size(23, 24);
|
||||
this.toolStripButton2.Text = "구매신청";
|
||||
this.toolStripButton2.ToolTipText = "파트구매신청서 작성";
|
||||
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
|
||||
@@ -579,7 +560,7 @@
|
||||
this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
|
||||
this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButton3.Name = "toolStripButton3";
|
||||
this.toolStripButton3.Size = new System.Drawing.Size(24, 24);
|
||||
this.toolStripButton3.Size = new System.Drawing.Size(23, 24);
|
||||
this.toolStripButton3.Text = "toolStripButton3";
|
||||
this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
|
||||
//
|
||||
@@ -589,21 +570,67 @@
|
||||
this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
|
||||
this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButton4.Name = "toolStripButton4";
|
||||
this.toolStripButton4.Size = new System.Drawing.Size(24, 24);
|
||||
this.toolStripButton4.Size = new System.Drawing.Size(23, 24);
|
||||
this.toolStripButton4.Text = "toolStripButton4";
|
||||
this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
|
||||
//
|
||||
// tabControl1
|
||||
//
|
||||
this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
|
||||
this.tabControl1.Controls.Add(this.tabPage1);
|
||||
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tabControl1.Font = new System.Drawing.Font("맑은 고딕", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
this.tabControl1.Location = new System.Drawing.Point(0, 0);
|
||||
this.tabControl1.Multiline = true;
|
||||
this.tabControl1.Name = "tabControl1";
|
||||
this.tabControl1.SelectedIndex = 0;
|
||||
this.tabControl1.ShowToolTips = true;
|
||||
this.tabControl1.Size = new System.Drawing.Size(1009, 594);
|
||||
this.tabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
|
||||
this.tabControl1.TabIndex = 34;
|
||||
this.tabControl1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.tabControl1_DrawItem);
|
||||
//
|
||||
// tabPage1
|
||||
//
|
||||
this.tabPage1.BackColor = System.Drawing.Color.LightGray;
|
||||
this.tabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.tabPage1.ContextMenuStrip = this.cmTab;
|
||||
this.tabPage1.Location = new System.Drawing.Point(4, 29);
|
||||
this.tabPage1.Name = "tabPage1";
|
||||
this.tabPage1.Padding = new System.Windows.Forms.Padding(10);
|
||||
this.tabPage1.Size = new System.Drawing.Size(1001, 561);
|
||||
this.tabPage1.TabIndex = 0;
|
||||
this.tabPage1.Text = "요약";
|
||||
//
|
||||
// toolStripContainer1
|
||||
//
|
||||
//
|
||||
// toolStripContainer1.ContentPanel
|
||||
//
|
||||
this.toolStripContainer1.ContentPanel.Controls.Add(this.tabControl1);
|
||||
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(1009, 594);
|
||||
this.toolStripContainer1.ContentPanel.Load += new System.EventHandler(this.toolStripContainer1_ContentPanel_Load);
|
||||
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
//
|
||||
// toolStripContainer1.LeftToolStripPanel
|
||||
//
|
||||
this.toolStripContainer1.LeftToolStripPanel.Controls.Add(this.toolStrip);
|
||||
this.toolStripContainer1.Location = new System.Drawing.Point(1, 28);
|
||||
this.toolStripContainer1.Name = "toolStripContainer1";
|
||||
this.toolStripContainer1.Size = new System.Drawing.Size(1034, 594);
|
||||
this.toolStripContainer1.TabIndex = 35;
|
||||
this.toolStripContainer1.Text = "toolStripContainer1";
|
||||
//
|
||||
// fMain
|
||||
//
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.ClientSize = new System.Drawing.Size(1037, 669);
|
||||
this.Controls.Add(this.toolStrip);
|
||||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
|
||||
this.ClientSize = new System.Drawing.Size(1036, 647);
|
||||
this.Controls.Add(this.toolStripContainer1);
|
||||
this.Controls.Add(this.menuStrip1);
|
||||
this.Controls.Add(this.statusStrip1);
|
||||
this.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.IsMdiContainer = true;
|
||||
this.KeyPreview = true;
|
||||
this.MainMenuStrip = this.menuStrip1;
|
||||
this.Name = "fMain";
|
||||
@@ -611,13 +638,19 @@
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = " ";
|
||||
this.Load += new System.EventHandler(this.@__Load);
|
||||
this.cmVision.ResumeLayout(false);
|
||||
this.cmTab.ResumeLayout(false);
|
||||
this.statusStrip1.ResumeLayout(false);
|
||||
this.statusStrip1.PerformLayout();
|
||||
this.menuStrip1.ResumeLayout(false);
|
||||
this.menuStrip1.PerformLayout();
|
||||
this.toolStrip.ResumeLayout(false);
|
||||
this.toolStrip.PerformLayout();
|
||||
this.tabControl1.ResumeLayout(false);
|
||||
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
|
||||
this.toolStripContainer1.LeftToolStripPanel.ResumeLayout(false);
|
||||
this.toolStripContainer1.LeftToolStripPanel.PerformLayout();
|
||||
this.toolStripContainer1.ResumeLayout(false);
|
||||
this.toolStripContainer1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
@@ -628,12 +661,8 @@
|
||||
private System.Windows.Forms.Timer tmDisplay;
|
||||
private System.Windows.Forms.ToolTip toolTip1;
|
||||
private System.ComponentModel.BackgroundWorker bw;
|
||||
private System.Windows.Forms.ContextMenuStrip cmVision;
|
||||
private System.Windows.Forms.ContextMenuStrip cmTab;
|
||||
private System.Windows.Forms.ToolStripMenuItem saveImageToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem clearShapeToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem clerROIToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem testToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem debugToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripStatusLabel sbBWRun;
|
||||
private System.Windows.Forms.ToolStripStatusLabel sbBCD;
|
||||
private System.Windows.Forms.StatusStrip statusStrip1;
|
||||
@@ -653,7 +682,6 @@
|
||||
private System.Windows.Forms.ToolStripMenuItem todoListToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem managementToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem equipmentToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem lineCodeToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem staffGridToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem dataToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem dataFOLToolStripMenuItem;
|
||||
@@ -686,6 +714,11 @@
|
||||
private System.Windows.Forms.ToolStripButton toolStripButton4;
|
||||
private System.Windows.Forms.ToolStripMenuItem customerImportToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
|
||||
private System.Windows.Forms.TabControl tabControl1;
|
||||
private System.Windows.Forms.TabPage tabPage1;
|
||||
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
|
||||
private System.Windows.Forms.ToolStripMenuItem 라인코드관리ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripContainer toolStripContainer1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
283
Project/fMain.cs
283
Project/fMain.cs
@@ -18,7 +18,7 @@ namespace Project
|
||||
InitializeComponent();
|
||||
this.KeyDown += (s1, e1) =>
|
||||
{
|
||||
if (e1.KeyCode == Keys.F12) btSetting.PerformClick();
|
||||
if (e1.KeyCode == Keys.F12) btSetting.PerformClick();
|
||||
else if (e1.KeyCode == Keys.F11) btLog.PerformClick();
|
||||
else if (e1.KeyCode == Keys.F1 && e1.Control && e1.Shift)
|
||||
{
|
||||
@@ -73,15 +73,15 @@ namespace Project
|
||||
else this.WindowState = FormWindowState.Normal;
|
||||
this.Show();
|
||||
Application.DoEvents();
|
||||
|
||||
|
||||
Pub.barcode = new Device.Barcode();
|
||||
if (!Pub.setting.Barcode.isEmpty()) Pub.barcode.PortName = Pub.setting.Barcode;
|
||||
Pub.barcode.ReceiveData += barcode_ReceiveData;
|
||||
|
||||
UpdateControls();
|
||||
|
||||
|
||||
tmDisplay.Start(); //display timer
|
||||
|
||||
|
||||
|
||||
Dialog.fLogin flogIn = new Dialog.fLogin();
|
||||
if (flogIn.ShowDialog() != System.Windows.Forms.DialogResult.OK)
|
||||
@@ -91,13 +91,13 @@ namespace Project
|
||||
|
||||
sbLogin.Text = string.Format("[{0}] ({1}-{2} T:{3})",
|
||||
FCOMMON.info.Login.title,
|
||||
FCOMMON.info.Login.no,
|
||||
FCOMMON.info.Login.no,
|
||||
FCOMMON.info.Login.nameK,
|
||||
FCOMMON.info.Login.tel);
|
||||
Pub.log.Add("Program Start");
|
||||
|
||||
bw.RunWorkerAsync(); //background worker
|
||||
if(Pub.setting.startForm == eFormList.NR구매관리)
|
||||
if (Pub.setting.startForm == eFormList.NR구매관리)
|
||||
{
|
||||
menu_nrpurchase();
|
||||
}
|
||||
@@ -112,13 +112,13 @@ namespace Project
|
||||
void barcode_ReceiveData(object sender, Device.Barcode.ReceiveDataEventArgs e)
|
||||
{
|
||||
#region "invoke"
|
||||
if(this.InvokeRequired)
|
||||
if (this.InvokeRequired)
|
||||
{
|
||||
this.BeginInvoke( new EventHandler<Device.Barcode.ReceiveDataEventArgs>(barcode_ReceiveData),new object[]{sender,e} );
|
||||
this.BeginInvoke(new EventHandler<Device.Barcode.ReceiveDataEventArgs>(barcode_ReceiveData), new object[] { sender, e });
|
||||
return;
|
||||
}
|
||||
#endregion
|
||||
Pub.log.Add("BCD", "Rx:"+e.StrValue);
|
||||
Pub.log.Add("BCD", "Rx:" + e.StrValue);
|
||||
}
|
||||
|
||||
void Menu_Log()
|
||||
@@ -145,7 +145,7 @@ namespace Project
|
||||
|
||||
void UpdateControls()
|
||||
{
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -161,14 +161,6 @@ namespace Project
|
||||
Menu_Log();
|
||||
}
|
||||
|
||||
private void historyToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void modelToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
}
|
||||
|
||||
private void listToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
@@ -176,15 +168,17 @@ namespace Project
|
||||
}
|
||||
void menu_work_report()
|
||||
{
|
||||
var f = new FPJ0000.fJobReport();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
string formkey = "WORKBOOK";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FPJ0000.fJobReport());
|
||||
|
||||
}
|
||||
void menu_projecT_list()
|
||||
{
|
||||
var f = new FPJ0000.fProjectList();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
string formkey = "PROJECTS";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FPJ0000.fProjectList());
|
||||
|
||||
}
|
||||
|
||||
private void helpToolStripButton_Click(object sender, EventArgs e)
|
||||
@@ -194,95 +188,43 @@ namespace Project
|
||||
|
||||
private void itemsToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FCM0000.fItems();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
string formkey = "ITEMS";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FCM0000.fItems());
|
||||
}
|
||||
|
||||
private void inventoryToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void lineCodesToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void equipmentToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void importEquipmentToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void equipmentReportToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void lineCodeToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
_Management.fLineCode f = new _Management.fLineCode();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
}
|
||||
|
||||
private void staffGridToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
_Info.fInfo_Staff f = new _Info.fInfo_Staff();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
string formkey = "STAFFGRID";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new _Info.fInfo_Staff());
|
||||
|
||||
}
|
||||
|
||||
private void dataToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
FEQ0000.fEquipment f = new FEQ0000.fEquipment(FEQ0000.fEquipment.eTabletype.BUMP);
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
}
|
||||
string formkey = "EQBUMP";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FEQ0000.fEquipment(FEQ0000.fEquipment.eTabletype.BUMP));
|
||||
|
||||
private void importToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void reportToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void dataMoldEOLToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
FEQ0000.fEquipment f = new FEQ0000.fEquipment(FEQ0000.fEquipment.eTabletype.MOLD);
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
string formkey = "EQMOLD";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FEQ0000.fEquipment(FEQ0000.fEquipment.eTabletype.MOLD));
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void dataFOLToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FEQ0000.fEquipment(FEQ0000.fEquipment.eTabletype.FOL);
|
||||
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
}
|
||||
|
||||
private void userToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void codeToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void userInfoToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
string formkey = "EQFOL";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FEQ0000.fEquipment(FEQ0000.fEquipment.eTabletype.FOL));
|
||||
|
||||
}
|
||||
|
||||
@@ -316,82 +258,76 @@ namespace Project
|
||||
|
||||
private void personalInventoryToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FCM0000.fInventory();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
Menu_Inventory();
|
||||
}
|
||||
|
||||
void Menu_Inventory()
|
||||
{
|
||||
string formkey = "INVENTORY";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FCM0000.fInventory());
|
||||
}
|
||||
|
||||
private void minutesToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FBS0000.fMinutes();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
|
||||
string formkey = "MINUTES";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FBS0000.fMinutes());
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void holidayToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FBS0000.fHolyday();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
string formkey = "HOLYDAY";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FBS0000.fHolyday());
|
||||
|
||||
}
|
||||
|
||||
private void codesToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FCM0000.fCode();
|
||||
//f.MdiParent = this;
|
||||
f.Show();
|
||||
f.ShowDialog();
|
||||
}
|
||||
|
||||
private void mailFormToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
FCM0000.fMailform f = new FCM0000.fMailform();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
string formkey = "MAILFORM";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FCM0000.fMailform());
|
||||
|
||||
}
|
||||
|
||||
private void requestITemToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FCM0000.fRequestItem();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
string formkey = "ITEMREQUEST";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FCM0000.fRequestItem());
|
||||
|
||||
}
|
||||
|
||||
private void toolStripButton1_Click(object sender, EventArgs e)
|
||||
{
|
||||
if(FCOMMON.info.Login.level < 10)
|
||||
if (FCOMMON.info.Login.level < 10)
|
||||
{
|
||||
FCOMMON.Util.MsgE("테스트 기능이므로 개발자만 사용가능 합니다.");
|
||||
return;
|
||||
}
|
||||
FCM0000.fSendMail f = new FCM0000.fSendMail();
|
||||
f.MdiParent = this;
|
||||
//f.MdiParent = this;
|
||||
f.Show();
|
||||
}
|
||||
|
||||
FEQ0000.fPurchase fpurchase = null;
|
||||
void menu_nrpurchase()
|
||||
{
|
||||
if(Pub.setting.DupWindow)
|
||||
{
|
||||
var f = new FEQ0000.fPurchase();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
}
|
||||
else
|
||||
{
|
||||
if(fpurchase == null || fpurchase.IsDisposed)
|
||||
{
|
||||
fpurchase = new FEQ0000.fPurchase();
|
||||
fpurchase.MdiParent = this;
|
||||
fpurchase.Show();
|
||||
}
|
||||
else
|
||||
{
|
||||
if (fpurchase.WindowState == FormWindowState.Minimized) fpurchase.WindowState = FormWindowState.Normal;
|
||||
fpurchase.Show();
|
||||
fpurchase.Activate();
|
||||
}
|
||||
}
|
||||
|
||||
string formkey = "PUCHASE";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FEQ0000.fPurchase());
|
||||
|
||||
|
||||
}
|
||||
private void nRPurchaseToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
@@ -401,22 +337,23 @@ namespace Project
|
||||
private void purchaseImportToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FEQ0000.fPurchase_Import();
|
||||
f.MdiParent = this;
|
||||
// f.MdiParent = this;
|
||||
f.Show();
|
||||
}
|
||||
|
||||
private void purchaseDataConvertToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FEQ0000.fPurchase_Data();
|
||||
f.MdiParent = this;
|
||||
// f.MdiParent = this;
|
||||
f.Show();
|
||||
}
|
||||
|
||||
private void customerToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
string formkey = "CUSTOMS";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new FCM0000.fCustoms());
|
||||
var f = new FCM0000.fCustoms();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
}
|
||||
|
||||
private void toolStripButton2_Click(object sender, EventArgs e)
|
||||
@@ -432,21 +369,25 @@ namespace Project
|
||||
|
||||
private void aDSUserListToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
if(FCOMMON.info.Login.level < 10)
|
||||
|
||||
|
||||
if (FCOMMON.info.Login.level < 10)
|
||||
{
|
||||
FCOMMON.Util.MsgE("개발자 이상 사용가능한 메뉴 입니다.");
|
||||
return;
|
||||
}
|
||||
var f = new _Common.fADSUserList();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
|
||||
string formkey = "ADUSERS";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new _Common.fADSUserList());
|
||||
}
|
||||
|
||||
private void myAccouserToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new _Common.fUserList();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
string formkey = "USERS";
|
||||
if (!ShowForm(formkey))
|
||||
AddForm(formkey, new _Common.fUserList());
|
||||
|
||||
}
|
||||
|
||||
private void toolStripButton3_Click(object sender, EventArgs e)
|
||||
@@ -461,26 +402,62 @@ namespace Project
|
||||
|
||||
private void toolStripButton4_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FCM0000.fInventory();
|
||||
f.MdiParent = this;
|
||||
f.Show();
|
||||
Menu_Inventory();
|
||||
}
|
||||
|
||||
private void customerImportToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var f = new FCM0000.Customer_Import();
|
||||
f.MdiParent = this;
|
||||
// f.MdiParent = this;
|
||||
f.Show();
|
||||
}
|
||||
|
||||
private void staffToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
Boolean ShowForm(string key)
|
||||
{
|
||||
int tabIndex = this.tabControl1.TabPages.IndexOfKey(key);
|
||||
if (tabIndex != -1)
|
||||
{
|
||||
this.tabControl1.SelectedIndex = tabIndex;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
void AddForm(string key, Form f)
|
||||
{
|
||||
f.TopLevel = false;
|
||||
f.Dock = DockStyle.Fill;
|
||||
f.ControlBox = false;
|
||||
f.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
||||
this.tabControl1.TabPages.Add(key, f.Text);
|
||||
this.tabControl1.TabPages[this.tabControl1.TabPages.Count - 1].BorderStyle = BorderStyle.Fixed3D;
|
||||
this.tabControl1.TabPages[this.tabControl1.TabPages.Count - 1].Padding = new Padding(10, 10, 10, 10);
|
||||
this.tabControl1.TabPages[this.tabControl1.TabPages.Count - 1].BackColor = Color.LightGray;
|
||||
this.tabControl1.TabPages[this.tabControl1.TabPages.Count - 1].ContextMenuStrip = this.cmTab;
|
||||
this.tabControl1.TabPages[this.tabControl1.TabPages.Count - 1].Controls.Add(f);
|
||||
this.tabControl1.SelectedIndex = this.tabControl1.TabPages.Count - 1;
|
||||
f.Show();
|
||||
}
|
||||
|
||||
private void 라인코드관리ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
_Management.fLineCode f = new _Management.fLineCode();
|
||||
f.ShowDialog();
|
||||
}
|
||||
|
||||
private void toolStripContainer1_ContentPanel_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void 업체담당자ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
private void tabControl1_DrawItem(object sender, DrawItemEventArgs e)
|
||||
{
|
||||
|
||||
//e.Graphics.FillRectangle(Brushes.Red, e.Bounds);
|
||||
e.DrawBackground();
|
||||
e.DrawFocusRectangle();
|
||||
e.Graphics.DrawString(this.tabControl1.TabPages[e.Index].Text, e.Font, new SolidBrush(e.ForeColor), e.Bounds);
|
||||
var tabpos = this.PointToClient(new Point(tabControl1.Left, tabControl1.Top));
|
||||
e.Graphics.DrawString("X", this.Font, Brushes.Black, tabControl1.Right - 50, tabControl1.Top);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
<metadata name="bw.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>306, 17</value>
|
||||
</metadata>
|
||||
<metadata name="cmVision.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<metadata name="cmTab.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>374, 17</value>
|
||||
</metadata>
|
||||
<metadata name="statusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
@@ -154,15 +154,15 @@
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIbSURBVDhPY0iaU3o9aWbN/7Ty3ovplX3WDFAwrd5VbGad
|
||||
+65pVS4WcH61y64pFW4qYAUwkDS/8lLi3KqLqZW9UUkVfXcYGP4zTq10sZ9S4f52U4//r+nl7u8nV7q5
|
||||
Tq9zerWzJ+bPnAaXx3NKrXih2lFBanXjn5QZRW9KOrP/zFxZ8n/X7vr/y+bk/euo9/t3clnhv6/nWv/v
|
||||
n576c3atx9FVoaHMUG0IEN/Y9bll7az/s04u/d+3f9b/5q0T/pevaf2fvrDyf/yc8v95i6v/N6yq/V87
|
||||
t+BX0cSUY3Gzy2OgWiEgraXzSu386f93PdiLgbff3f1/1ZWN/+eeXvZ/wsG5/ws29vyNmVfxFqoVApKa
|
||||
mxcn9fb/hmnq2TcTKw3Cc04t+5+8oOoCVCsEJLW2pqbXN/yBKYqbU4aVBmGQK+Lnla+GaoWAlI4OmbSq
|
||||
vv/b7+0maED99sk/4uaUtkC1IkBkfu/fhcfXgRXh80LxmvaPsXPKUqHaECCxvvtd17r5cIXY8KZb2/9H
|
||||
z6v8kTCzwhSqDQGSmjtOhXW1/E2alP8dhqPnV/yInl8Jx4lTsn8mL6jph2pBBWkVfRmplX1boVzSQWpZ
|
||||
r25aefv7lKp+A6gQ6SCjduLhjOqWf5k1k/6nVfaj4Iyaif/j8yb+zqmbgt0LIBBd1fJjzrpD/9Pz+79D
|
||||
heAAnxwcZAJNj8+d8Du7dnIPVAgOUOUYGAA7lKKQuxE4AgAAAABJRU5ErkJggg==
|
||||
+65pVS4WcH61y64pFW4qYAUwkDS/8lLi3KqLqZW9UUkVfXcYGP4zTq10sZ9S4f52U73Pr+nl7u8nV7q5
|
||||
Tq9zerWzPubPnAaXx3NKrXih2lFBanX9n5QZRW9K6rP/zFxZ8n/X7vr/03vz/tXX+/3bNb3w39dzrf/3
|
||||
T0n9ObvW4+iq0FBmqDYEiG/s+tyydtb/WSeX/u/bP+t/89YJ/8vXtP5PX1j5P35O+f+8xdX/G1bV/q+d
|
||||
W/CraGLKsbjZ5TFQrRCQ1tJ5pXb+9P+7HuzFwNvv7v6/6srG/3NPL/s/4eDc/4kbe/7GzKt4C9UKAUnN
|
||||
zYvje/t/wzT17JuJlQbhOaeW/U9eUHUBqhUCklpbU9Pr6//AFMXNKcNKgzDIFfHzyldDtUJASkeHTFpV
|
||||
3//t93YTNKB+++QfcXNKW6BaEcAroffvwuPrwIrweaF4TfvH2DllqVBtCJBY3/2ua918uEJseNOt7f+j
|
||||
51X+SJhZYQrVhgBJzR2n3Lta/ib153+H4ej5FT+i51fCceKUrJ/JC2r6oVpQQVpFX0ZqZd9WKJd0kFrW
|
||||
q5tW3v4+parfACpEOsionXg4o7r+X2bNpP9plf0oOKNm4v/4+Im/c+qmYPcCCERX1f+Ys+7Q//T8/u9Q
|
||||
ITjAJwcHmUDT4+Mn/M6undwDFYIDVDkGBgAM56GbRv3GrQAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="toolStripButton3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
||||
Reference in New Issue
Block a user