GM
Geetha M
Syncfusion Team
October 13, 2011 07:11 AM UTC
Hi Kevin,
Thank you for evaluating Syncfusion products.
Our HTMLConverter makes use of WebBrowser control which can run only in STA mode. Please make use of the following code to avoid Active X error:
Thread t = new Thread(CreateDocument);
t.SetApartmentState(ApartmentState.STA);
t.Start();
t.Join();
Please try this and let me know if you have any questions.
Regards,
Geetha