I got the problem in Crystal Report- Error Messsage:Load report failed.
how to solve this issue??.
I got the problem in Crystal Report- Error Messsage:Load report failed.
how to solve this issue??.
If your report is running for awhile and then falls over make sure you Dispose it.......
if(myReport != null)
{
myReport .Close();
myReport .Dispose();
}