Viewing 15 posts - 1 through 15 (of 17 total)
I would just upload the .rdl file to see if it works first.
If not, it might be faster to recreate it in 2000 then to try to discover the downgrade issues.
I hope this...
January 31, 2006 at 1:34 am
IMO, .xxx should have been implemented before considering any other top level domain.It would keep that material in one place, and be easily controllable...
December 5, 2005 at 12:23 am
What version of MDAC is running on the server? Is it the same as your development machine?
You might try using an admin account just to verify if it works.
FYI: Here's...
November 4, 2005 at 2:45 am
Absolutely. There are two SOAP sample applications provided:
C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\Samples\Applications\RSExplorer
C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\Samples\Applications\FindRenderSave
Here you'll find a well documented C# example that will render a report via SOAP / Web Services:
http://blogs.msdn.com/bryanke/articles/71491.aspx
I...
October 6, 2005 at 11:41 pm
It is extremely difficult to diagnose your problem with the information provided. You will just have to keep searching until you find a solution. Try these:
http://www.microsoft.com/technet/prodtechnol/sql/2000/deploy/rsdepgd.mspx
http://support.microsoft.com/default.aspx?scid=kb;en-us;811889&product=sql2k
I don't...
September 20, 2005 at 1:39 am
It's pretty hard to guess from here, but check these out...
Troubleshooting Activation Errors
Goofy udf in model database and collation issue
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=162&messageid=219786
Installing and Configuring SQL Server Reporting Services
http://www.awprofessional.com/articles/article.asp?p=357694&seqNum=2&rl=1
I hope...
September 20, 2005 at 1:04 am
The path is a little goofy with spaces and slashes. Try this:
ReportViewer1.ReportPath = "/SampleReports/Company+Sales";
I hope this is of some help to you.
September 20, 2005 at 12:52 am
I would never recommend this, but if you really, really want anyone to have access to your reports:
with Windows 2000 &...
September 13, 2005 at 12:39 am
Microsoft .net Framework 1.1 is a requirement of Reporting Services. You will appreciate this feature as you develop more complex reports down the road.
1) Your error is caused by your...
September 13, 2005 at 12:26 am
The default PrintController is PrintControllerWithStatusDialog.
You can change this by adding one line
pd.PrinterSettings = printerSettings;
pd.PrintController = StandardPrintController; //add this line
For more fun, try PreviewPrintController.
I hope this is of some help to...
September 9, 2005 at 3:25 am
You will probably have to wait until November when Reporting Services 2005 ships with client side printing.
In the mean time, both of these will work:
http://www.csharphelp.com/archives3/archive545.html
http://blogs.msdn.com/bryanke/articles/category/3529.aspx
I hope this...
September 9, 2005 at 3:14 am
The easiest solution is to put your app on the same level as Reporting Services and keep the web.config(s) separate.
|-MyWebApp.com
|-web.config
|-Reports
|-web.config
|-ReportServer
|-web.config
If you need to have your app...
September 9, 2005 at 3:00 am
I had written a beautiful answer for you, and lost it when I went to post, so I was a little frustrated.
In a nutshell, you need to have websites for Reports and...
September 8, 2005 at 3:58 am
It could be related to the http handler.
Check out these kb articles
http://support.microsoft.com/kb/887787
http://support.microsoft.com/kb/887289
I hope this is of some help to you.
September 7, 2005 at 1:02 am
Drag and drop a table from your toolbox to your report. Drop a numeric field into a column on the footer row.
Voila! A total.
If you already have a table with a detail...
September 6, 2005 at 11:27 pm
Viewing 15 posts - 1 through 15 (of 17 total)