Form1.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Data.SqlClient;
  11. namespace EJ
  12. {
  13. public partial class Посещения : Form
  14. {
  15. SqlConnection connection;
  16. SqlCommand command;
  17. SqlDataAdapter adapter;
  18. DataTable table;
  19. public Посещения()
  20. {
  21. InitializeComponent();
  22. dataGridView1.AutoGenerateColumns = true;
  23. connection = new SqlConnection("SERVER=DESKTOP-JES5T51\\SQLEXPRESS;Database=EJ;Trusted_Connection=True;");
  24. command = new SqlCommand();
  25. command.Connection = connection;
  26. command.CommandType = CommandType.Text;
  27. adapter = new SqlDataAdapter(command);
  28. table = new DataTable();
  29. dataGridView1.DataSource = table;
  30. ShowTable("SELECT * FROM Посещаемость");
  31. }
  32. public void ShowTable(string text)
  33. {
  34. dataGridView1.Columns.Clear();
  35. dataGridView1.DataSource = null;
  36. command.CommandText = text;
  37. table.Clear();
  38. adapter.Fill(table);
  39. dataGridView1.DataSource = table;
  40. }
  41. public void Посещения_Load(object sender, EventArgs e)
  42. {
  43. // TODO: данная строка кода позволяет загрузить данные в таблицу "eJDataSet.Посещаемость". При необходимости она может быть перемещена или удалена.
  44. this.посещаемостьTableAdapter.Fill(this.eJDataSet.Посещаемость);
  45. }
  46. private void Save_Click(object sender, EventArgs e)
  47. {
  48. ЗаполнениеПос M = new ЗаполнениеПос();
  49. M.Show();
  50. this.Hide();
  51. }
  52. private void toolStripButton1_Click(object sender, EventArgs e)
  53. {
  54. this.Hide();
  55. Обучающиеся N = new Обучающиеся();
  56. N.Show();
  57. }
  58. private void toolStripButton2_Click(object sender, EventArgs e)
  59. {
  60. backbb V = new backbb();
  61. V.Show();
  62. this.Hide();
  63. }
  64. }
  65. }