How can I retrieve MODI reference from COM in my application?

Hiren H Patel picture Hiren H Patel · Feb 14, 2012 · Viewed 7.4k times · Source

I got below error

Retrieving the COM class factory for component with CLSID {40942A6C-1520-4132-BDF8-BDC1F71F547B} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).

How can I retrieve MODI reference from COM in my application ? I have no dll file of MODI. & I have used the reference file called AxInterop.MODI & Interop.MODI But I am not able to execute the application.

I need this file to retrieve text from images.

Anyone can help me? code below:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
       //
    }

    private void btnclick_Click(object sender, EventArgs e)
    {
        MODI.Document objmodi = new MODI.Document();
        objmodi.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH,true,true);
        objmodi.Close(false);

        MODI.Image img = (MODI.Image)pictureBox1.Image;
        MODI.Layout lay = img.Layout;
        string text = lay.Text;
        txtdata.Text = text;
    }
}     

txtdata = Text Box , PictureBox1 = PictureBox to store image, & Btnclick = Button

Answer