Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
NEED YOUR HELP PLEASE..
#7
What you could do is use this code when you click buttons for scrolling (Next, Previous, First, Last):
[code2=vbnet]Try
PictureBox1.Image = Image.FromFile(ImageTextBox.Text)
Catch ex As Exception
MsgBox(ex.Message) ' Style your message box a bit, if you want.
End Try[/code2]
When an user clicks the upload button, add this code:
[code2=vbnet]Dim OpenImage As New OpenFileDialog
OpenImage.Title = "Upload your image"
OpenImage.InitialDirectory = "C:\"
OpenImage.Filter = "Images Files|*.jpg;*.png;*.jpeg;*.bmp"
Dim x = OpenImage.ShowDialog()

If x = DialogResult.OK Then
Try
PictureBox1.Image = Image.FromFile(OpenImage.FileName)
ImageTextBox.Text = OpenImage.FileName
Catch ex As Exception
MsgBox(ex.Message) ' Style your message box a bit, if you want.
End Try
End If[/code2]

That is basically it. That's everything you need in order to display an image. If you want to display .GIF images, you need to use StreamWriter, otherwise it will say "Out of Memory". When the form loads, it doesn't matter which file extension the image have, it will show "Out of Memory", so don't add it there. Everything else works like a charm. If this didn't help you totally, it at least gave you some kind of idea how would it work.
Also known as Rocketalypse.
System.out.println("I prefer Java.");


Messages In This Thread
NEED YOUR HELP PLEASE.. - by jochen29 - 08-11-2012, 05:07 AM
Re: NEED YOUR HELP PLEASE.. - by Vinwarez - 08-11-2012, 07:23 AM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-11-2012, 02:23 PM
Re: NEED YOUR HELP PLEASE.. - by Vinwarez - 08-11-2012, 02:51 PM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-11-2012, 03:09 PM
Re: NEED YOUR HELP PLEASE.. - by Vinwarez - 08-11-2012, 11:22 PM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-11-2012, 11:51 PM
Re: NEED YOUR HELP PLEASE.. - by Vinwarez - 08-12-2012, 02:47 AM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-12-2012, 03:10 AM
Re: NEED YOUR HELP PLEASE.. - by Vinwarez - 08-12-2012, 03:16 AM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-12-2012, 03:28 AM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-12-2012, 02:27 PM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-13-2012, 04:38 AM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-13-2012, 07:46 AM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-14-2012, 01:25 PM
Re: NEED YOUR HELP PLEASE.. - by jochen29 - 08-15-2012, 02:44 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)