Click here to Skip to main content
15,880,956 members
Articles / Desktop Programming / Windows Forms

Declarations Generator

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
29 Jun 2010GPL33 min read 19.4K   127   5  
A tool which helps in generating codes for events/properties, so that users of your classes can use events/properties of embedded classes

Public Class FilesDealer

    Public Shared Function GetFilePath(ByVal DialogTitle As String, _
                                       ByVal Filter As String) As String

        Using svDlg As New SaveFileDialog
            With svDlg
                .Filter = Filter
                .Title = DialogTitle
                If .ShowDialog <> Windows.Forms.DialogResult.OK Then
                    Return ""
                End If
                Return .FileName
            End With
        End Using

    End Function

End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
Syrian Arab Republic Syrian Arab Republic
The more I learn the more I see my ignorance.

Comments and Discussions