You don't want to try to read the file again - you saved the file content, not it's name so it's can't be opened and you don't want to convert it to a
string
. You want to convert it to an
Image
.
Dim ms As New MemoryStream(vrPicHolder)
PictureBox1.Image = Image.FromStream(ms)