1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using System.Data.SqlClient;
- namespace EJ
- {
- public partial class Посещения : Form
- {
- SqlConnection connection;
- SqlCommand command;
- SqlDataAdapter adapter;
- DataTable table;
- public Посещения()
- {
- InitializeComponent();
- dataGridView1.AutoGenerateColumns = true;
- connection = new SqlConnection("SERVER=DESKTOP-JES5T51\\SQLEXPRESS;Database=EJ;Trusted_Connection=True;");
- command = new SqlCommand();
- command.Connection = connection;
- command.CommandType = CommandType.Text;
- adapter = new SqlDataAdapter(command);
- table = new DataTable();
- dataGridView1.DataSource = table;
- ShowTable("SELECT * FROM Посещаемость");
- }
- public void ShowTable(string text)
- {
- dataGridView1.Columns.Clear();
- dataGridView1.DataSource = null;
- command.CommandText = text;
- table.Clear();
- adapter.Fill(table);
- dataGridView1.DataSource = table;
- }
- public void Посещения_Load(object sender, EventArgs e)
- {
- // TODO: данная строка кода позволяет загрузить данные в таблицу "eJDataSet.Посещаемость". При необходимости она может быть перемещена или удалена.
- this.посещаемостьTableAdapter.Fill(this.eJDataSet.Посещаемость);
- }
- private void Save_Click(object sender, EventArgs e)
- {
- ЗаполнениеПос M = new ЗаполнениеПос();
- M.Show();
- this.Hide();
- }
- private void toolStripButton1_Click(object sender, EventArgs e)
- {
- this.Hide();
- Обучающиеся N = new Обучающиеся();
- N.Show();
-
- }
- private void toolStripButton2_Click(object sender, EventArgs e)
- {
- backbb V = new backbb();
- V.Show();
- this.Hide();
- }
- }
- }
|