DigitalGeek
Programmer
with the following code...
imports System.Data
Imports System.Data.Oledb
.
.
.
dim dradotst as OleDbDataReader
connadotst.Open()
Try
dradotst = Me.OleDbSelectCommand1.ExecuteReader(CommandBehavior.CloseConnection)
Catch oledbexception As Exception
MsgBox(oledbexception.Message)
End Try
.
.
.
i get the message...
"No value given for one or more required parameters."
...help....
it worked until I added code in a seperate sub to update the dataset and database?????
imports System.Data
Imports System.Data.Oledb
.
.
.
dim dradotst as OleDbDataReader
connadotst.Open()
Try
dradotst = Me.OleDbSelectCommand1.ExecuteReader(CommandBehavior.CloseConnection)
Catch oledbexception As Exception
MsgBox(oledbexception.Message)
End Try
.
.
.
i get the message...
"No value given for one or more required parameters."
...help....
it worked until I added code in a seperate sub to update the dataset and database?????