P
Peter Proost
Hi
place a richtextbox on a form and the check out the
richtextbox.savefile(filename) method,
you can combine it with a savefiledialog like this.
<<<<<<code>>>>>>>
Dim dlg as New savefiledialog()
dlg.filter = "Rtf files (*.rtf)|*.rtf"
dlg.checkpathexists = true
dlg.DefaultExt = ".rtf"
if dlg.showdialog = dialogresult.ok then
richtextbox.savefile(dlg.filename)
end if
<<<<<<End code>>>>>>>>
Hope this helps
Peter
place a richtextbox on a form and the check out the
richtextbox.savefile(filename) method,
you can combine it with a savefiledialog like this.
<<<<<<code>>>>>>>
Dim dlg as New savefiledialog()
dlg.filter = "Rtf files (*.rtf)|*.rtf"
dlg.checkpathexists = true
dlg.DefaultExt = ".rtf"
if dlg.showdialog = dialogresult.ok then
richtextbox.savefile(dlg.filename)
end if
<<<<<<End code>>>>>>>>
Hope this helps
Peter