Does anyone know how to update multiple images?

Recommended Answers

All 3 Replies

What exactly do you mean? Update in a database? On a web page? Provide some extra information and we can probably help.

if you want to update records of images in single table then use loop and if you want to update records of images in multiple tables then it is better to use stored procedures or if you dont know about stored procedure then use multiple update statements to update your records.(please always provide enough description of you prob so that any one can help you.)

Regards

You could write a Sub ( method ) which has two parameters. For example:

Sub update(ByVal pictureBox as PictureBox, ByVal newImage as String)
          pictureBox.Image = Image.FromFile(newImage)
End Sub
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.