Hi guys,
I am reading rtf files but i would like to load the picture in the rtf
into PictureBox1 but i cant work it out. This is how im reading the
rtf:
Any suggestions?
Thanks in advanced
GobbleGob.
I am reading rtf files but i would like to load the picture in the rtf
into PictureBox1 but i cant work it out. This is how im reading the
rtf:
Code:
With OpenFileDialog1
List = "C:\test.rtf"
Dim objReader As New System.IO.StreamReader(List)
Do While objReader.Peek() <> -1
textline = objReader.ReadLine()
ComboBox1.Items.Add(textline)
Loop
End With
Thanks in advanced
GobbleGob.
Comment