When I try to instantiate a ReportDocument my app crashes - even when wrapped in a try/catch block. This only happens on Windows 7 machines (it might also happen on Vista - I haven't tested it there). Machines running XP don't have a problem at all.
try
{
ReportDocument doc = new ReportDocument(); // This cause the app to crash
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString()); // This never executes
}
The specific dll reference is CrystalDecisions.CrystalReports.Engine version 11.5.3700.0
Any ideas?