views:

33

answers:

1

I got the problem in Crystal Report- Error Messsage:Load report failed.

how to solve this issue??.

+2  A: 

If your report is running for awhile and then falls over make sure you Dispose it.......

if(myReport != null)
{
    myReport .Close();
    myReport .Dispose();
}
Pandiya Chendur