=====* UniMarc [0.0140] 버전 업데이트 내용 *=====
** ERP 작업 전면 중단 (마크우선) ** 1. 마크작성 - 칸채우기 버그 수정 완료 (현재 본 회사와 테스트 계정에만 잠금 해제)
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -83,8 +83,19 @@ namespace ExcelTest
|
||||
|
||||
compidx = UniMarc.Properties.Settings.Default.compidx;
|
||||
|
||||
if (compidx != "3")
|
||||
this.tabControl1.TabPages.Remove(this.tabPage2);
|
||||
switch (compidx)
|
||||
{
|
||||
case "1":
|
||||
break;
|
||||
case "3":
|
||||
break;
|
||||
default:
|
||||
this.tabControl1.TabPages.Remove(this.tabPage2);
|
||||
break;
|
||||
}
|
||||
|
||||
// if (compidx != "3" || compidx != "1")
|
||||
// this.tabControl1.TabPages.Remove(this.tabPage2);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -1628,6 +1639,8 @@ namespace ExcelTest
|
||||
{
|
||||
case 0: // 칸채우기 -> 메모장
|
||||
InputMemo(SplitLine);
|
||||
st.Color_change("▼", richTextBox1);
|
||||
st.Color_change("▲", richTextBox1);
|
||||
break;
|
||||
case 1: // 메모장 -> 칸채우기
|
||||
TextReset();
|
||||
@@ -2229,26 +2242,6 @@ namespace ExcelTest
|
||||
/// <param name="SplitTag">메모장에 있는 값<br>[0]:태그번호, [1]:지시기호, [2]:마크내용</br></param>
|
||||
private void InputMemo(string[] SplitTag)
|
||||
{
|
||||
dataGridView1.Rows.Clear();
|
||||
|
||||
#region BackUp1
|
||||
/*
|
||||
string[] Tag =
|
||||
{
|
||||
"020", "041", "056", "082", "100",
|
||||
"110", "111", "245", "246", "250",
|
||||
"260", "300", "440", "490", "500",
|
||||
"504", "505", "507", "520", "521",
|
||||
"525", "536", "546", "586", "650",
|
||||
"653", "700", "710", "900", "910",
|
||||
"940"
|
||||
};
|
||||
|
||||
List<string> RemainTag = new List<string>();
|
||||
List<string> BlankTag = MakeMarcLine(); // 칸채우기 변환
|
||||
*/
|
||||
#endregion
|
||||
|
||||
string[] Tag =
|
||||
{
|
||||
"020", "041", "056", "082", "100",
|
||||
@@ -2262,11 +2255,20 @@ namespace ExcelTest
|
||||
|
||||
List<string> RemainTag = new List<string>();
|
||||
List<string> BlankTag = MakeMarcLine(); // 칸채우기의 값들이 여기로 저장이 되어 들어옴
|
||||
List<string> TextTag = SplitTag.ToList();
|
||||
|
||||
foreach (string Content in SplitTag)
|
||||
List<string> AllTag = new List<string>();
|
||||
AllTag.AddRange(BlankTag);
|
||||
AllTag.AddRange(TextTag);
|
||||
|
||||
foreach (string Content in AllTag)
|
||||
{
|
||||
if (Content == "")
|
||||
continue;
|
||||
|
||||
if (Content.Length < 3)
|
||||
continue;
|
||||
|
||||
string tagNum = Content.Substring(0, 3);
|
||||
bool isCopy = false;
|
||||
|
||||
@@ -2280,8 +2282,8 @@ namespace ExcelTest
|
||||
|
||||
if (isCopy)
|
||||
{
|
||||
|
||||
string AddText = "";
|
||||
|
||||
foreach (string Blank in BlankTag)
|
||||
{
|
||||
if (Blank.Length < 4)
|
||||
@@ -2314,93 +2316,8 @@ namespace ExcelTest
|
||||
}
|
||||
|
||||
RemainTag = RemainTag.Distinct().ToList();
|
||||
|
||||
richTextBox1.Text = string.Join("\n", RemainTag);
|
||||
|
||||
#region BackUp1
|
||||
/*
|
||||
foreach (string Content in SplitTag)
|
||||
{
|
||||
if (Content == "")
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
string txt = Content.Substring(0, 3);
|
||||
bool isCopy = false;
|
||||
|
||||
foreach (string TagNum in Tag)
|
||||
{
|
||||
if (txt.Contains(TagNum))
|
||||
{
|
||||
isCopy = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!isCopy)
|
||||
RemainTag.Add(Content + "▲");
|
||||
else
|
||||
continue;
|
||||
}
|
||||
|
||||
BlankTag.AddRange(RemainTag);
|
||||
string text = "";
|
||||
|
||||
for (int b = 0; b < BlankTag.Count; b++)
|
||||
{
|
||||
string[] tmp = BlankTag[b].Split('\n');
|
||||
if (tmp.Length < 1) continue;
|
||||
for (int a = 0; a < tmp.Length; a++)
|
||||
{
|
||||
BlankTag.Add(tmp[a]);
|
||||
}
|
||||
BlankTag.RemoveAt(b);
|
||||
|
||||
if (BlankTag[b] != "")
|
||||
{
|
||||
if (BlankTag[b].IndexOf("\n") > -1)
|
||||
text += BlankTag[b];
|
||||
else
|
||||
text += BlankTag[b] + "\n";
|
||||
}
|
||||
}
|
||||
|
||||
string[] aryText = text.Split('\n');
|
||||
|
||||
int count = 0;
|
||||
|
||||
foreach (string Data in aryText)
|
||||
{
|
||||
string[] grid = { count.ToString(), "", "", "" };
|
||||
string[] dataAry = Data.Split('\t');
|
||||
|
||||
if (dataAry.Length < 2) continue;
|
||||
|
||||
int AryCount = 1;
|
||||
foreach (string tt in dataAry)
|
||||
{
|
||||
if (grid.Length <= AryCount) break;
|
||||
grid[AryCount] = tt;
|
||||
AryCount++;
|
||||
}
|
||||
dataGridView1.Rows.Add(grid);
|
||||
count++;
|
||||
}
|
||||
|
||||
richTextBox1.Text = "";
|
||||
|
||||
dataGridView1.Sort(dataGridView1.Columns["tag"], System.ComponentModel.ListSortDirection.Ascending);
|
||||
|
||||
for (int a = 0; a < dataGridView1.Rows.Count; a++)
|
||||
{
|
||||
string tag = dataGridView1.Rows[a].Cells["tag"].Value.ToString();
|
||||
string jisi = dataGridView1.Rows[a].Cells["jisi"].Value.ToString();
|
||||
string marc = dataGridView1.Rows[a].Cells["MarcValue"].Value.ToString();
|
||||
|
||||
richTextBox1.Text += string.Format("{0}\t{1}\t{2}\n", tag, jisi, marc);
|
||||
}
|
||||
*/
|
||||
#endregion
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
188
unimarc/unimarc/마크/Marc.designer.cs
generated
188
unimarc/unimarc/마크/Marc.designer.cs
generated
@@ -28,19 +28,19 @@
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Marc));
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
||||
this.etc1 = new System.Windows.Forms.RichTextBox();
|
||||
this.etc2 = new System.Windows.Forms.RichTextBox();
|
||||
@@ -247,11 +247,6 @@
|
||||
this.text500a = new System.Windows.Forms.TextBox();
|
||||
this.text507a = new System.Windows.Forms.TextBox();
|
||||
this.text250a = new System.Windows.Forms.TextBox();
|
||||
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
||||
this.turnNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.tag = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.jisi = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.MarcValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.lbl_SaveData = new System.Windows.Forms.Label();
|
||||
this.lbl_ISBN = new System.Windows.Forms.Label();
|
||||
this.lbl_BookList = new System.Windows.Forms.Label();
|
||||
@@ -279,7 +274,6 @@
|
||||
this.groupBox3.SuspendLayout();
|
||||
this.groupBox2.SuspendLayout();
|
||||
this.groupBox1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// richTextBox1
|
||||
@@ -558,14 +552,14 @@
|
||||
this.List_Book.AllowUserToResizeColumns = false;
|
||||
this.List_Book.BackgroundColor = System.Drawing.Color.Gray;
|
||||
this.List_Book.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle37.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle37.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle37.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle37.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle37.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle37.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.List_Book.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle37;
|
||||
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.List_Book.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
|
||||
this.List_Book.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.list_idx,
|
||||
this.ISBN13,
|
||||
@@ -587,14 +581,14 @@
|
||||
this.List_Book.MultiSelect = false;
|
||||
this.List_Book.Name = "List_Book";
|
||||
this.List_Book.ReadOnly = true;
|
||||
dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle40.BackColor = System.Drawing.SystemColors.ControlDark;
|
||||
dataGridViewCellStyle40.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle40.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle40.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle40.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle40.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.List_Book.RowHeadersDefaultCellStyle = dataGridViewCellStyle40;
|
||||
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.ControlDark;
|
||||
dataGridViewCellStyle4.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.List_Book.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
|
||||
this.List_Book.RowTemplate.Height = 23;
|
||||
this.List_Book.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
||||
this.List_Book.Size = new System.Drawing.Size(543, 822);
|
||||
@@ -693,9 +687,9 @@
|
||||
//
|
||||
// grade
|
||||
//
|
||||
dataGridViewCellStyle38.Format = "N0";
|
||||
dataGridViewCellStyle38.NullValue = null;
|
||||
this.grade.DefaultCellStyle = dataGridViewCellStyle38;
|
||||
dataGridViewCellStyle2.Format = "N0";
|
||||
dataGridViewCellStyle2.NullValue = null;
|
||||
this.grade.DefaultCellStyle = dataGridViewCellStyle2;
|
||||
this.grade.HeaderText = "등급";
|
||||
this.grade.Name = "grade";
|
||||
this.grade.ReadOnly = true;
|
||||
@@ -704,8 +698,8 @@
|
||||
//
|
||||
// colCheck
|
||||
//
|
||||
dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
this.colCheck.DefaultCellStyle = dataGridViewCellStyle39;
|
||||
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
this.colCheck.DefaultCellStyle = dataGridViewCellStyle3;
|
||||
this.colCheck.HeaderText = "V";
|
||||
this.colCheck.Name = "colCheck";
|
||||
this.colCheck.ReadOnly = true;
|
||||
@@ -1108,8 +1102,8 @@
|
||||
this.GridView020.Name = "GridView020";
|
||||
this.GridView020.RowHeadersVisible = false;
|
||||
this.GridView020.RowHeadersWidth = 30;
|
||||
dataGridViewCellStyle41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView020.RowsDefaultCellStyle = dataGridViewCellStyle41;
|
||||
dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView020.RowsDefaultCellStyle = dataGridViewCellStyle5;
|
||||
this.GridView020.RowTemplate.Height = 23;
|
||||
this.GridView020.Size = new System.Drawing.Size(408, 80);
|
||||
this.GridView020.TabIndex = 244;
|
||||
@@ -1176,8 +1170,8 @@
|
||||
this.GridView505.Name = "GridView505";
|
||||
this.GridView505.RowHeadersVisible = false;
|
||||
this.GridView505.RowHeadersWidth = 30;
|
||||
dataGridViewCellStyle42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView505.RowsDefaultCellStyle = dataGridViewCellStyle42;
|
||||
dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView505.RowsDefaultCellStyle = dataGridViewCellStyle6;
|
||||
this.GridView505.RowTemplate.Height = 23;
|
||||
this.GridView505.Size = new System.Drawing.Size(401, 71);
|
||||
this.GridView505.TabIndex = 246;
|
||||
@@ -1309,14 +1303,14 @@
|
||||
this.GridView246.AllowDrop = true;
|
||||
this.GridView246.AllowUserToAddRows = false;
|
||||
this.GridView246.AllowUserToResizeRows = false;
|
||||
dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle43.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle43.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle43.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle43.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle43.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle43.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.GridView246.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle43;
|
||||
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle7.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.GridView246.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
|
||||
this.GridView246.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.Text246Jisi,
|
||||
this.Text246i,
|
||||
@@ -1328,8 +1322,8 @@
|
||||
this.GridView246.Name = "GridView246";
|
||||
this.GridView246.RowHeadersVisible = false;
|
||||
this.GridView246.RowHeadersWidth = 30;
|
||||
dataGridViewCellStyle44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView246.RowsDefaultCellStyle = dataGridViewCellStyle44;
|
||||
dataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView246.RowsDefaultCellStyle = dataGridViewCellStyle8;
|
||||
this.GridView246.RowTemplate.Height = 23;
|
||||
this.GridView246.Size = new System.Drawing.Size(493, 138);
|
||||
this.GridView246.TabIndex = 250;
|
||||
@@ -1479,14 +1473,14 @@
|
||||
this.GridView440.AllowDrop = true;
|
||||
this.GridView440.AllowUserToAddRows = false;
|
||||
this.GridView440.AllowUserToResizeRows = false;
|
||||
dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle45.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle45.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle45.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle45.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle45.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle45.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.GridView440.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle45;
|
||||
dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle9.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle9.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle9.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle9.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle9.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.GridView440.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle9;
|
||||
this.GridView440.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.GridView440.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.text440a,
|
||||
@@ -1499,8 +1493,8 @@
|
||||
this.GridView440.Name = "GridView440";
|
||||
this.GridView440.RowHeadersVisible = false;
|
||||
this.GridView440.RowHeadersWidth = 30;
|
||||
dataGridViewCellStyle46.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView440.RowsDefaultCellStyle = dataGridViewCellStyle46;
|
||||
dataGridViewCellStyle10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView440.RowsDefaultCellStyle = dataGridViewCellStyle10;
|
||||
this.GridView440.RowTemplate.Height = 23;
|
||||
this.GridView440.Size = new System.Drawing.Size(597, 71);
|
||||
this.GridView440.TabIndex = 245;
|
||||
@@ -1599,14 +1593,14 @@
|
||||
this.GridView490.AllowDrop = true;
|
||||
this.GridView490.AllowUserToAddRows = false;
|
||||
this.GridView490.AllowUserToResizeRows = false;
|
||||
dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle47.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle47.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle47.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle47.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle47.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle47.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.GridView490.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle47;
|
||||
dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle11.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.GridView490.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle11;
|
||||
this.GridView490.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.GridView490.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.text490a,
|
||||
@@ -1615,8 +1609,8 @@
|
||||
this.GridView490.Name = "GridView490";
|
||||
this.GridView490.RowHeadersVisible = false;
|
||||
this.GridView490.RowHeadersWidth = 30;
|
||||
dataGridViewCellStyle48.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView490.RowsDefaultCellStyle = dataGridViewCellStyle48;
|
||||
dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
||||
this.GridView490.RowsDefaultCellStyle = dataGridViewCellStyle12;
|
||||
this.GridView490.RowTemplate.Height = 23;
|
||||
this.GridView490.Size = new System.Drawing.Size(321, 71);
|
||||
this.GridView490.TabIndex = 247;
|
||||
@@ -2480,47 +2474,6 @@
|
||||
this.text250a.Size = new System.Drawing.Size(346, 21);
|
||||
this.text250a.TabIndex = 281;
|
||||
//
|
||||
// dataGridView1
|
||||
//
|
||||
this.dataGridView1.AllowUserToAddRows = false;
|
||||
this.dataGridView1.AllowUserToDeleteRows = false;
|
||||
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.turnNum,
|
||||
this.tag,
|
||||
this.jisi,
|
||||
this.MarcValue});
|
||||
this.dataGridView1.Location = new System.Drawing.Point(1512, 731);
|
||||
this.dataGridView1.Name = "dataGridView1";
|
||||
this.dataGridView1.RowHeadersVisible = false;
|
||||
this.dataGridView1.RowTemplate.Height = 23;
|
||||
this.dataGridView1.Size = new System.Drawing.Size(287, 168);
|
||||
this.dataGridView1.TabIndex = 317;
|
||||
//
|
||||
// turnNum
|
||||
//
|
||||
this.turnNum.HeaderText = "순서";
|
||||
this.turnNum.Name = "turnNum";
|
||||
this.turnNum.Width = 60;
|
||||
//
|
||||
// tag
|
||||
//
|
||||
this.tag.HeaderText = "tag";
|
||||
this.tag.Name = "tag";
|
||||
this.tag.Width = 60;
|
||||
//
|
||||
// jisi
|
||||
//
|
||||
this.jisi.HeaderText = "jisi";
|
||||
this.jisi.Name = "jisi";
|
||||
this.jisi.Width = 40;
|
||||
//
|
||||
// MarcValue
|
||||
//
|
||||
this.MarcValue.HeaderText = "marc";
|
||||
this.MarcValue.Name = "MarcValue";
|
||||
this.MarcValue.Width = 150;
|
||||
//
|
||||
// lbl_SaveData
|
||||
//
|
||||
this.lbl_SaveData.AutoSize = true;
|
||||
@@ -2566,7 +2519,6 @@
|
||||
this.Controls.Add(this.lbl_ISBN);
|
||||
this.Controls.Add(this.lbl_SaveData);
|
||||
this.Controls.Add(this.checkBox1);
|
||||
this.Controls.Add(this.dataGridView1);
|
||||
this.Controls.Add(this.tabControl1);
|
||||
this.Controls.Add(this.btn_FillBlank);
|
||||
this.Controls.Add(this.panel1);
|
||||
@@ -2641,7 +2593,6 @@
|
||||
this.groupBox2.PerformLayout();
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.groupBox1.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
@@ -2837,7 +2788,6 @@
|
||||
private System.Windows.Forms.TextBox text500a;
|
||||
private System.Windows.Forms.TextBox text507a;
|
||||
private System.Windows.Forms.TextBox text250a;
|
||||
private System.Windows.Forms.DataGridView dataGridView1;
|
||||
private System.Windows.Forms.DataGridViewCheckBoxColumn CheckSet;
|
||||
private System.Windows.Forms.DataGridViewTextBoxColumn Text020a;
|
||||
private System.Windows.Forms.DataGridViewTextBoxColumn Text020g;
|
||||
@@ -2846,10 +2796,6 @@
|
||||
private System.Windows.Forms.Button Btn_interlock;
|
||||
private System.Windows.Forms.Label lbl_ISBN;
|
||||
private System.Windows.Forms.Button btn_FilterReturn;
|
||||
private System.Windows.Forms.DataGridViewTextBoxColumn turnNum;
|
||||
private System.Windows.Forms.DataGridViewTextBoxColumn tag;
|
||||
private System.Windows.Forms.DataGridViewTextBoxColumn jisi;
|
||||
private System.Windows.Forms.DataGridViewTextBoxColumn MarcValue;
|
||||
private System.Windows.Forms.DataGridViewTextBoxColumn list_idx;
|
||||
private System.Windows.Forms.DataGridViewTextBoxColumn ISBN13;
|
||||
private System.Windows.Forms.DataGridViewTextBoxColumn num;
|
||||
|
||||
@@ -267,28 +267,4 @@
|
||||
<metadata name="text490v.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="turnNum.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="tag.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="jisi.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="MarcValue.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="turnNum.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="tag.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="jisi.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="MarcValue.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
</root>
|
||||
Reference in New Issue
Block a user