This is just the beta release, I'm hoping to get more good suggestions...I still have some more to add but this is most of it. I added the Visual Studio 2010 files for it also....for learning purposes and I'd like some credit if you use any part of it that I coded (which is most of it).
Save, Open and Print .Txt and .Rtf Files.
Click Weekday or Month and it auto-detects the weekday or month and inserts in into the Text Area.
Text 2 Speech, says the text in the text area.
Cap 1st letter, caps the 1st letter of all words.
Encryption and decryption, coded by. NextGen1
Binary to Text and Text to Binary
Line, word and Character counters at the bottom.
undo, redo, open, save, and close quick buttons.
Cut, Copy, Paste and Select All.
Insert Date/Time.
Font and Font Color Buttons
Checks for updates and inserts the download link into a text box.
Looks Nice , good job. I'd replace this with Notepad.
Same here. Can't wait to download and test this thing.
Hell, its better than notepad.
I'm getting someone to approve one second.
Thank you everyone ;D
The Source Code Virus Scan is being queued with VirusTotal.com and same thing with the Notes 3.0.rar, I hit post a little to soon...So yeah but they are clean.
I tested and Dave approved. I love this program! Nice work.
++rep great program
Well again thanks everyone, if you come up with any changes or suggestions please PM or Post it.
I changed the title for the quick buttons, I'm going to add a Find dialog and something else which is a secret for now ^.^ am I missing anything?
Looking through the source now, will get back to you if I have any suggestions.
Originally Posted by o0OpurezO0o
Hell, its better than notepad.
Its not as fast and cpu efficient as notepad.
Okay, haven't had a chance to read through the whole source yet, but this section could be shortened immensely:
[php]
If TextBox2.Text = "1" Then
TextArea.Text += " January"
TextBox2.Clear()
Else
If TextBox2.Text = "2" Then
TextArea.Text += " February"
TextBox2.Clear()
Else
If TextBox2.Text = "3" Then
TextArea.Text += " March"
TextBox2.Clear()
Else
If TextBox2.Text = "4" Then
TextArea.Text += " April"
TextBox2.Clear()
Else
If TextBox2.Text = "5" Then
TextArea.Text += " May"
TextBox2.Clear()
Else
If TextBox2.Text = "6" Then
TextArea.Text += " June"
TextBox2.Clear()
Else
If TextBox2.Text = "7" Then
TextArea.Text += " July"
TextBox2.Clear()
Else
If TextBox2.Text = "8" Then
TextArea.Text += " August"
TextBox2.Clear()
Else
If TextBox2.Text = "9" Then
TextArea.Text += " September"
TextBox2.Clear()
Else
If TextBox2.Text = "10" Then
TextArea.Text += " October"
TextBox2.Clear()
Else
If TextBox2.Text = "11" Then
TextArea.Text += " November"
TextBox2.Clear()
Else
If TextBox2.Text = "12" Then
TextArea.Text += " December"
TextBox2.Clear()
End If
End If
End If
End If
End If
End If
End If
End If
End If
End If
End If
End If
[/php]
Shortened to:
[php]
Dim month as integer
If Integer.TryParse(TextBox2.Text, month) Then
TextArea.Text &= " " & MonthName(month)
TextBox2.Clear
End If
[/php]
And this:
[php]
If TextBox1.Text = "1" Then
TextArea.Text += " Monday"
TextBox1.Clear()
Else
If TextBox1.Text = "2" Then
TextArea.Text += " Tuesday"
TextBox1.Clear()
Else
If TextBox1.Text = "3" Then
TextArea.Text += " Wednesday"
TextBox1.Clear()
Else
If TextBox1.Text = "4" Then
TextArea.Text += " Thursday"
TextBox1.Clear()
Else
If TextBox1.Text = "5" Then
TextArea.Text += " Friday"
TextBox1.Clear()
Else
If TextBox1.Text = "6" Then
TextArea.Text += " Saturday"
TextBox1.Clear()
Else
If TextBox1.Text = "7" Then
TextArea.Text += " Sunday"
TextBox1.Clear()
End If
End If
End If
End If
End If
End If
End If
[/php]
Could be shortened to:
[php]
Dim day As Integer
If Integer.TryParse(TextBox1.Text, day) Then
Dim dayList As New List(Of String)(New String() {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"})
TextArea.Text &= " " & dayList(day - 1)
TextBox1.Clear()
End If
[/php]
But overall it's looking fairly good. Nice work.
hmm.. i dont see anything.. But i replaced notepad with it (Yes i back up)
Suggestions please, to add to the program or change....Notes 3.0 will be released February 3rd, 2011 as planned.