-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.cs
More file actions
157 lines (141 loc) · 3.88 KB
/
Form1.cs
File metadata and controls
157 lines (141 loc) · 3.88 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
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.IO;
namespace project_2
{
public partial class Form1 : MetroFramework.Forms.MetroForm
{
dbaccess dbac = new dbaccess();
OpenFileDialog open = new OpenFileDialog();
public Form1()
{
InitializeComponent();
showdata();
}
private void save_Click(object sender, EventArgs e)
{
filetransfer();
try
{
dbac.saveData(int.Parse(id.Text.Trim()), name.Text, gender(), married(), idformat.Text, DateTime.Text);
}
catch
{
MessageBox.Show("Data insertion Error....!");
}
finally
{
showdata();
}
}
private void viewall_Click(object sender, EventArgs e)
{
try
{
showdata();
}
catch
{
MessageBox.Show("Data Retrieval Error....!");
}
}
private void Search_Click(object sender, EventArgs e)
{
try
{
searchdata();
}
catch
{
MessageBox.Show("Data Search Errpr.....!");
}
}
private void clearall_Click(object sender, EventArgs e)
{
id.Text = "";
name.Text = "";
male.Checked = false;
female.Checked = false;
yes.Checked = false;
idformat.Text = "";
filenamebox.Text = "";
pictureBox1.Image = null;
}
private void viewReport_Click(object sender, EventArgs e)
{
showData sd = new showData();
sd.Show();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
fileshow();
}
catch
{
MessageBox.Show("File Error.......!");
}
}
private string gender()
{
if (male.Checked)
{
return "Male";
}
else
{
return "Female";
}
}
private string married()
{
if (yes.Checked)
{
return "Married";
}
else
{
return "Not Married";
}
}
private void showdata()
{
using (dbEntities db = new dbEntities())
{
metroGrid1.DataSource = db.interntbls.ToList<interntbl>();
}
}
private void searchdata()
{
using (dbEntities db = new dbEntities())
{
metroGrid1.DataSource = db.interntbls.Where(model => model.name == searchbox.Text).ToList();
}
}
private void Update_Click(object sender, EventArgs e)
{
}
private void fileshow()
{
if (open.ShowDialog() == DialogResult.OK)
{
filenamebox.Text = open.FileName;
pictureBox1.Image = new Bitmap(open.FileName);
}
}
private void filetransfer()
{
string location = (string)filenamebox.Text;
string dir = @"C:\Users\Isuru\source\repos\project 2\project 2\Images\".Replace(" % location%", location);
string filename = "Information.jpg";
string fullPath = Path.Combine(dir, filename);
}
}
}