Re: RichEditingIsAvailable is Always False

  •  09-05-2006, 3:40 AM

    Re: RichEditingIsAvailable is Always False

    Hi Adam,
     
    Thanks for your reply. I've had to change your code a little as it was producing errors. I changed:
     
    Protected WithEvents re As CuteEditor.Editor
     
    to
     
    Protected WithEvents re As New CuteEditor.Editor
     
    as it was giving an object reference error.
    I also changed:
     
    re = "Hello world"
     
    to
     
    re.Text = "Hello world"
     
    as it was giving error statiung that Value of type string cannot be converted to type CuteEditor.Editor. The end result was the Hello World text being displayed in the textarea but RichEditing is still false.
     
    Any further ideas or tests?
     
    Mike
View Complete Thread