-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfrmBusFeePaymentReport.cs
More file actions
420 lines (353 loc) · 17.9 KB
/
frmBusFeePaymentReport.cs
File metadata and controls
420 lines (353 loc) · 17.9 KB
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
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;
using System.Data.SqlClient;
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;
namespace College_Management_System
{
public partial class frmBusFeePaymentReport : Form
{
SqlDataReader rdr = null;
DataTable dtable = new DataTable();
SqlConnection con = null;
SqlDataAdapter adp;
DataSet ds = new DataSet();
SqlCommand cmd = null;
DataTable dt = new DataTable();
string cs = "Data Source=.\\SqlExpress; Integrated Security=True; AttachDbFilename=|DataDirectory|\\CMS_DB.mdf; User Instance=true;";
public frmBusFeePaymentReport()
{
InitializeComponent();
}
private void frmBusFeePaymentReport_Load(object sender, EventArgs e)
{
AutocompleteCourse();
AutocompleteScholarNo();
}
private void AutocompleteCourse()
{
try
{
string cs = "Data Source=.\\SqlExpress; Integrated Security=True; AttachDbFilename=|DataDirectory|\\CMS_DB.mdf; User Instance=true;";
SqlConnection CN = new SqlConnection(cs);
CN.Open();
adp = new SqlDataAdapter();
adp.SelectCommand = new SqlCommand("SELECT distinct RTRIM(Course) FROM BusFeePayment,Student,BusHolders where BusFeePayment.ScholarNo=Student.ScholarNo and BusHolders.ScholarNo=Student.ScholarNo", CN);
ds = new DataSet("ds");
adp.Fill(ds);
dtable = ds.Tables[0];
Course.Items.Clear();
foreach (DataRow drow in dtable.Rows)
{
Course.Items.Add(drow[0].ToString());
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void AutocompleteScholarNo()
{
try
{
string cs = "Data Source=.\\SqlExpress; Integrated Security=True; AttachDbFilename=|DataDirectory|\\CMS_DB.mdf; User Instance=true;";
SqlConnection CN = new SqlConnection(cs);
CN.Open();
adp = new SqlDataAdapter();
adp.SelectCommand = new SqlCommand("SELECT distinct RTRIM(ScholarNo) FROM BusFeePayment", CN);
ds = new DataSet("ds");
adp.Fill(ds);
dtable = ds.Tables[0];
ScholarNo.Items.Clear();
foreach (DataRow drow in dtable.Rows)
{
ScholarNo.Items.Add(drow[0].ToString());
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void tabControl1_Click(object sender, EventArgs e)
{
Course.Text = "";
Branch.Text = "";
Date_from.Text = System.DateTime.Today.ToString();
Date_to.Text = System.DateTime.Today.ToString();
crystalReportViewer1.ReportSource = null;
ScholarNo.Text = "";
crystalReportViewer2.ReportSource = null;
PaymentDateFrom.Text = System.DateTime.Today.ToString();
PaymentDateTo.Text = System.DateTime.Today.ToString();
crystalReportViewer3.ReportSource = null;
DateFrom.Text = System.DateTime.Today.ToString();
DateTo.Text = System.DateTime.Today.ToString();
crystalReportViewer4.ReportSource = null;
dateTimePicker1.Text = System.DateTime.Today.ToString();
dateTimePicker2.Text = System.DateTime.Today.ToString();
crystalReportViewer5.ReportSource = null;
}
private void button6_Click(object sender, EventArgs e)
{
Course.Text = "";
Branch.Text = "";
Date_from.Text = System.DateTime.Today.ToString();
Date_to.Text = System.DateTime.Today.ToString();
crystalReportViewer1.ReportSource = null;
Branch.Enabled = false;
}
private void button9_Click(object sender, EventArgs e)
{
ScholarNo.Text = "";
crystalReportViewer2.ReportSource = null;
}
private void button11_Click(object sender, EventArgs e)
{
PaymentDateFrom.Text = System.DateTime.Today.ToString();
PaymentDateTo.Text = System.DateTime.Today.ToString();
crystalReportViewer3.ReportSource = null;
}
private void button13_Click(object sender, EventArgs e)
{
DateFrom.Text = System.DateTime.Today.ToString();
DateTo.Text = System.DateTime.Today.ToString();
crystalReportViewer4.ReportSource = null;
}
private void button15_Click(object sender, EventArgs e)
{
dateTimePicker1.Text = System.DateTime.Today.ToString();
dateTimePicker2.Text = System.DateTime.Today.ToString();
crystalReportViewer5.ReportSource = null;
}
private void button5_Click(object sender, EventArgs e)
{
if (Course.Text == "")
{
MessageBox.Show("Please select course", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
Course.Focus();
return;
}
if (Branch.Text == "")
{
MessageBox.Show("Please select branch", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
Branch.Focus();
return;
}
try
{
Cursor = Cursors.WaitCursor;
timer1.Enabled = true;
rptBusFeePayment rpt = new rptBusFeePayment();
//The report you created.
SqlConnection myConnection = default(SqlConnection);
SqlCommand MyCommand = new SqlCommand();
SqlDataAdapter myDA = new SqlDataAdapter();
TransportationFacility_DBDataSet myDS = new TransportationFacility_DBDataSet();
//The DataSet you created.
myConnection = new SqlConnection("Data Source=.\\SqlExpress; Integrated Security=True; AttachDbFilename=|DataDirectory|\\CMS_DB.mdf; User Instance=true;");
MyCommand.Connection = myConnection;
MyCommand.CommandText = "select * from BusFeePayment,Student,Transportation,BusHolders where Student.scholarNo=BusHolders.ScholarNo and BusFeePayment.ScholarNo=Student.ScholarNo and Transportation.SourceLocation=BusHolders.SourceLocation and DateOfPayment between @date1 and @date2 and Course= '" + Course.Text + "'and branch='" + Branch.Text + "' order by DateOfPayment";
MyCommand.Parameters.Add("@date1", SqlDbType.DateTime, 30, "DateOfPayment").Value = Date_from.Value.Date;
MyCommand.Parameters.Add("@date2", SqlDbType.DateTime, 30, "DateOfPayment").Value = Date_to.Value.Date;
MyCommand.CommandType = CommandType.Text;
myDA.SelectCommand = MyCommand;
myDA.Fill(myDS, "BusFeePayment");
myDA.Fill(myDS, "Transportation");
myDA.Fill(myDS, "BusHolders");
myDA.Fill(myDS, "Student");
rpt.SetDataSource(myDS);
crystalReportViewer1.ReportSource = rpt;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void frmBusFeePaymentReport_FormClosing(object sender, FormClosingEventArgs e)
{
this.Hide();
frmMainMenu frm = new frmMainMenu();
frm.UserType.Text = label12.Text;
frm.User.Text = label13.Text;
frm.Show();
}
private void timer1_Tick(object sender, EventArgs e)
{
Cursor = Cursors.Default;
timer1.Enabled = false;
}
private void Course_SelectedIndexChanged(object sender, EventArgs e)
{
Branch.Items.Clear();
Branch.Text = "";
Branch.Enabled = true;
try
{
con = new SqlConnection(cs);
con.Open();
string ct = "select distinct RTRIM(branch) from BusFeePayment,BusHolders,Student where BusFeePayment.ScholarNo=Student.ScholarNo and BusHolders.ScholarNo=Student.ScholarNo and Student.course= '" + Course.Text + "'";
cmd = new SqlCommand(ct);
cmd.Connection = con;
rdr = cmd.ExecuteReader();
while (rdr.Read())
{
Branch.Items.Add(rdr[0]);
}
con.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void ScholarNo_SelectedIndexChanged(object sender, EventArgs e)
{
try
{
Cursor = Cursors.WaitCursor;
timer1.Enabled = true;
rptBusFeePayment rpt = new rptBusFeePayment();
//The report you created.
SqlConnection myConnection = default(SqlConnection);
SqlCommand MyCommand = new SqlCommand();
SqlDataAdapter myDA = new SqlDataAdapter();
TransportationFacility_DBDataSet myDS = new TransportationFacility_DBDataSet();
//The DataSet you created.
myConnection = new SqlConnection("Data Source=.\\SqlExpress; Integrated Security=True; AttachDbFilename=|DataDirectory|\\CMS_DB.mdf; User Instance=true;");
MyCommand.Connection = myConnection;
MyCommand.CommandText = "select * from BusFeePayment,Student,Transportation,BusHolders where Student.scholarNo=BusHolders.ScholarNo and BusFeePayment.ScholarNo=Student.ScholarNo and Transportation.SourceLocation=BusHolders.SourceLocation and Student.ScholarNo ='" + ScholarNo.Text + "' order by DateOfPayment";
MyCommand.Parameters.Add("@date1", SqlDbType.DateTime, 30, "DateOfPayment").Value = Date_from.Value.Date;
MyCommand.Parameters.Add("@date2", SqlDbType.DateTime, 30, "DateOfPayment").Value = Date_to.Value.Date;
MyCommand.CommandType = CommandType.Text;
myDA.SelectCommand = MyCommand;
myDA.Fill(myDS, "BusFeePayment");
myDA.Fill(myDS, "Transportation");
myDA.Fill(myDS, "BusHolders");
myDA.Fill(myDS, "Student");
rpt.SetDataSource(myDS);
crystalReportViewer2.ReportSource = rpt;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void button10_Click(object sender, EventArgs e)
{
try
{
Cursor = Cursors.WaitCursor;
timer1.Enabled = true;
rptBusFeePayment rpt = new rptBusFeePayment();
//The report you created.
SqlConnection myConnection = default(SqlConnection);
SqlCommand MyCommand = new SqlCommand();
SqlDataAdapter myDA = new SqlDataAdapter();
TransportationFacility_DBDataSet myDS = new TransportationFacility_DBDataSet();
//The DataSet you created.
myConnection = new SqlConnection("Data Source=.\\SqlExpress; Integrated Security=True; AttachDbFilename=|DataDirectory|\\CMS_DB.mdf; User Instance=true;");
MyCommand.Connection = myConnection;
MyCommand.CommandText = "select * from BusFeePayment,Student,Transportation,BusHolders where Student.scholarNo=BusHolders.ScholarNo and BusFeePayment.ScholarNo=Student.ScholarNo and Transportation.SourceLocation=BusHolders.SourceLocation and DateOfPayment between @date1 and @date2 order by DateOfPayment";
MyCommand.Parameters.Add("@date1", SqlDbType.DateTime, 30, "DateOfPayment").Value = PaymentDateFrom.Value.Date;
MyCommand.Parameters.Add("@date2", SqlDbType.DateTime, 30, "DateOfPayment").Value = PaymentDateTo.Value.Date;
MyCommand.CommandType = CommandType.Text;
myDA.SelectCommand = MyCommand;
myDA.Fill(myDS, "BusFeePayment");
myDA.Fill(myDS, "Transportation");
myDA.Fill(myDS, "BusHolders");
myDA.Fill(myDS, "Student");
rpt.SetDataSource(myDS);
crystalReportViewer3.ReportSource = rpt;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void button12_Click(object sender, EventArgs e)
{
try
{
Cursor = Cursors.WaitCursor;
timer1.Enabled = true;
rptBusFeePayment rpt = new rptBusFeePayment();
//The report you created.
SqlConnection myConnection = default(SqlConnection);
SqlCommand MyCommand = new SqlCommand();
SqlDataAdapter myDA = new SqlDataAdapter();
TransportationFacility_DBDataSet myDS = new TransportationFacility_DBDataSet();
//The DataSet you created.
myConnection = new SqlConnection("Data Source=.\\SqlExpress; Integrated Security=True; AttachDbFilename=|DataDirectory|\\CMS_DB.mdf; User Instance=true;");
MyCommand.Connection = myConnection;
MyCommand.CommandText = "select * from BusFeePayment,Student,Transportation,BusHolders where Student.scholarNo=BusHolders.ScholarNo and BusFeePayment.ScholarNo=Student.ScholarNo and Transportation.SourceLocation=BusHolders.SourceLocation and DateOfPayment between @date1 and @date2 and DueFees > 0 order by DateOfPayment";
MyCommand.Parameters.Add("@date1", SqlDbType.DateTime, 30, "DateOfPayment").Value = DateFrom.Value.Date;
MyCommand.Parameters.Add("@date2", SqlDbType.DateTime, 30, "DateOfPayment").Value = DateTo.Value.Date;
MyCommand.CommandType = CommandType.Text;
myDA.SelectCommand = MyCommand;
myDA.Fill(myDS, "BusFeePayment");
myDA.Fill(myDS, "Transportation");
myDA.Fill(myDS, "BusHolders");
myDA.Fill(myDS, "Student");
rpt.SetDataSource(myDS);
crystalReportViewer4.ReportSource = rpt;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void button14_Click(object sender, EventArgs e)
{
try
{
Cursor = Cursors.WaitCursor;
timer1.Enabled = true;
rptBusFeePayment rpt = new rptBusFeePayment();
//The report you created.
SqlConnection myConnection = default(SqlConnection);
SqlCommand MyCommand = new SqlCommand();
SqlDataAdapter myDA = new SqlDataAdapter();
TransportationFacility_DBDataSet myDS = new TransportationFacility_DBDataSet();
//The DataSet you created.
myConnection = new SqlConnection("Data Source=.\\SqlExpress; Integrated Security=True; AttachDbFilename=|DataDirectory|\\CMS_DB.mdf; User Instance=true;");
MyCommand.Connection = myConnection;
MyCommand.CommandText = "select * from BusFeePayment,Student,Transportation,BusHolders where Student.scholarNo=BusHolders.ScholarNo and BusFeePayment.ScholarNo=Student.ScholarNo and Transportation.SourceLocation=BusHolders.SourceLocation and DateOfPayment between @date1 and @date2 and fine > 0 order by DateOfPayment";
MyCommand.Parameters.Add("@date1", SqlDbType.DateTime, 30, "DateOfPayment").Value = dateTimePicker1.Value.Date;
MyCommand.Parameters.Add("@date2", SqlDbType.DateTime, 30, "DateOfPayment").Value = dateTimePicker2.Value.Date;
MyCommand.CommandType = CommandType.Text;
myDA.SelectCommand = MyCommand;
myDA.Fill(myDS, "BusFeePayment");
myDA.Fill(myDS, "Transportation");
myDA.Fill(myDS, "BusHolders");
myDA.Fill(myDS, "Student");
rpt.SetDataSource(myDS);
crystalReportViewer5.ReportSource = rpt;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void frmBusFeePaymentReport_Load_1(object sender, EventArgs e)
{
AutocompleteCourse();
AutocompleteScholarNo();
}
private void frmBusFeePaymentReport_FormClosing_1(object sender, FormClosingEventArgs e)
{
this.Hide();
frmMainMenu frm = new frmMainMenu();
frm.UserType.Text = label12.Text;
frm.User.Text = label13.Text;
frm.Show();
}
}
}