1
我有一個表products
,其中有6列,包括列價格。我想才達到的是:在vb6中選擇組合框的值後自動獲取文本框的值
- 當我選擇下拉菜單中的下一個文本框是價格將自動從數據庫表
products
填補的值。
例:表產品
ProductName Price
Mango 12
Apple 15
組合框的值:
Mango
Apple
組合框的文本框的值:
Mango
價格文本框的值自動填入與:
12
嘗試代碼:
Private Sub Price()
Set Rs = New ADODB.Recordset
Set Cmd = New ADODB.Command
If txtProdName.txt Is Not Nothing Then
With Cmd
.ActiveConnection = Conn
.CommandType = adCmdText
.CommandText = "SELECT price from products where productname=txtProdname.txt"
Set Rs = .Execute
End With
txtPrice = Rs.Fields
End If
End Sub
我想這一個整天但這不工作,如何改正這個人真的糊塗到這個?
嘗試txtPrice = Rs.Fields(0).value的 – 2013-03-24 10:07:27
它的主要錯誤,請幫我 – 2013-03-24 10:40:56
您的查詢字符串是錯的太 - 嘗試類似'.CommandText =「選擇產品產品的價格where productname ='」&txtProdname.txt&「'」' – 2013-03-24 10:45:57