Databases Reference
In-Depth Information
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
End Sub
Protected Sub Button1_Click(sender As Object, e As EventArgs)
Handles Button1.Click
ReportViewer1.ProcessingMode = Microsoft.Reporting.
WebForms.ProcessingMode.Remote
Dim srvReport As Microsoft.Reporting.WebForms.ServerReport
= ReportViewer1.ServerReport
srvReport.ReportServerUrl = New Uri("http://hodentekWin7/
ReportServer_HI")
srvReport.ReportPath = ("/Repshr")
ReportViewer1.Visible = True
End Sub
End Class
7.
While writing the preceding code, make full use of intellisense (see the next
tip) as shown for an element of code here:
After typing in ReportViewer1 , you can type a dot( . ) or hit
Ctrl + J to bring up the intellisense drop-down menu, shown
in the preceding screenshot, and can set the level of the details
you need to see, by going to Edit | Intellisense and choosing
the options. Intellisense is also available in SSMS, and is helpful
while writing the T-SQL Code.
 
Search WWH ::




Custom Search