private void Doc_Click(object sender, EventArgs e) { try { myList.clear(myList); //Xóa hết dữ liệu đã tồn tại trong danh sách liên kết StreamReader rd = new StreamReader("6.txt", Encoding.UTF8); //Đọc file text if (rd == null) { MessageBox.Show("Đọc file không thành công.", "THÔNG BÁO:"); } string x = rd.ReadLine(); // doc so cuon sach sohoadon = Convert.ToInt32(x); for (int i = 0; i < sohoadon; i++) { string x1 = rd.ReadLine(); dsChuoi.Add(x1); } for (int j = 0; j < sohoadon; j++) { SACH x2 = new SACH(); string[] thongtin = dsChuoi[j].Split('/'); x2.Nhap6(thongtin[1], thongtin[2], thongtin[3], float.Parse(thongtin[4]), thongtin[5], float.Parse(thongtin[6])); x2.TongTien = float.Parse(thongtin[7]); x2.GiamGia = float.Parse(thongtin[8]); x2.ThanhTien = float.Parse(thongtin[9]); myList.addHead(x2); } if (rd != null) { MessageBox.Show("Lấy dữ liệu thành công.", "THÔNG BÁO:"); } rd.Close(); } catch (Exception ee) { MessageBox.Show(ee.Message); } }
private void button1_Click(object sender, EventArgs e) { if (tMaSach.Text.CompareTo("") == 0) { ktThem = 1; } else { temp.Nhap6(tMaSach.Text, tTenSach.Text, tLoaiSach.Text, Convert.ToInt32(tDonGia.Text), tNgayMua.Text, Convert.ToInt32(tSoLuongMua.Text)); } this.Close(); }