I want the notes.txt to be opened into richtextbox1 on form1_load, but can't figure out how...
I've tried:
Code:
If File.Exists("notes.txt") Then
            RichTextBox1.LoadFile("notes.txt")
        End If
And:
Code:
If File.Exists("notes.txt") Then
            File.OpenRead("notes.txt")
        End If
But none works :S