Rich text box and RTF help needed
Problem is this: even with read only = True it will still let you click on any images and resize them and it does this to any of the HTML links Google test <http://www.google.com>
instead of just showing the anchor that it should.
On the other hand, If I use RichTextBox1.Enabled = False it greys out the background, won't scroll and the links are still doing the same messed up thing.
Is there an way to have the RichTextBox show the RTF file and not allow the pictures to be resizable and the links to show and work as they should?
Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
RichTextBox1.ReadOnly = True
Dim executing_assembly As System.Reflection.Assembly = _
Me.GetType.Assembly.GetEntryAssembly()
Dim my_namespace As String = executing_assembly.GetName().Name.ToString()
Dim text_stream As Stream = executing_assembly.GetManifestResourceStream(my_namespace + ".Help.rtf")
If Not (text_stream Is Nothing) Then
Dim stream_reader As New StreamReader(text_stream)
RichTextBox1.Rtf = stream_reader.ReadToEnd()
stream_reader.Close()
End If
End Sub

