Hi,

How can I create a dialogbox, I think that will allow user to open or to save as a textfile?

Is it possible? If yes, how can it be made?

Thanks

This is what ur looking at?

Dim sSaveFile As New SaveFileDialog
        With sSaveFile
            .Filter = "Text files(*.txt)|*.txt|All files (*.*)|*.*"
            .FilterIndex = 1
            .Title = "Save as textfile"
        End With
        sSaveFile.ShowDialog()
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.