Using .NET version 3.0.0.41081. Why would I get an "Object reference not set to an instance of an object" from the following lines of code (File.Exists(filePath) evaluates to true):
Presentation pres = null;
string filePath = @"\\App2\Presentation Slides\02 Services Offering\Consolidated Report Mini Pages.ppt";
if(File.Exists(filePath))
{
pres = new Presentation(filePath); //
}
stack trace: at Aspose.Slides.Presentation.( )
at Aspose.Slides.Presentation..ctor(String file)
at WebPresentationBuilder.SlideDisplay.PresentSlide(String id) in D:\Visual Studio 2008\Projects\WebPresentationBuilder\SlideDisplay.aspx.cs:line 45