the below code accessing the report from the given IP Address... initailly i was facing problem during loading business report from the client computer because the i was used this code
Dim cryRpt As New ReportDocument
cryRpt.Load("D:\Reports\PTC_1.rpt")
on server the above code doing best work because the path is identifing. but from client didn't identify the path.. then i share the folder Reports with readOnly rights so my problem solve because client computer also identify the given path on LAN.
Dim cryRpt As New ReportDocument
cryRpt.Load("\\192.168.3.36\Reports\PTC_1.rpt")
But is there any other best way that no need to specify the path and automatically load the reports like loading Forms. anywhere when create a setup file of application and install in client computer