load image from rtf into picturebox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gobblegob
    New Member
    • Dec 2007
    • 133

    load image from rtf into picturebox

    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:

    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
    Any suggestions?
    Thanks in advanced
    GobbleGob.
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    What command string is telling rtf that it is a picture? What does the rtf for it look like?

    Comment

    Working...