تقييم الموضوع :
  • 0 أصوات - بمعدل 0
  • 1
  • 2
  • 3
  • 4
  • 5
تعبئة CheckListBox من قاعدة البيانات حسب الإختيار من Combobox
#1
السلام عليكم ورحمة الله وبركاته 

هل أستطيع عرض كافة حقول جدول من قاعدة البيانات Sql إلى CheckListBox  بإستخدام كومبوبوكس بحيث يعرض حسب القيمة المحددة في الكومبوبوكس 
بارك الله فيكم
الرد }}}
تم الشكر بواسطة:
#2
كود :
Imports System.Data.SqlClient

Public Class Form1
   ' Your database connection string
   Dim connectionString As String = "YourConnectionStringHere"

   Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
       ' Populate the ComboBox with data on form load
       PopulateComboBox()
   End Sub

   Private Sub PopulateComboBox()
       ' Your SQL query to retrieve distinct values for the ComboBox
       Dim query As String = "SELECT DISTINCT YourColumnName FROM YourTableName"
       
       ' Create a SqlConnection
       Using connection As New SqlConnection(connectionString)
           ' Open the connection
           connection.Open()

           ' Create a SqlCommand
           Using command As New SqlCommand(query, connection)
               ' Create a SqlDataReader to read data
               Using reader As SqlDataReader = command.ExecuteReader()
                   ' Clear existing items in the ComboBox
                   comboBox1.Items.Clear()

                   ' Add items to the ComboBox
                   While reader.Read()
                       comboBox1.Items.Add(reader("YourColumnName").ToString())
                   End While
               End Using
           End Using
       End Using
   End Sub

   Private Sub comboBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles comboBox1.SelectedIndexChanged
       ' Clear existing items in the CheckBoxList
       checkBoxList1.Items.Clear()

       ' Check if an item is selected in the ComboBox
       If comboBox1.SelectedItem IsNot Nothing Then
           ' Get the selected value from the ComboBox
           Dim selectedValue As String = comboBox1.SelectedItem.ToString()

           ' Call a method to populate the CheckBoxList based on the selected value
           PopulateCheckBoxList(selectedValue)
       End If
   End Sub

   Private Sub PopulateCheckBoxList(selectedValue As String)
       ' Your SQL query to retrieve values for the CheckBoxList based on the selected value
       Dim query As String = "SELECT YourCheckBoxListColumnName FROM YourTableName WHERE YourComboBoxColumnName = @SelectedValue"

       ' Create a SqlConnection
       Using connection As New SqlConnection(connectionString)
           ' Open the connection
           connection.Open()

           ' Create a SqlCommand with parameters
           Using command As New SqlCommand(query, connection)
               ' Add parameters
               command.Parameters.AddWithValue("@SelectedValue", selectedValue)

               ' Create a SqlDataReader to read data
               Using reader As SqlDataReader = command.ExecuteReader()
                   ' Add items to the CheckBoxList
                   While reader.Read()
                       checkBoxList1.Items.Add(reader("YourCheckBoxListColumnName").ToString())
                   End While
               End Using
           End Using
       End Using
   End Sub
End Class
الرد }}}
تم الشكر بواسطة:


المواضيع المحتمل أن تكون متشابهة .
الموضوع : الكاتب الردود : المشاهدات : آخر رد
  تعبئة checklistbox جيولوجي مبتدئ 4 940 31-08-25, 10:04 PM
آخر رد: مصمم هاوي
  [سؤال] طريقة توسيط النص داخل اداة comboBox سمير1404 7 3,854 24-08-25, 01:01 PM
آخر رد: أبو خالد الشكري
  تصدير البيانات إلى ملف RTF مصمم هاوي 4 820 15-08-25, 04:13 PM
آخر رد: أبو خالد الشكري
  [VB.NET] ما هو أفضل موقع استضافة لقواعد البيانات MSSQL ؟ mmaalmesry 0 795 16-07-25, 10:45 PM
آخر رد: mmaalmesry
  مساعدة في كيفية ترحيل البيانات من داتا قريدفيو إلى داتا قريدفيو في فيجوال بيسك ahmedfa71 13 2,213 09-07-25, 11:24 PM
آخر رد: أبو خالد الشكري
  مشكلة في حفظ البيانات مصمم هاوي 2 1,019 30-06-25, 08:51 AM
آخر رد: مصمم هاوي
  بطء في جلب البيانات مصمم هاوي 9 993 08-05-25, 07:51 AM
آخر رد: مصمم هاوي
  [Acces2007] مشكلة ملف قاعدة بيانات access للقراءة فقط mmaalmesry 11 1,452 29-04-25, 08:55 PM
آخر رد: mmaalmesry
  تعديل كود تحديث البيانات مصمم هاوي 1 781 26-04-25, 06:07 PM
آخر رد: مصمم هاوي
Photo لايمكن تعرف على تنسيق قاعدة البيانات الدريساوي 2 696 26-04-25, 12:24 AM
آخر رد: الدريساوي

التنقل السريع :


يقوم بقرائة الموضوع: