Click here to Skip to main content
Click here to Skip to main content

Inserting images into a RichTextBox control (the OLE way)

By , 1 Nov 2005
 

Sample Image - MyExtRichTextBox.jpg

Introduction

This article shows how you can insert images, controls and ActiveX objects into a .NET RichTextBox control by using the OLE way, like explained in the Microsoft site. Unfortunately, it covers only the sample with a C++ source code, so I need to implement a similar solution in managed code (C#).

There are other related articles for inserting images and OLE objects into a RichTextBox, but they are using RTF codes, and I need a more specialized control suitable to be used for chat and to provide a way to insert emoticons, progress bars and images, and finally, recover them by getting their OLE handles or any object attribute.

Special thanks to Khendys Gordon for the article: "Insert Plain Text and Images into RichTextBox at Runtime" and John Fisher for his article: "Use IRichEditOle from C#".

Background

To achieve the solution, I need to use the P/Invoke (Platform Invoke) methods. I got a lot of information from pinvoke.net.

The first step to insert an OLE object into a RichTextBox is to get its IRichEditOle interface. It could be done, by sending the message EM_GETOLEINTERFACE to the control:

this.IRichEditOle = SendMessage(richEditHandle, EM_GETOLEINTERFACE, 0);

With this interface, you can insert objects through the REOBJECT struct. It is important to note the you can specify the insertion point, the aspect and the dwUser variable to store flags or any related information for this object, so you can recover it at any time for update.

//-----------------------
REOBJECT reoObject=new REOBJECT();
reoObject.cp = this._richEdit.TextLength;
reoObject.clsid = guid;
reoObject.pstg = pStorage;
reoObject.poleobj = Marshal.GetIUnknownForObject(control);
reoObject.polesite = pOleClientSite;
reoObject.dvAspect = (uint)(DVASPECT.DVASPECT_CONTENT);
reoObject.dwFlags = (uint)(REOOBJECTFLAGS.REO_BELOWBASELINE);
reoObject.dwUser = 1;
 
this.IRicEditOle.InsertObject(reoObject);
//-----------------------

For inserting images, you need to implement the interface IDataObject, in this case I named it myDataObject. This class is an OLE callback object that uses the FORMATETC and the STGMEDIUM structures to display the image, telling to the OLE container that this object is a GDI medium (TYMED_GDI) with a bitmap clipboard format (CF_BITMAP).

public class myDataObject : IDataObject
{
    private Bitmap mBitmap;
    public FORMATETC mpFormatetc;

    #region IDataObject Members

    private const uint S_OK = 0;
    private const uint E_POINTER = 0x80004003;
    private const uint E_NOTIMPL = 0x80004001;
    private const uint E_FAIL = 0x80004005;

    public uint GetData(ref FORMATETC pFormatetc, 
                        ref STGMEDIUM pMedium)
    {
        IntPtr hDst = mBitmap.GetHbitmap();

        pMedium.tymed = (int)TYMED.TYMED_GDI;
        pMedium.unionmember = hDst;
        pMedium.pUnkForRelease = IntPtr.Zero;

        return (uint)S_OK;
    }

    ...

    #endregion

    public myDataObject()
    {
        mBitmap = new Bitmap(16, 16);
        mpFormatetc = new FORMATETC();
    }

    public void SetImage(string strFilename)
    {
        try
        {
            mBitmap = (Bitmap)Bitmap.FromFile(strFilename, true);

            // Clipboard format = CF_BITMAP
            mpFormatetc.cfFormat = CLIPFORMAT.CF_BITMAP;
            // Target Device = Screen
            mpFormatetc.ptd = IntPtr.Zero;
            // Level of detail = Full content
            mpFormatetc.dwAspect = DVASPECT.DVASPECT_CONTENT;
            // Index = Not applicaple
            mpFormatetc.lindex = -1;
            // Storage medium = HBITMAP handle
            mpFormatetc.tymed = TYMED.TYMED_GDI;
        }
        catch
        {
        }
    }

    public void SetImage(Image image)
    {
        try
        {
            mBitmap = new Bitmap(image);

            // Clipboard format = CF_BITMAP
            mpFormatetc.cfFormat = CLIPFORMAT.CF_BITMAP;
            // Target Device = Screen
            mpFormatetc.ptd = IntPtr.Zero;
            // Level of detail = Full content
            mpFormatetc.dwAspect = DVASPECT.DVASPECT_CONTENT;
            // Index = Not applicaple
            mpFormatetc.lindex = -1;
            // Storage medium = HBITMAP handle
            mpFormatetc.tymed = TYMED.TYMED_GDI;
        }
        catch
        {
        }
    }
}

Take a look at how the member method SetImage creates a Bitmap object to use its handle when the GetData is called.

Now, here is how the object is inserted into the RichEditBox creating a shared global memory and getting a pointer to it (IStorage) and using the OleClientSite interface from the IRichEditOle.

public void InsertMyDataObject(myDataObject mdo)
{
    if (mdo == null)
        return;

    //-----------------------
    ILockBytes pLockBytes;
    int sc = CreateILockBytesOnHGlobal(IntPtr.Zero, 
                             true, out pLockBytes);

    IStorage pStorage;
    sc = StgCreateDocfileOnILockBytes(pLockBytes, (uint)
        (STGM.STGM_SHARE_EXCLUSIVE|STGM.STGM_CREATE|
                                   STGM.STGM_READWRITE), 
        0, out pStorage);
    
    IOleClientSite pOleClientSite;
    this.IRichEditOle.GetClientSite(out pOleClientSite);
    //-----------------------

    Guid guid = Marshal.GenerateGuidForType(mdo.GetType());

    Guid IID_IOleObject = 
      new Guid("{00000112-0000-0000-C000-000000000046}");
    Guid IID_IDataObject = 
      new Guid("{0000010e-0000-0000-C000-000000000046}");
    Guid IID_IUnknown = 
      new Guid("{00000000-0000-0000-C000-000000000046}");

    object pOleObject;

    int hr = OleCreateStaticFromData(mdo, ref IID_IOleObject, 
        (uint)OLERENDER.OLERENDER_FORMAT, ref mdo.mpFormatetc,
        pOleClientSite, pStorage, out pOleObject);

    if (pOleObject == null)
        return;
    //-----------------------

    
    //-----------------------
    OleSetContainedObject(pOleObject, true);

    REOBJECT reoObject = new REOBJECT();

    reoObject.cp = this._richEdit.TextLength;

    reoObject.clsid = guid;
    reoObject.pstg = pStorage;
    reoObject.poleobj = Marshal.GetIUnknownForObject(pOleObject);
    reoObject.polesite = pOleClientSite;
    reoObject.dvAspect = (uint)(DVASPECT.DVASPECT_CONTENT);
    reoObject.dwFlags = (uint)(REOOBJECTFLAGS.REO_BELOWBASELINE);
    reoObject.dwUser = 0;

    this.IRichEditOle.InsertObject(reoObject);
    //-----------------------

    //-----------------------
    Marshal.ReleaseComObject(pLockBytes);
    Marshal.ReleaseComObject(pOleClientSite);
    Marshal.ReleaseComObject(pStorage);
    Marshal.ReleaseComObject(pOleObject);
    //-----------------------
}

There are other methods to insert controls and ActiveX objects, they look very similar to the above method, so please review the source code.

Points of Interest

And finally, how are the controls updated?

This is the trick, you need to use a timer and call the method UpdateObjects. This method performs a search for all objects in the RichTextBox and if they are marked as special (in my case I use the dwUser variable), they will be updated:

public void UpdateObjects()
{
    int k = this.IRichEditOle.GetObjectCount();

    for (int i = 0; i < k; i++)
    {
        REOBJECT reoObject = new REOBJECT();

        this.IRichEditOle.GetObject(i, reoObject, 
          GETOBJECTOPTIONS.REO_GETOBJ_ALL_INTERFACES);

        if (reoObject.dwUser == 1)
        {
            Point pt = this._richEdit.GetPositionFromCharIndex(reoObject.cp);
            Rectangle rect = new Rectangle(pt, reoObject.sizel);

            this._richEdit.Invalidate(rect, false); // repaint
        }
    }
}

There is a lot of work required for optimizing this control but for now, any suggestion is appreciated.

Using the code

To use the code, simply add a reference to the control, put a normal RichTextBox into the form and then replace the type for MyExtRichTextBox:

MyExtRichTextBox.MyExtRichTextBox richTextBox1;

Tip

I update objects by creating an array of controls (buttons and progress bars) and adding a timer to the form, then calling the method UpdateObjects like this:

private void timer1_Tick(object sender, System.EventArgs e)
{
    for (int i = 0; i < ar.Count; i++)
    {
        itimer++;
        if (itimer > 100)
            itimer = 0;

        object obj = ar[i];
        if (obj is Button)
        {
            Button bt = (Button) obj;

            if (bt.Text != "Clicked")
                bt.Text = "button " + i.ToString() + 
                          " - " + itimer.ToString();
        }
        else
        {
            ProgressBar pb = (ProgressBar) obj;

            if (pb.Value + 1 > 100)
                pb.Value = 0;

            pb.Value = pb.Value + 1;
        }
    }

    richTextBox1.UpdateObjects();
}

History

  • Version 1.0 - Nov. 1 / 2005

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Oscar Londono
Software Developer (Senior) Kinecor Ltee
Canada Canada
Member
I have been working for 16 years as Analyst Programmer in several companies.
 
I love the Object Oriented Programming paradigm and now, I love C#. Currently, I works with X++ in Microsoft Dynamics AX systems.
 
Also, I like to perform my work by using methodologies like Rational Unified Process (RUP).
 
Please, take a look to my last project: Meetgate

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionbutton with one clickmemberseckin durgay29 Jun '12 - 2:08 
Questionhow to print?membersbryu916@naver.com9 Mar '11 - 15:03 
GeneralNot able to access COM activex control's property before inserting it to myExtRichTextBOx controlmemberbibhucodeproject3 May '10 - 1:16 
Generalimage (-object) is not below the baselinememberchand00513 Mar '10 - 3:34 
GeneralObject and Memory ManagementmemberCLoUdYvIsIoN2 Dec '09 - 9:33 
QuestionAnimated gifsmemberMember 39617224 Aug '09 - 5:34 
AnswerRe: Animated gifsmemberCLoUdYvIsIoN2 Dec '09 - 9:42 
GeneralUnable to cast COM object of type 'System.__ComObject' to interface type 'MyExtRichTextBox.IRichEditOle'memberchenyonghao30 Mar '09 - 15:01 
GeneralRemoving Ole Object from RTBmemberThe Innovator24 Mar '09 - 9:10 
QuestionHow could the OLE content be saved in SQL Server?memberRadox26 Jan '09 - 3:18 
AnswerRe: How could the OLE content be saved in SQL Server?membercodemachine99911 Nov '09 - 7:24 
GeneralRe: How could the OLE content be saved in SQL Server?memberRadox19 Nov '09 - 6:58 
GeneralSomething goes wrongmemberAleksei Krassovskikh19 Sep '08 - 2:52 
GeneralInsertMyDataObjectmemberalex_tver29 May '08 - 12:35 
QuestionAnyone done this with VB?memberPsychUK25 Sep '07 - 2:15 
AnswerRe: Anyone done this with VB?memberTakanashi Canon21 Apr '11 - 1:33 
GeneralPlease Reply!membermohadese4 Aug '07 - 21:39 
QuestionProblem with insert Textbox?membermohadese4 Aug '07 - 5:52 
AnswerRe: Problem with insert Textbox?memberOscar Londoño5 Aug '07 - 3:14 
GeneralRe: Problem with insert Textbox?membermohadese5 Aug '07 - 22:32 
GeneralRe: Problem with insert Textbox?memberOscar Londoño6 Aug '07 - 5:28 
GeneralHaving problem whit MouseEventHandlermembermohadese4 Aug '07 - 5:48 
Generalsomething wrong when debug in vs2005memberGIS_Developer25 Jun '07 - 20:19 
GeneralRe: something wrong when debug in vs2005memberGIS_Developer25 Jun '07 - 20:59 
GeneralRe: something wrong when debug in vs2005memberborkpio24 Jul '07 - 2:48 
GeneralFreeing memorymemberpowermcpet21 May '07 - 8:22 
QuestionVB.NET 2005memberclarkwgriswald21 Apr '07 - 7:24 
QuestionHow Can I Get my Picmemberczlc13 Nov '06 - 22:12 
AnswerRe: How Can I Get my PicmemberOscar Londoño5 Aug '07 - 3:24 
Questionhow to input text in a textbox which have been inserted into a RichTextBox controlmembershgyl1 Nov '06 - 4:08 
AnswerRe: how to input text in a textbox which have been inserted into a RichTextBox controlmemberOscar Londoño5 Aug '07 - 3:25 
QuestionInserting linked objectmemberSanjaySSK8 Oct '06 - 18:51 
AnswerRe: Inserting linked objectmemberOscar Londoño5 Aug '07 - 3:32 
GeneralPerhaps easier....memberobjm22 Aug '06 - 5:04 
GeneralRe: Perhaps easier....memberOscar Londoño5 Aug '07 - 3:27 
GeneralRe: Perhaps easier....memberzmrcic16 Aug '07 - 21:54 
QuestionHow controls in richtextbox can use contextmenu & Resize them?membermansoureh14 Aug '06 - 1:52 
AnswerRe: How controls in richtextbox can use contextmenu &amp; Resize them? [modified]memberOscar Londoño5 Aug '07 - 3:26 
GeneralFailed to save the inserted ActiveX controlsmemberyangzw_cn1 Jul '06 - 5:00 
GeneralRe: It wants converting with the image which is different object.memberOscar Londoño30 Jun '06 - 4:23 
Generalcopy / paste problemmembercatialin8 Jun '06 - 2:05 
GeneralRe: copy / paste problemmemberOscar Londoño30 Jun '06 - 4:21 
GeneralRe: copy / paste problemmemberdennisV1 Nov '06 - 16:16 
GeneralConverting images into HTMLmemberCyrus Chan20 May '06 - 5:28 
GeneralRe: Converting images into HTMLmemberOscar Londoño30 Jun '06 - 4:07 
Questionpopulate the Control inside the richtextboxmemberhuangxw10 May '06 - 4:04 
QuestionGetObject is not Returning the objectsmemberrama dadi9 May '06 - 21:18 
AnswerRe: GetObject is not Returning the objectsmemberOscar Londoño30 Jun '06 - 4:06 
QuestionGetObject is not Returning the objects in MyExtRichTextBoxmemberrama dadi9 May '06 - 18:52 
GeneralFrom where to get RichBoxcontrolmembersasire186 Apr '06 - 20:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 1 Nov 2005
Article Copyright 2005 by Oscar Londono
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid