Hello all,
I am trying to display an image on my PictureBox1 which is retrieved from a secure directory on my server. On Firefox, I have to add my username/password to view the image. How would I add my username and password to make my application show on it's form the image on picturebox1?
This is what I have:
Dim s As String
s = "
http://3xx.xxx.xx.xxx:81/" & lblvalue.Text & ".jpg"
PictureBox1.ImageLocation = s
Cheeres