AR
Anupama Roy
Syncfusion Team
November 3, 2005 11:30 AM UTC
Hi Jose,
The problem lies with calling the ShowSplash method from a thread other than the main thread. This is a known issue Defect #599 that has been solved internally .
As a workaround, declare the delegate and call ShowSplash() anywhere in your code. The following code snippet illustrates this.
private delegate void ShowSplashDelegate();
private void ShowSplash()
{
if (this.InvokeRequired)
{
this.Invoke(new ShowSplashDelegate(ShowSplash));
return;
}
SplashPanel1.ShowSplash();
}
Hope this helps you and please create a Direct Trac incident if you would like to receive a private build that contains the fix, for testing purpose.
Thanks for your interest in Syncfusion products.
Regards,
Anu