This question is locked. New answers and comments are not allowed.
Hi, So I have a function in which i try and create a raddocument using the IDocumentFormatProvider.Import.
RadDocument document = null;
IDocumentFormatProvider provider = new DocxFormatProvider();
RadDocument document = null;
IDocumentFormatProvider provider = new DocxFormatProvider();
try
{
document = provider.Import(inputBytes);
}
catch (Exception ex)
{
string ecp = ex.Message;
MessageBox.Show(ex.Message);
}
inputBytes contains the bytes from a docx file, but when i run the function i get the exception "Dir not found".
Any help on this would be great.
Thanks.