31 lines
		
	
	
		
			961 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			961 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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 FPJ0000
 | |
| {
 | |
|     public partial class rPartList : Form
 | |
|     {
 | |
|         int idx;
 | |
|         public rPartList(int idx_)
 | |
|         {
 | |
|             InitializeComponent();
 | |
|             this.idx = idx_;
 | |
|         }
 | |
| 
 | |
|         private void fRPartList_Load(object sender, EventArgs e)
 | |
|         {
 | |
|             // TODO: 이 코드는 데이터를 'dsPRJ.ProjectsPart' 테이블에 로드합니다. 필요한 경우 이 코드를 이동하거나 제거할 수 있습니다.
 | |
|             this.ta.Fill(this.dsPRJ.ProjectsPart, this.idx);
 | |
|             this.reportViewer1.SetDisplayMode(Microsoft.Reporting.WinForms.DisplayMode.PrintLayout);
 | |
|             this.reportViewer1.ZoomMode = Microsoft.Reporting.WinForms.ZoomMode.PageWidth;
 | |
|             this.reportViewer1.RefreshReport();
 | |
|         }
 | |
|     }
 | |
| }
 | 
