-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pertemuan09.cs
241 lines (216 loc) · 9.15 KB
/
Pertemuan09.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
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace kelompok
{
public partial class Pertemuan09 : Form
{
const string filename = "data.pegawai.txt";
public Pertemuan09()
{
InitializeComponent();
}
private void dgvData_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void btnTambah_Click(object sender, EventArgs e)
{
try
{
if (this.txtKode.Text.Trim().Equals(""))
throw new Exception("Sorry, kolom kode wajib isi ...");
else if (this.txtNama.Text.Trim().Equals(""))
throw new Exception("Sorry, kolom nama wajib isi ...");
else if (this.radPria.Checked && this.radWanita.Checked)
throw new Exception("Sorry, jenis kelamin wajib isi ...");
else if (this.cboDepartemen.Text.Trim().Equals(""))
throw new Exception("Sorry, departemen nama wajib isi ...");
string kode = this.txtKode.Text.Trim();
string nama = this.txtNama.Text.Trim();
string jenisKelamin = this.radPria.Checked ?
this.radPria.Text.Trim() : this.radWanita.Text.Trim();
string departemen = this.cboDepartemen.Text.Trim();
//validasi
string[] fileContent = File.ReadAllLines(filename);
if (this.btnTambah.Text.Equals("Tambah", StringComparison.CurrentCultureIgnoreCase))
{
if (File.Exists(filename))
{
foreach (string line in fileContent)
{
string[] arr = line.Split('|');
string kodeAtSource = arr[0].Trim();
if (kodeAtSource.Equals(kode, StringComparison.CurrentCultureIgnoreCase))
throw new Exception("Sorry, kode yang sama sudah terdaftar...");
}
}
//write new item to file
using (StreamWriter writer = new StreamWriter(filename, true))
{
writer.WriteLine($"{kode} | {nama} | {jenisKelamin} | {departemen}");
}
}
else
{
// mode : update
using (StreamWriter writer = new StreamWriter(filename, false))
{
foreach (string line in fileContent)
{
string[] arr = line?.Split('|');
string kodeInSource = arr[0].Trim();
if (kodeInSource.Equals(kode, StringComparison.CurrentCultureIgnoreCase))
{
writer.WriteLine($"{kode} | {nama} | {jenisKelamin} | {departemen}");
}
else
{
writer.WriteLine(line);
}
}
}
btnTambah.Text = "Tambah";
}
//clearform
foreach (Control ctl in this.Controls)
{
if (ctl is TextBox t) t.Clear();
if (ctl is RadioButton r) r.Checked = false;
if (ctl is ComboBox cb) cb.Text = "";
}
this.txtKode.Focus();
LoadData("all");
}
catch (Exception ex)
{
MessageBox.Show($"Error: {ex.Message}", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void LoadData(string kriteria)
{
try
{
this.dgvData.Rows.Clear();
if (File.Exists(filename))
{
string[] fileContent = File.ReadAllLines(filename);
if (fileContent.Length > 0)
{
foreach (string line in fileContent)
{
string[] arrline = line.Split('|');
string kode = arrline[0].Trim();
string nama = arrline[1].Trim();
string jeniskelamin = arrline[2].Trim();
string departemen = arrline[3];
if (kriteria.Equals("all", StringComparison.CurrentCultureIgnoreCase))
{
this.dgvData.Rows.Add(new string[] { kode, nama, jeniskelamin, departemen });
}
else
{
if (jeniskelamin.Equals(kriteria, StringComparison.CurrentCultureIgnoreCase))
{
this.dgvData.Rows.Add(new string[] { kode, nama, jeniskelamin, departemen });
}
}
}
}
}
}
catch (Exception ex)
{
// Log the exception or display a user-friendly error message
MessageBox.Show($"Error loading data: {ex.Message}", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void Pertemuan09_Load(object sender, EventArgs e)
{
LoadData("all");
}
private void editToolStripMenuItem_Click(object sender, EventArgs e)
{
if (this.dgvData.CurrentRow != null)
{
if (MessageBox.Show($"Edit baris data terpilih ?", this.Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
DataGridViewRow row = this.dgvData.CurrentRow;
string kode = row.Cells[0].Value.ToString().Trim();
string nama = row.Cells[1].Value.ToString().Trim();
string jenisKelamin = row.Cells[2].Value.ToString().Trim();
string departemen = row.Cells[3].Value.ToString().Trim();
this.txtKode.Text = kode;
this.txtNama.Text = nama;
if (jenisKelamin.Equals("pria", StringComparison.CurrentCultureIgnoreCase))
this.radPria.Checked = true;
else
{
this.radWanita.Checked = true;
}
this.cboDepartemen.Text = departemen;
this.txtKode.Enabled = false;
this.btnTambah.Text = "Update";
}
}
}
private void hapusToolStripMenuItem_Click(object sender, EventArgs e)
{
if (this.dgvData.CurrentRow != null)
{
string kode = this.dgvData.CurrentRow.Cells[0].Value.ToString().Trim();
if (MessageBox.Show($"Hapus item data dengan kode: {kode} ?", this.Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
try
{
var fileContent = File.ReadAllLines(filename);
using (var writer = new StreamWriter(filename, false))
{
foreach (string line in fileContent)
{
string kodeAtLine = line.Split('|')[0].Trim();
if (!kodeAtLine.Equals(kode, StringComparison.CurrentCultureIgnoreCase))
writer.WriteLine(line);
}
}
LoadData("all");
}
catch (Exception ex)
{
MessageBox.Show($"Error loading data: {ex.Message}", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}
private void btnTampilPria_Click(object sender, EventArgs e)
{
LoadData("pria");
}
private void btnTampilWanita_Click(object sender, EventArgs e)
{
LoadData("wanita");
}
private void btnTampilSemua_Click(object sender, EventArgs e)
{
LoadData("all");
}
private void btnBatal_Click(object sender, EventArgs e)
{
foreach (Control ctl in this.Controls)
{
if (ctl is TextBox t) t.Clear();
if (ctl is RadioButton r) r.Checked = false;
if (ctl is ComboBox cb) cb.Text = "";
}
this.txtKode.Enabled = true;
this.btnTambah.Text = "Tambah";
}
}
}