is there anyway i can use rs!field (ex: rs!customer_id) in vb.net.
when i code it in VB.net
dim str as string
set rs = new adodb.recordset
dim x as single
str = “select customer_id from person”
rs.open str, dbconn, 3,2
x = rs!customer_id ”’ this is error it says to many arguments..
how do i solve it in vb.net because this the fastest way to update and manipulate records in the data using VB6 using ADO. is there i can access the records using rs? pls help