initial commit
This commit is contained in:
26
Project/_Management/rpt_equipment.cs
Normal file
26
Project/_Management/rpt_equipment.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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 Project._Management
|
||||
{
|
||||
public partial class rpt_equipment : Form
|
||||
{
|
||||
public rpt_equipment()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void rpt_equipment_Load(object sender, EventArgs e)
|
||||
{
|
||||
// TODO: 이 코드는 데이터를 'dsMSSQL.vEquStock' 테이블에 로드합니다. 필요한 경우 이 코드를 이동하거나 제거할 수 있습니다.
|
||||
this.vEquStockTableAdapter.Fill(this.dsMSSQL.vEquStock);
|
||||
this.reportViewer1.RefreshReport();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user