 6d1c7d8fe3
			
		
	
	6d1c7d8fe3
	
	
	
		
			
			Yes24 - 바뀐 예스 양식에 따라 수정 =====* unimarc *===== - 목록등록 - 머리글에 맞춰 숫자 입력기능 추가 - 목록집계 - 거래처명 엔터시 검색 추가 추가정보 표출창에 거래처 정보가 출력됨 - 송금내역 - 엑셀 반출작업 완료 - 입고작업 - gird3 isbn찍으면 책검색이 되어 자동으로 해당 isbn 책이 출력됨
		
			
				
	
	
		
			23 lines
		
	
	
		
			524 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			524 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Threading.Tasks;
 | |
| using System.Windows.Forms;
 | |
| 
 | |
| namespace Test_Project
 | |
| {
 | |
|     static class Program
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// 해당 애플리케이션의 주 진입점입니다.
 | |
|         /// </summary>
 | |
|         [STAThread]
 | |
|         static void Main()
 | |
|         {
 | |
|             Application.EnableVisualStyles();
 | |
|             Application.SetCompatibleTextRenderingDefault(false);
 | |
|             Application.Run(new Form1());
 | |
|         }
 | |
|     }
 | |
| }
 |