is this possible?
Dim wa As Integer = 1
con = New OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\Bengkel\Project\db.mdb")
con.Open()
myCommand = New OleDbCommand("insert into payment (slip) VALUES (wa) ", con) 'insert the value of "wa"
myCommand.ExecuteNonQuery()
wa = wa + 1
if i'm wrong, can someone help me?