1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| namespace HStation.WinFrmUI
| {
| public partial class test : DocumentPage
| {
| public test()
| {
| InitializeComponent();
| }
|
| private void simpleButton1_Click(object sender, EventArgs e)
| {
| SimulationWordReport word = new SimulationWordReport();
| word.Create("word.doc");
| }
| }
| }
|
|