|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Saving stream message in Save As dialogI am trying to open up Save As dialog to save dynamically generated message
on the fly. Clients will specify path and type file name. Thanks. "Joseph" <Jos***@discussions.microsoft.com> schrieb: \\\>I am trying to open up Save As dialog to save dynamically generated message > on the fly. Clients will specify path and type file name. Dim sfdlg As New SaveFileDialog() If sfdlg.ShowDialog() = DialogResult.OK Then Dim sw As New StreamWriter(sfdlg.FileName) sw.WriteLine("Hello World") sw.Close() End If sfdlg.Dispose() /// -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/> |
|||||||||||||||||||||||