1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- 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 ЭлектронныйЖурнал
- {
- public partial class Группы : Form
- {
- SqlConnection connection;
- SqlCommand command;
- SqlDataAdapter adapter;
- DataTable table;
- public Группы()
- {
- InitializeComponent();
- connection = new SqlConnection("Server=DESKTOP-JES5T51\\SQLEXPRESS;DataBase=EJBD;Trusted_connection=true");
- command = new SqlCommand();
- command.Connection = connection;
- command.CommandText = Text;
- adapter = new SqlDataAdapter(command);
- table = new DataTable();
- }
- private void ShowTable(string text)
- {
- dataGridView1.Columns.Clear();
- dataGridView1.DataSource = null;
- command.CommandText = text;
- table.Clear();
- adapter.Fill(table);
- dataGridView1.DataSource = table;
- }
- private void Группы_Load(object sender, EventArgs e)
- {
-
- ShowTable("Select Группа.Код_группы as [код группы] ,Воспитанники.ФИО as [ФИО воспитанника],Группа.Фамилия_тренера as [Фамилия тренера],Группа.Название_группы as [Название группы] From Группа inner join Воспитанники on Группа.Код_группы = Воспитанники.Код_группы");
- dataGridView1.Columns[0].Visible = false;
- }
- private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
- {
- }
- private void backButton_Click(object sender, EventArgs e)
- {
- Menu r = new Menu();
- r.Show();
- this.Hide();
- }
- private void AddButton_Click(object sender, EventArgs e)
- {
- Добавление_группы w = new Добавление_группы();
- w.Show();
- this.Hide();
- }
- private void DeleteButton_Click(object sender, EventArgs e)
- {
-
- }
- private void copyAlltoClipboard()
- {
- dataGridView1.SelectAll();
- DataObject dataObj = dataGridView1.GetClipboardContent();
- if (dataObj != null)
- Clipboard.SetDataObject(dataObj);
- }
- private void PrintButton_Click(object sender, EventArgs e)
- {
- copyAlltoClipboard();
- Microsoft.Office.Interop.Excel.Application xlexcel;
- Microsoft.Office.Interop.Excel.Workbook xlWorkBook;
- Microsoft.Office.Interop.Excel.Worksheet xlWorkSheet;
- object misValue = System.Reflection.Missing.Value;
- xlexcel = new Microsoft.Office.Interop.Excel.Application();
- xlexcel.Visible = true;
- xlWorkBook = xlexcel.Workbooks.Add(misValue);
- xlWorkSheet = (Microsoft.Office.Interop.Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
- Microsoft.Office.Interop.Excel.Range CR = (Microsoft.Office.Interop.Excel.Range)xlWorkSheet.Cells[1, 1];
- CR.Select();
- xlWorkSheet.PasteSpecial(CR, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, true);
- }
- }
- }
|