-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
198 lines (165 loc) · 5.65 KB
/
Form1.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
namespace cosmesticClinic
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void utToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
try
{
patientRegistration Registration = new patientRegistration();
Registration.ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show("Invalid " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnPatientBilling_Click(object sender, EventArgs e)
{
try
{
Billing billing = new Billing(0);
billing.ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show("Invalid " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnSearch_Click(object sender, EventArgs e)
{
try
{
patientSerach patientSerach = new patientSerach();
patientSerach.ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show("Invalid " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnBillReport_Click(object sender, EventArgs e)
{
try
{
report report = new report();
report.ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show("Invalid " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnAppointment_Click(object sender, EventArgs e)
{
try
{
Appointments appointments = new Appointments();
appointments.ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show("Invalid " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnReg_MouseHover(object sender, EventArgs e)
{
setTooltips(sender, "Register Patient");
}
private void btnSearch_MouseHover(object sender, EventArgs e)
{
setTooltips(sender, "Search Patient");
}
private void btnBillReport_MouseHover(object sender, EventArgs e)
{
setTooltips(sender, "Billing Report");
}
private void btnAppointment_MouseHover(object sender, EventArgs e)
{
setTooltips(sender, "Appointment");
}
private void btnPatientBilling_MouseHover(object sender, EventArgs e)
{
setTooltips(sender, "Patient Billing");
}
private void btnTreatmentMode_Click(object sender, EventArgs e)
{
try {
New_Treatment treat = new New_Treatment();
treat.ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show("Invalid " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnTreatmentMode_MouseHover(object sender, EventArgs e)
{
setTooltips(sender, "Add New Treatment ");
}
private void btnDoctors_Click(object sender, EventArgs e)
{
Doctors doc = new Doctors();
doc.ShowDialog();
}
private void btnDoctors_MouseHover(object sender, EventArgs e)
{
setTooltips(sender, "Doctor ");
}
void setTooltips(object btnSender, string tip)
{
ToolTip toolTip1 = new ToolTip();
toolTip1.AutoPopDelay = 5000;
toolTip1.InitialDelay = 100;
toolTip1.ReshowDelay = 500;
toolTip1.ShowAlways = true;
if (btnSender != null)
toolTip1.SetToolTip((Button)btnSender, tip);
}
private void label1_Click(object sender, EventArgs e)
{
}
private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
}
private void closeToolStripMenuItem_Click(object sender, EventArgs e)
{
DialogResult dr = new DialogResult();
dr = MessageBox.Show("Are Sure you want Exist", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (dr == DialogResult.Yes)
{
Application.Exit();
}
}
private void toolStripMenuItem1_Click(object sender, EventArgs e)
{
}
private void closeToolStripMenuItem1_Click(object sender, EventArgs e)
{
DialogResult dr = new DialogResult();
dr = MessageBox.Show("Are Sure you want Exist", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (dr == DialogResult.Yes)
{
Application.Exit();
}
}
private void maximizeToolStripMenuItem_Click(object sender, EventArgs e)
{
if (WindowState == FormWindowState.Normal)
WindowState = FormWindowState.Maximized;
else
WindowState = FormWindowState.Normal;
}
private void minimizeToolStripMenuItem_Click(object sender, EventArgs e)
{
WindowState = FormWindowState.Minimized;
}
}
}