 ed81f7d1d3
			
		
	
	ed81f7d1d3
	
	
	
		
			
			1. 소장자료검색에서 더블클릭시 마크편집폼으로 전환 2. 마크편집에서 [저장시각, 작성자, 비고, 등급] 추가로 표시 3. 복본조사 - 특수문자, 괄호안의 문자 제거기능 추가 4. 저자기호 일괄전환 추가 5. 마크목록생성 - 수량분리기능 추가.
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.ComponentModel;
 | |
| using System.Data;
 | |
| using System.Drawing;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| using System.Windows.Forms;
 | |
| 
 | |
| namespace UniMarc.마크
 | |
| {
 | |
|     public partial class Zoom_Picture : Form
 | |
|     {
 | |
|         public string url = "";
 | |
|         public string ISBN = "";
 | |
|         public Zoom_Picture()
 | |
|         {
 | |
|             InitializeComponent();
 | |
|         }
 | |
|         private void Zoom_Picture_Load(object sender, EventArgs e)
 | |
|         {
 | |
|             pictureBox1.ImageLocation = url;
 | |
| 
 | |
|             string PreViewURL =
 | |
|                 string.Format("http://preview.kyobobook.co.kr/preview.jsp?siteGb=INK&ejkGb=KOR&barcode={0}&loginYn=N&orderClick=JAW",
 | |
|                 ISBN);
 | |
| 
 | |
|             webBrowser1.Navigate(PreViewURL);
 | |
|         }
 | |
| 
 | |
|         private void Zoom_Picture_KeyDown(object sender, KeyEventArgs e)
 | |
|         {
 | |
|             if (e.KeyCode == Keys.Escape) { this.Close(); }
 | |
|         }
 | |
| 
 | |
|         private void btn_Close_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             this.Close();
 | |
|         }
 | |
| 
 | |
|         private void btn_Preview_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             // 1300, 750
 | |
|             this.Size = new Size(1300, 750);
 | |
| 
 | |
|             panel2.Visible = false;
 | |
|         }
 | |
| 
 | |
|         private void btn_Photo_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             this.Size = new Size(560, 750);
 | |
| 
 | |
|             panel2.Visible = true;
 | |
|         }
 | |
|     }
 | |
| } |