I have an Web application where I use various (vb) classes located in the App-Code folder. Based on selection in the web application I call / execute the code in the classes.

All the classes load a crystal report and export the report as a .pdf. I have issues with loading the Crystal Reports (all the reports appear in the solution)

Here is what I am trying to do:

Tried this:

Code:
myCrystalReport1.Load(Application.StartupPath & "\" & "AppNet_csiteWRQCustJobHaulSum.rpt")
Also tried this:

Code:
myCrystalReport1.Load("AppNet_csiteWRQCustJobHaulSum.rpt")
Getting error loading the report. What options to I have? Thank you.