Hi to all.. I was working for now in our project in vb6.
But I have a problem when i run the save button, the message box appeared and says"no values in required parameters."
my code is below:
I knew that the conflict code i have do is in the label11.caption . I use label11.caption because it contains the date that the user will input on the form and save in access. I dont know what to do, someone help me to fixed this problem.
But I have a problem when i run the save button, the message box appeared and says"no values in required parameters."
my code is below:
Code:
Tsql = "UPDATE Tbl_Tithes SET Label11.Caption = '" & Me.txtTithes.Text & " ' where ID LIKE '%" & txtID.Text & "%'" Call dbConnect TConn.Execute Tsql TConn.Close Set TConn = Nothing Unload Me
Comment