We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Entry Point was not found

am using the syncfusion grid control. Converting the grid to word gives me a Entry point was not found exception.

Here's the code I have so far

 private void cmdSaveData_Click(object sender, EventArgs e)
   
{
           
////CEC: this btn is labeled to Define a new group
           
//cmdDefineGroup_Click(sender, e);
       
GridWordConverter converter = new GridWordConverter(true, true);
        converter
.DrawHeader += new GridWordConverterBase.DrawDocHeaderFooterEventHandler(converter_DrawHeader);
        converter
.DrawFooter += new GridWordConverterBase.DrawDocHeaderFooterEventHandler(converter_DrawFooter);
        converter
.GridToWord("Sample.doc", theGrid);
       
System.Diagnostics.Process.Start("Sample.doc");
   
}

   
void converter_DrawFooter(object sender, DocHeaderFooterEventArgs e)
   
{
        e
.Footer.AddParagraph().AppendText("Copyright 2001-2008");
   
}

   
void converter_DrawHeader(object sender, DocHeaderFooterEventArgs e)
   
{
        e
.Header.AddParagraph().AppendText("Syncfusion Inc.");
    }
Error:"
Entry Point was not found EntryPointNotfound exception

1 Reply

RB Ragamathulla B Syncfusion Team June 29, 2012 05:04 AM UTC

Hi Sumita,
 
Thank you for your interest in syncfusion products.
 
I am afraid that I was not able to reproduce the issue. Also I have created a simple sample to test this issue and it is available in the following link.
{Installed path}\Syncfusion\EssentialStudio\{Version}\Windows\Grid.Windows\Samples\2.0\Export\Word Converter Demo
 
Please have a look at the preceding sample and if still the issue exists, could you please try reproducing it in the above sample so that we could sort out the cause of the issue and provide you a solution?
 
Regards,
Ragamathullah B.

Loader.
Live Chat Icon For mobile
Up arrow icon