Default Avatar

Designsbyray

Designsbyray

About

Username
Designsbyray
Location
Ohio, USA
Joined
Visits
0
Last Active
Roles
Members

Comments

  • Does your code create the png files you have exported to your fileName location? I would think they should be visible on your local system. Once you verify the files are being created you need to make sure your web application is using the right loc…
  • I don't see where you are calling the report from the code you have posted. The report has a property you can set called: PrintSettings.Copies which takes a int. I think this may help you do what you want.
  • I know this is hack but you can remove the data sources from the report, in the designer, once you have finished creating it. That way it can't make any database calls you added for testing. As long as the data is registered with the correct name th…
  • When I see that error, it usually happens when I call a 32bit ODBC when I am calling it from a 64bit process (or vice versa). I would guess this could happen with a DSN as well.
  • I think you can do something like this if you are calling the report from code: rpt.Dictionary.DataSources.FindByName( "records" ).Delete(); //rpt is your report object and records is the name of the datasource. or rpt.Dictionary.DataSources[0].D…