=====* UniMarc [0.0115] 버전관리 시작 *=====
1. 소장자료검색에서 더블클릭시 마크편집폼으로 전환 2. 마크편집에서 [저장시각, 작성자, 비고, 등급] 추가로 표시 3. 복본조사 - 특수문자, 괄호안의 문자 제거기능 추가 4. 저자기호 일괄전환 추가 5. 마크목록생성 - 수량분리기능 추가.
This commit is contained in:
		| @@ -46,6 +46,11 @@ namespace WindowsFormsApp1.Mac | ||||
|             sub.TopMost = true; | ||||
|             sub.Show(); | ||||
|         } | ||||
|  | ||||
|         private void Btn_Search_Click(object sender, EventArgs e) | ||||
|         { | ||||
|             throw new NotImplementedException(); | ||||
|         } | ||||
|         #region SelectList_Sub | ||||
|         public void mk_Grid(string ListName, string date) | ||||
|         { | ||||
| @@ -144,12 +149,14 @@ namespace WindowsFormsApp1.Mac | ||||
|             int row = e.RowIndex; | ||||
|             int col = e.ColumnIndex; | ||||
|  | ||||
|             string idx = dataGridView1.Rows[row].Cells["idx"].Value.ToString(); | ||||
|  | ||||
|             if (dataGridView1.Rows[row].Cells[col].ReadOnly) { | ||||
|                 string[] Marc = { | ||||
|                     dataGridView1.Rows[row].Cells["marc"].Value.ToString(), | ||||
|                     dataGridView1.Rows[row].Cells["midx"].Value.ToString(), | ||||
|                     dataGridView1.Rows[row].Cells["num"].Value.ToString(), | ||||
|                     dataGridView1.Rows[row].Cells["idx"].Value.ToString(), | ||||
|                     idx, | ||||
|                     dataGridView1.Rows[row].Cells["ISBN"].Value.ToString() | ||||
|                 }; | ||||
|                 string[] symbol_Type = { | ||||
| @@ -159,7 +166,9 @@ namespace WindowsFormsApp1.Mac | ||||
|  | ||||
|                 Marc_Plan_Sub_MarcEdit me = new Marc_Plan_Sub_MarcEdit(this); | ||||
|                 me.row = row; | ||||
|                 me.Init(Marc, symbol_Type); | ||||
|                 me.UserName = main.botUserLabel.Text; | ||||
|                 me.Init(Marc); | ||||
|                 me.SetSymbolType(symbol_Type); | ||||
|                 me.Show(); | ||||
|             } | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 SeungHo Yang
					SeungHo Yang