Page 2 of 2
Re: SilverCloud Write 2.0 Test Release
Posted: Mon Mar 18, 2013 10:19 am
by benji_19994
For Jacobs problem are you saving the file as a Rich Text File Document ?
Re: SilverCloud Write 2.0 Test Release
Posted: Mon Mar 18, 2013 12:37 pm
by Shim
for jacobs error use something like this
Code: Select allDim savedialog As New SaveFileDialog
savedialog.Title = "Save As..."
savedialog.Filter = "Text Files (*.txt)|*.txt|All Files (*.*)|*.*"
If savedialog.ShowDialog = Windows.Forms.DialogResult.OK Then
RichTextBox1.SaveFile(savedialog.FileName, RichTextBoxStreamType.PlainText)
End If
Re: SilverCloud Write 2.0 Test Release
Posted: Mon Mar 18, 2013 2:34 pm
by DeveloperJacob
benji_19994 wrote:For Jacobs problem are you saving the file as a Rich Text File Document ?
Yes
Re: SilverCloud Write 2.0 Test Release
Posted: Mon Mar 18, 2013 11:18 pm
by Jg99
Ok, i can't make it so it opens as formatted for some reason.
I use streamwriter/streamreader for saving/opening files.
I added a new file extension ".scw", which is Silvercloud write files.
Also, I made it so all .scw files are automatically opened with SilverCloud write after first run
Re: SilverCloud Write 2.0 Test Release
Posted: Tue Mar 19, 2013 1:34 pm
by DeveloperJacob
Try this:
http://www.textcontrol.com/en_US/sites/ ... l-express/
It looks like a much more expanded version of the richtextbox.
Re: SilverCloud Write 2.0 Test Release
Posted: Wed Mar 20, 2013 1:10 am
by Jg99
I may use that when I have time. I don't think I will be programming on spring break XD (one week)