파트리스트 가져오기 기능
파트리스트 구매등록 기능
This commit is contained in:
30
SubProject/FPJ0000/Project/rPartList.cs
Normal file
30
SubProject/FPJ0000/Project/rPartList.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user