I'm new to vb.net
I wan to to make a retrieval of image into picturebox. This is my code:
All declaration has been initialize

Cmd= New sqlcommand ("select * from tblretrieveimages", con)
dt= New DataTable
sda = New sqlDataAdaptar(cmd)
sda.fill(dt)

Texbox1id = dt.rows(0)(0).tostring
Texbox1name = dt.rows(0)(1).tostring
Texbox1des = dt.rows(0)(2).tostring

Dim img() as byte
img()=dt.rows(0)(3)

Dim ms as New system.IO.Memorystream()
Picturebox1.image = image.FromStream(ms)

But whenever i make query, I'm still getting error, indicating the "Parameter is not Valid"!!!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.