Private Sub OpenTextFileWithNotePad()
If File.Exists("File.txt") Then
Try
Process.Start("notepad.exe", "File.txt")
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
Else
MessageBox.Show("File
Path Not Exist")
End If
End Sub