Advanced Image Viewer in VB.Net
Advanced Image Viewer with source code: (Screen Shot) ***************************************** 'Code from here Public Class Form1 Dim filepath As String Dim filename As String Private Sub btnExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click stopSlideShow = True Application.Exit() End Sub Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim path As String OpenFileDialog1.Filter = "Image Files (*.jpg, *.jpeg, *.png, *bmp, *.gif|*.jpg; *.jpeg; *.png; *bmp; *.gif" If OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then For Each path In OpenFileDialog1.FileNames If My.Computer.FileSystem.GetFileInfo(path).Extension.ToLower = ".jpg" Or _ My.Computer.FileSystem.GetFileInfo(path).Extension.ToLower =