-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm7.cs
40 lines (34 loc) · 987 Bytes
/
Form7.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 Group_11___COSC_31112
{
public partial class Form7 : Form
{
public Form7()
{
InitializeComponent();
}
private void Form7_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'projectDatabaseDataSet1.Account' table. You can move, or remove it, as needed.
this.accountTableAdapter.Fill(this.projectDatabaseDataSet1.Account);
this.reportViewer1.RefreshReport();
}
private void panel2_Paint(object sender, PaintEventArgs e)
{
}
private void btnBack_Click(object sender, EventArgs e)
{
this.Hide();
Home h1 = new Home();
h1.Show();
}
}
}