AD
Administrator
Syncfusion Team
April 4, 2006 01:56 PM UTC
Hi Chris,
Thanks for your interest in Syncfusion.
I am working on this issue and will get back to you at the earliest possible.
Regards,
Praveena.
CC
Chris C
April 4, 2006 06:45 PM UTC
I found a solution for the problem. I moved the docForm.Show to the end of the load handler and preceded it with this.Show. It seems that showing the mainform before the doc solves the problem. Here is the code change I made:
this.Show();
docForm.Show();
Chris