Hi,
Can anyone help me with this error?
"Two few parameters, expected 1."
I have this code:
Thanks for advance
Can anyone help me with this error?
"Two few parameters, expected 1."
I have this code:
Code:
Private Sub Article1_AfterUpdate()
Dim db As DAO.Database
Dim dataset As DAO.Recordset
Dim FirstPrice, SecondPrice As Long
Dim sql As String
Set db = CurrentDb
Set dataset = db.OpenRecordset("select price, price_after_discount " _
& "as firstprice, secondprice" _
& " from item" _
& " where article= " & CStr(Me.Article1.Value) & " ", dbOpenDynaset)
'sql = "select price, price_after_discount " _
'& "as firstprice, secondprice" _
'& " from item" _
'& " where article= " & CStr(Me.Article1.Value) & " "
'MsgBox sql
FirstPrice = CLng(dataset![FirstPrice])
SecondPrice = CLng(dataset![SecondPrice])
Me.Price1.Value = FirstPrice
Me.Price_after_discount1.Value = SecondPrice
If (Me.Price_after_discount1.Value = 0) Then
Me.prix_vente_unitaire1.Value = FirstPrice
Me.Difference1.Value = 0
Else
Me.prix_vente_unitaire1.Value = SecondPrice
Me.Difference1.Value = FirstPrice - SecondPrice
End If
db.Close
End Sub
Comment