Click here to Skip to main content
15,890,741 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
what we do if runs asp.net web application with Crystal Report to other desktop(other country) with remote desktop.
Posted
Comments
Sergey Alexandrovich Kryukov 9-May-12 1:37am    
?
Sandeep Mewara 9-May-12 2:20am    
This is not a well framed question! We cannot work out what you are trying to do/ask from the post. Please elaborate and be specific.
Use the "Improve question" link to edit your question and provide better information.

1 solution

please check path you have given of crystal report and do as following it might help you. Copy your rpt files from your project and make one folder of name rpt in client pc on c drive and do followingin app.config file

HTML
<add key="rptpath" value="C:\\rpt" />


and do on form on which you are showing report

C#
rptpath = ConfigurationManager.AppSettings["rptpath"] + "\\" +"your report.rpt";
   obj.Load(rptpath)


before doing all above things right click on crystal report from solution explorer and and set property copy to output directory to copy always
 
Share this answer
 
Comments
Mas11 14-May-12 7:07am    
Thanks..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900