File Open dialog: file filter : Dialog File Save Open « GUI « VB.Net

VB.Net
1. 2D
2. Application
3. Class
4. Data Structure
5. Database ADO.net
6. Development
7. Event
8. File Directory
9. Generics
10. GUI
11. Language Basics
12. Network Remote
13. Thread
14. Windows System
15. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net Tutorial
VB.Net » GUI » Dialog File Save OpenScreenshots 
File Open dialog: file filter
File Open dialog: file filter

Imports System
Imports System.Collections
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.Configuration
Imports System.Resources
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.IO
Imports System.Drawing.Printing


Public Class MainClass
    Shared Sub Main()
        'Declare a OpenFileDialog object
        Dim objOpenFileDialog As New OpenFileDialog

        'Set the Open dialog properties
        With objOpenFileDialog
            .Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"
            .FilterIndex = 1
            .Title = "Demo Open File Dialog"
        End With

        'Show the Open dialog and if the user clicks the Open button,
        'load the file
        If objOpenFileDialog.ShowDialog = Windows.Forms.DialogResult.OK Then
            Dim allText As String
            Try
                'Read the contents of the file
                allText = My.Computer.FileSystem.ReadAllText_
                    objOpenFileDialog.FileName)
                'Display the file contents in the TextBox
                System.Console.WriteLine(allText)
            Catch fileException As Exception
                Throw fileException
            End Try
        End If

        'Clean up
        objOpenFileDialog.Dispose()
        objOpenFileDialog = Nothing
    End Sub

End Class

           
       
Related examples in the same category
1. Add action Listener to Save Button on A Save File DialogAdd action Listener to Save Button on A Save File Dialog
2. Open file dialog: Filter,Initial Directory,Title, CheckFileExists Open file dialog: Filter,Initial Directory,Title, CheckFileExists
3. File open dialogFile open dialog
4. File save dialogFile save dialog
5. File save dialog: File filter, Default name, Overwrite Prompt and titleFile save dialog: File filter, Default name, Overwrite Prompt and title
w___ww___.___j_a__v__a_2__s__.__c__o___m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.