Viewing 15 posts - 46 through 60 (of 211 total)
Your Report Services implementation looks clean. Don't worry about the email & run time account. (You don't need them for what you're attempting.)
The 401.2 error indicates that there's a problem...
July 7, 2008 at 7:45 am
Sounds like a strange request to me, but you could try this:
In the Code window, add the following:
Dim FirstPage = False
Sub StorePage( PageNumber as String )
If PageNumber = "1" Then
...
July 4, 2008 at 7:32 am
Did you run the Report Services Configuration wizard?
Is everything running on one box? (Multiple boxes requires some considerations regarding security setup.)
Are the IIS virtual directories (Reports and ReportService) set to...
July 4, 2008 at 6:51 am
Filter has a wide range of uses. Generally, it's to constrain a set (short a set) to a list of members meeting a certain criteria.
In your case, its the condition...
July 3, 2008 at 7:38 am
Could you please post with more details, examples and other information. I have no idea what you're asking for.
July 3, 2008 at 7:26 am
Are you getting the memory exception in MSAS or MSRS? Can you run it under BIDS or do you get the same issue there? What version of the software are...
July 3, 2008 at 7:24 am
Once again, we need to remind people to provide more detaiuls on their problem.
Normally, your "fact" table will have one or more measures (like dollars, units, price, etc.) and be...
July 2, 2008 at 8:03 am
Have you tried using the table control instead?
Note: the Matrix control is designed specifically for this behavior. What is the base requirement here? Reporting or dumping data?
July 2, 2008 at 7:49 am
When using the "multi value" parameters, the parameters are bundled up in an array.
Check the following reference:
July 2, 2008 at 7:16 am
The problem you're having is your general IIS and security set up. It has nothing to do with your data source.
Here's what you should do:
a) Make sure IIS is set...
July 2, 2008 at 7:02 am
Because there's some java deployed to support it in the case of parameters (the controls are client side). At this point, I haven't tried to break into any of that,...
June 25, 2008 at 12:56 pm
Remember, MSRS is a web service. So code executes on the server. If the code issues a message box, it would execute and the server and the message box would...
June 25, 2008 at 11:32 am
Instead, consider setting up navigation links that'll allow the userr to jump to that page. For output, recommend (or configure) the report be output to PDF.
Remember, when you're setting up...
June 12, 2008 at 7:13 am
It's actually quite straight forward, but so much depends on the internet configuration you're shooting for. You need to set up / establish this environment before you proceed. Some things...
June 12, 2008 at 7:06 am
Basically, this providor doesn't accept parameters.
Try this:
[Code]
"select cn from 'LDAP://151.8.18.190' where samaccountname='" + @username + "'"
[/Code]
The difference here, is passing the select statement as a string, where @username has...
June 4, 2008 at 7:19 am
Viewing 15 posts - 46 through 60 (of 211 total)