Hey Guys!
Need a tad bit of help on my simple wordpad, MattPro.
Im a beginner in all of this, but I can grasp the concepts.
Anywho, im using the basic SaveFile:
And Id like to know how I can define it to save as a list of preset filetype?
Where the arrow details in my 1337 screenshot
http://img161.imageshack.us/img161/5271/filext7.png
Need a tad bit of help on my simple wordpad, MattPro.
Im a beginner in all of this, but I can grasp the concepts.
Anywho, im using the basic SaveFile:
VB.NET:
Private Sub ToolStripButton3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton3.Click
If SaveFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
Dim SW As New IO.StreamWriter(SaveFileDialog1.Filename)
SW.Write(Textbox1.Text)
SW.Flush()
SW.Close()
FileOpen(1, SaveFileDialog1.Filename, OpenMode.Output)
Print(1, TextBox1.Text)
FileClose(1)
End If
End Sub
And Id like to know how I can define it to save as a list of preset filetype?
Where the arrow details in my 1337 screenshot
http://img161.imageshack.us/img161/5271/filext7.png