Connecting Tech Pros Worldwide Forums | Help | Site Map

"No value given for one or more required parameters. Microsoft JET Database Engine"

Yuna84
Guest
 
Posts: n/a
#1: Nov 12 '05
I've a problema when I try to Update then changed elements in my
database.
In myForm I've two combobox that works on arraylist and there are no
problems, I think.

public sub update
Dim DSModified As DataSet
DSModified = DSResults.GetChanges()
If Not DSModified Is Nothing Then
Try
DA.Update(DSModified, DSModified.Tables(0).TableName)
DSResults.AcceptChanges()
Catch e As Exception
MessageBox.Show(e.Message & " " & e.Source)
End Try
End If
end sub

The problem begin when the program arrive in DA.Update(Ds...)

Please, can you help me?

MGFoster
Guest
 
Posts: n/a
#2: Nov 12 '05

re: "No value given for one or more required parameters. Microsoft JET Database Engine"


This problem will have a better chance of a solution if you asked your
question in the VB.NET newsgroup. Try this newsgroup:

microsoft.public.dotnet.languages.vb

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)


Yuna84 wrote:
[color=blue]
> I've a problema when I try to Update then changed elements in my
> database.
> In myForm I've two combobox that works on arraylist and there are no
> problems, I think.
>
> public sub update
> Dim DSModified As DataSet
> DSModified = DSResults.GetChanges()
> If Not DSModified Is Nothing Then
> Try
> DA.Update(DSModified, DSModified.Tables(0).TableName)
> DSResults.AcceptChanges()
> Catch e As Exception
> MessageBox.Show(e.Message & " " & e.Source)
> End Try
> End If
> end sub
>
> The problem begin when the program arrive in DA.Update(Ds...)[/color]

Closed Thread