|
|
|
vb.net checkbox สามารถ binding Access Databset ที่เป็น yes/no จะต้องทำอย่างไรครับ |
|
|
|
|
|
|
|
checkbox สามารถ binding Access DataSet ที่เป็น yes/no จะต้องทำอย่างไรครับ
Code (VB.NET)
Try
da.Fill(ds, "Product")
dv = ds.Tables("Product").DefaultView
bs.DataSource = dv 'ds.Tables("Product")
Catch ex As Exception
MessageBox.Show("เกิดข้อผิดพลาด เนื่องจาก " & ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Exit Sub
End Try
txtProductID.DataBindings.Add("Text", bs, "ProductID")
txtProductName.DataBindings.Add("Text", bs, "ProductName")
txtDefaultUnit.DataBindings.Add("Text", bs, "DefaultUnit")
txtLastCost.DataBindings.Add("Text", bs, "LastCost")
lblCostAvg.DataBindings.Add("Text", bs, "CostAvg")
txtSalePrice.DataBindings.Add("Text", bs, "SalePrice")
txtSalePrice1.DataBindings.Add("Text", bs, "SalePrice1")
txtSalePrice2.DataBindings.Add("Text", bs, "SalePrice2")
'Dim iCurrentRecord As Integer = Me.BindingContext(ds.Tables("Product")).Position
'Dim status As String = CStr(ds.Tables("Product").Rows(iCurrentRecord)("ProductStatus"))
'If status = "0" Then
'ckStatus.Checked = False
'ElseIf status = "1" Then
'ckStatus.Checked = True
'End If
ckStatus.DataBindings.Add("........", ds, "ProductStatus")
dgvProductList.DataSource = bs
objCurrencyManager = CType(Me.BindingContext(bs), CurrencyManager)
objCurrencyManager_PositionChanged(Nothing, Nothing)
ตรง ckStatus.databinding ผมจะเขียงอย่างไรครับ ช่วยแนะนำหน่อยนะครับ
Tag : .NET, Ms Access, VS 2010 (.NET 4.x)
|
|
|
|
|
|
Date :
2013-03-13 17:39:32 |
By :
Gumbee |
View :
1033 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำ Bind ใน Loop ได้หรือเปล่าครับ แล้วใช้ IF เอาน่ะครับ
|
|
|
|
|
Date :
2013-03-14 09:30:54 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|