Why is it that when I'm trying to run my program i always see this error>>>> syntax error in insert into statement.....
i declared everything
in this function has an error:
anyone help plz!!!
i declared everything
in this function has an error:
Code:
if inc <>-1 then
dim cb as new oledb.oledbcommandbuilder(da)
dim dsnewrow as datarow
dsnewrow=ds.tables("ryan").newrow()
dsnewrow.item("ID")=textbox1.text
dsnewrow.item("Password")=textbox2.text
ds.tables("ryan").rows.add(dsnewrow)
msgbox("data added!")
Comment