ARTICLE
ButtonViewer: Using a Button to view Images
Tags: .NET, Browse button, Button Viewer Control in VB.NET., ButtonViewer, Dialog, Image class, Image property, ShowDialog, VB.NET, View ImagesOpenFileDialog, Windows Controls
In .NET, the Image class is a wonderful class to view images. No matter what control you have, you just set the Image property of that control to an image and the control will display the image. Neat?
Download
Files:
Description:
You may be wondering what the hell is this ButtonViewer? Well, In .NET, the Image class is a wonderful class to view images. No matter what control you have, you just set the Image property of that control to an image and the control will display the image. Neat?
In this sample, the Browse button let you browse the the dir to pick an image (It won't display any thing else but an image, so don't try text or other files).

Code:
Setting Image property of a button displays an image.
Protected Sub button1_Click_1(ByVal sender As Object, ByVal e As System.EventArgs)
Dim fdlg As New OpenFileDialog
fdlg.Title = "C# Corner Open File Dialog"
fdlg.InitialDirectory = "c:\"
fdlg.Filter = "All files (*.*)|*.*|All files (*.*)|*.*"
fdlg.FilterIndex = 2
fdlg.RestoreDirectory = True
If fdlg.ShowDialog() = DialogResult.OK Then
button2.Image = Image.FromFile(fdlg.FileName)
End If
Invalidate()
End Sub 'button1_Click_1