how to use BIDS to show SSRS report from Window form

Jigar Parekh

Hello friends I want to display SSRS report in my local Window form. IN report viewer i don't want to display it from URL. I want to show reports without deplyoing it.

Can anyone give me idea for that?

Jigar Parekh

I do it after a longtime.

this way i am calling remote report to local machine and use it on windows form as on web.

reportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Remote;
                reportViewer1.ServerReport.ReportServerUrl = new Uri(textBox1.Text);
                reportViewer1.ServerReport.ReportPath = textBox2.Text;
                reportViewer1.RefreshReport();

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to open a URL in a new window in SSRS report?

From Dev

How to Show and Hide text in an SSRS report?

From Dev

Showing image in a SSRS report using BIDS for CRM 2011

From Dev

SSRS BIDS How to change "Deploy" account credentials

From Dev

SSRS/BIDS - How to add text/label to a pointer?

From Dev

How to import SSRS shared datasets and data sources directly into BIDS 2008?

From Dev

How to import SSRS shared datasets and data sources directly into BIDS 2008?

From Dev

SSRS: How can I accessing report parameters from custom assembly?

From Dev

SSRS: How to pass rowcount of a dataset from main report to subreport (child)

From Dev

Report Viewer control not showing report from SSRS

From Dev

Show message "NO DATA FOUND" in SSRS report

From Dev

SSRS Show a different section of the report if another is empty

From Dev

SSRS report - show tablix only once

From Dev

How to create a report in SSRS by using another report?

From Dev

how to embed ssrs report in outlook?

From Dev

how to increase speed report in ssrs

From Dev

How to group ssrs report with a group

From Dev

How to insert .dwf into an SSRS report

From Dev

How can I supply report parameters to ancillary reports from a "base" SSRS report?

From Dev

How can i use applescript to move from tabs in web page's form window?

From Dev

How to open form from Child Form and show in main form panel

From Dev

SSRS mdx report: use dimension on columns

From Dev

SSRS - Importing data from a CSV file to use as a data source on a report server

From Dev

How to show an image from the filesystem in a Notes form?

From Dev

How to show a modal dialog from a modeless form?

From Dev

SSRS - Custom parameter layout was removed from the report

From Dev

Run SSIS job from SSRS report button?

From Dev

Export separate pdfs from SSRS generated report

From Dev

SSRS: Subscription column order differs from Report

Related Related

  1. 1

    How to open a URL in a new window in SSRS report?

  2. 2

    How to Show and Hide text in an SSRS report?

  3. 3

    Showing image in a SSRS report using BIDS for CRM 2011

  4. 4

    SSRS BIDS How to change "Deploy" account credentials

  5. 5

    SSRS/BIDS - How to add text/label to a pointer?

  6. 6

    How to import SSRS shared datasets and data sources directly into BIDS 2008?

  7. 7

    How to import SSRS shared datasets and data sources directly into BIDS 2008?

  8. 8

    SSRS: How can I accessing report parameters from custom assembly?

  9. 9

    SSRS: How to pass rowcount of a dataset from main report to subreport (child)

  10. 10

    Report Viewer control not showing report from SSRS

  11. 11

    Show message "NO DATA FOUND" in SSRS report

  12. 12

    SSRS Show a different section of the report if another is empty

  13. 13

    SSRS report - show tablix only once

  14. 14

    How to create a report in SSRS by using another report?

  15. 15

    how to embed ssrs report in outlook?

  16. 16

    how to increase speed report in ssrs

  17. 17

    How to group ssrs report with a group

  18. 18

    How to insert .dwf into an SSRS report

  19. 19

    How can I supply report parameters to ancillary reports from a "base" SSRS report?

  20. 20

    How can i use applescript to move from tabs in web page's form window?

  21. 21

    How to open form from Child Form and show in main form panel

  22. 22

    SSRS mdx report: use dimension on columns

  23. 23

    SSRS - Importing data from a CSV file to use as a data source on a report server

  24. 24

    How to show an image from the filesystem in a Notes form?

  25. 25

    How to show a modal dialog from a modeless form?

  26. 26

    SSRS - Custom parameter layout was removed from the report

  27. 27

    Run SSIS job from SSRS report button?

  28. 28

    Export separate pdfs from SSRS generated report

  29. 29

    SSRS: Subscription column order differs from Report

HotTag

Archive