12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- 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 KokursTest2
- {
- public partial class Form3 : Form
- {
- public Form3()
- {
- InitializeComponent();
- }
- private void Form3_FormClosing(object sender, FormClosingEventArgs e)
- {
- Application.Exit();
- }
- private void Form3_Load(object sender, EventArgs e)
- {
- // TODO: данная строка кода позволяет загрузить данные в таблицу "konkursDataSet.comfort". При необходимости она может быть перемещена или удалена.
- this.comfortTableAdapter.Fill(this.konkursDataSet.comfort);
- // TODO: данная строка кода позволяет загрузить данные в таблицу "konkursDataSet.bronirovani". При необходимости она может быть перемещена или удалена.
- this.bronirovaniTableAdapter.Fill(this.konkursDataSet.bronirovani);
- }
- private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
- {
- }
- private void bindingNavigatorPositionItem_Click(object sender, EventArgs e)
- {
- }
- private void toolStripLabel1_Click(object sender, EventArgs e)
- {
- }
- private void toolStripButton1_Click(object sender, EventArgs e)
- {
- }
- private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
- {
- }
- private void button1_Click(object sender, EventArgs e)
- {
- String connstring = "Data Source=DESKTOP-Q8BTJMH;Initial Catalog=konkurs;Integrated Security=True";
- SqlConnection conn = new SqlConnection(connstring);
- conn.Open();
- SqlCommand command = new SqlCommand("Select * From users", conn);
-
- SqlDataReader reader = null;
- reader = command.ExecuteReader();
- try
- {
- while (reader.Read())
- {
- listBox1.Items.Add(reader["login"].ToString() + " " + reader["password"].ToString() );
- }
- }
- catch(Exception ex)
- {
- MessageBox.Show(ex.Message.ToString(), "", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- finally
- {
- }
- }
- }
- }
|