 |
|
ปัญหาการ binding combobox ค่ะ กับ combobox ที่แอดข้อมูลเอง ข้อมูลมันไม่มาอ่าค่ะ |
|
 |
|
|
 |
 |
|
เข้ามางง คือผมไม่เข้าใจคำถามอ่ะครับ
|
 |
 |
 |
 |
Date :
2011-03-22 11:35:15 |
By :
kaimuk |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
555+ ได้คุณ ไข่มุก (ไม่รู้อ่านถูกรึป่าว) มาช่วยอีกแล้ว
ก็คือว่า ที่ทำไว้ คือ binding combobox กับฐานข้อมูล คือเลือกข้อมูลจาก combobox1 แล้วข้อมูลใน combobox2,combobox3 เปลี่ยนตาม
combobox1 คือ รหัส
combobox2 คือ ชื่อ
combobox3 คือ แผนก
Code นี่โค้ดที่ว่า source มา(VB.NET)
'combobox Agent
Dim sql As String
Dim cdd As New BindingSource
'da.Fill(ds, "Agent")
sql = "SELECT * FROM Agent"
da = New SqlDataAdapter(sql, Conn)
da.Fill(ds, "Agent1")
cdd.DataSource = ds
cdd.DataMember = "Agent1"
With combobox1
.DataSource = cdd
.DisplayMember = "Agent_ID"
.BeginUpdate()
.ValueMember = "Agent_ID"
.EndUpdate()
End With
'combobox Agent
Dim sql As String
Dim cdd As New BindingSource
'da.Fill(ds, "Agent")
sql = "SELECT * FROM Agent"
da = New SqlDataAdapter(sql, Conn)
da.Fill(ds, "Agent1")
cdd.DataSource = ds
cdd.DataMember = "Agent1"
With combobox2
.DataSource = cdd
.DisplayMember = "Agent_Name"
.BeginUpdate()
.ValueMember = "Agent_ID"
.EndUpdate()
End With
Code นี่โค้ดที่เพิ่มข้อมูลเอง(VB.NET)
combobox3.DataPropertyName = "Depeartment2"
combobox3.HeaderText = "Depeartment"
combobox3.Width = 80
combobox3.Items.Add("IT", "Accout", "Service")
เวลาข้อมูลเลือกที่ combobox1 ข้อมูลใน combobox2 เปลี่ยนตาม แต่ combobox3 ไม่มาอ่าค่ะ
|
ประวัติการแก้ไข 2011-03-22 12:56:44
 |
 |
 |
 |
Date :
2011-03-22 12:53:26 |
By :
zeenanz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code เมื่อเลือกข้อมูลใน combobox1 แล้วข้อมูลใน combobox2 และ combobox 3 เปลี่ยนตาม(VB.NET)
Dim sql1 As String
Dim bs, bd As New BindingSource
Dim dt As New DataTable
sql1 = "SELECT * FROM Agent"
sql1 &= " WHERE Agent_ID = '" & combobox1.Text & "'"
da = New SqlDataAdapter(sql1, Conn)
Com = New SqlCommand()
With Com
.CommandText = sql1
.CommandType = CommandType.Text
.Connection = Conn
dr = .ExecuteReader()
If dr.HasRows Then
dt = New DataTable()
dt.Load(dr)
bs.DataSource = dt
combobox1.DataBindings.Clear()
combobox2.DataBindings.Clear()
combobox3.DataBindings.Clear()
combobox1.DataBindings.Add("SelectedValue", bs, "Agent_ID")
combobox2.DataBindings.Add("SelectedValue", bs, "Agent_Name")
combobox3.DataBindings.Add("SelectedValue", bs, "Department")
End If
End With
dr.Close()
|
 |
 |
 |
 |
Date :
2011-03-22 13:00:07 |
By :
zeenanz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
combobox3.DataBindings.Add("text", bs, "Department") น่าจะได้นะครับ
|
 |
 |
 |
 |
Date :
2011-03-22 13:31:30 |
By :
kaimuk |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่ได้อ่าค่ะ ลองทำดูแล้ว
|
 |
 |
 |
 |
Date :
2011-03-22 14:16:56 |
By :
zeenanz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มันขึ้นอะไรหรือเปล่าครับ
|
 |
 |
 |
 |
Date :
2011-03-22 14:50:58 |
By :
kaimuk |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
อ่ะๆๆๆ ผมอาจโจทย์ผิดเองแหละ ผมผิดเอง ตามนี้นะครับ
Combobox1.DataSource = bs
Combobox1.DisplayMember = "Agent_ID"
ส่วน Combobox2 ใช้อันเดิม Combobox3 ให้เปลี่ยน SelectedValue เป็น Text
|
 |
 |
 |
 |
Date :
2011-03-22 14:59:04 |
By :
kaimuk |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|