Files
Groupware/Project/_Management/rpt_equipment.cs
2018-07-23 17:35:21 +09:00

27 lines
748 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 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();
}
}
}