31 lines
646 B
C#
31 lines
646 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.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace FPJ0000.EBoard
|
|
{
|
|
public partial class fEBoardReport : Form
|
|
{
|
|
public fEBoardReport()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void fEBoardReport_Load(object sender, EventArgs e)
|
|
{
|
|
//기본엑셀파일을 가져온다
|
|
}
|
|
|
|
private void btRefresh_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|