Form3.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 KokursTest2
  12. {
  13. public partial class Form3 : Form
  14. {
  15. public Form3()
  16. {
  17. InitializeComponent();
  18. }
  19. private void Form3_FormClosing(object sender, FormClosingEventArgs e)
  20. {
  21. Application.Exit();
  22. }
  23. private void Form3_Load(object sender, EventArgs e)
  24. {
  25. // TODO: данная строка кода позволяет загрузить данные в таблицу "konkursDataSet.comfort". При необходимости она может быть перемещена или удалена.
  26. this.comfortTableAdapter.Fill(this.konkursDataSet.comfort);
  27. // TODO: данная строка кода позволяет загрузить данные в таблицу "konkursDataSet.bronirovani". При необходимости она может быть перемещена или удалена.
  28. this.bronirovaniTableAdapter.Fill(this.konkursDataSet.bronirovani);
  29. }
  30. private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
  31. {
  32. }
  33. private void bindingNavigatorPositionItem_Click(object sender, EventArgs e)
  34. {
  35. }
  36. private void toolStripLabel1_Click(object sender, EventArgs e)
  37. {
  38. }
  39. private void toolStripButton1_Click(object sender, EventArgs e)
  40. {
  41. }
  42. private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
  43. {
  44. }
  45. private void button1_Click(object sender, EventArgs e)
  46. {
  47. String connstring = "Data Source=DESKTOP-Q8BTJMH;Initial Catalog=konkurs;Integrated Security=True";
  48. SqlConnection conn = new SqlConnection(connstring);
  49. conn.Open();
  50. SqlCommand command = new SqlCommand("Select * From users", conn);
  51. SqlDataReader reader = null;
  52. reader = command.ExecuteReader();
  53. try
  54. {
  55. while (reader.Read())
  56. {
  57. listBox1.Items.Add(reader["login"].ToString() + " " + reader["password"].ToString() );
  58. }
  59. }
  60. catch(Exception ex)
  61. {
  62. MessageBox.Show(ex.Message.ToString(), "", MessageBoxButtons.OK, MessageBoxIcon.Error);
  63. }
  64. finally
  65. {
  66. }
  67. }
  68. }
  69. }