Showing posts with label control. Show all posts
Showing posts with label control. Show all posts

Tuesday, March 27, 2012

Does sql server 2005 has any reportviewer control with VS 2003

Does sql server 2005 has any reportviewer control with VS 2003,

I only see they have a control with VS 2005 - sql 2005

i don't see any viewer control with VS 2003 - sql 2005.

Please does any one know of any control that will be a great help.

we have lot of reports to be built, our project is totally built using vs 2003 and i am scared to even migrate to vs 2005 read lot of issues on migration since we are using lot of 3rd party controls in it which are solely built using framework 1.1.

Thank you very much for the reply.

No - the ReportViewer controls are available for ASP.Net 2.0.

You can use IFrames or the Browser control to add reports to applications built with VS 2003.

Hope that helps,

-Lukasz

Sunday, March 25, 2012

Does SP2 have calendar control?

Hello,
If I recollect as the VSLive! conference Microsoft stated that SP2 would
have a calendar control for RS. Is this true? Thanks in advance.Nope. They must have been talking about RS 2005.
There is a new client print control but that is it for new controls.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"Jake Smythe" <rondican@.hotmail.com> wrote in message
news:eeqruazTFHA.336@.TK2MSFTNGP09.phx.gbl...
> Hello,
> If I recollect as the VSLive! conference Microsoft stated that SP2 would
> have a calendar control for RS. Is this true? Thanks in advance.
>sql

Sunday, March 11, 2012

Does Image Control support missing images?

Is there a clever way to display an alternate image or message if the image
control cannot find the image as specified in the External URL?
In other words... we supply the image name via a field... But if the image
does not exist, we get the red X. I want to display something other than the
red X.
Any ideas?
Thanks,
JimIf you have SP1 installed, then you could use an expression like this to
"hide" non-existing external images.
=iif(Trim(Fields!ExternalImagePath.Value) = "", Nothing,
Fields!ExternalImagePath.Value)
I.e. if the image.Value expression evaluates to Nothing, no red X will be
shown.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Jim L" <jim@.noaddress.com> wrote in message
news:uL31USbdEHA.1648@.TK2MSFTNGP11.phx.gbl...
> Is there a clever way to display an alternate image or message if the
image
> control cannot find the image as specified in the External URL?
> In other words... we supply the image name via a field... But if the
image
> does not exist, we get the red X. I want to display something other than
the
> red X.
> Any ideas?
> Thanks,
> Jim
>|||Thanks Robert for taking the time to respond... however...
What I am looking for is this - The field will be populated with the name of
the image, we just don't know if the image will be there or not.
The image control in ASP.Net supports this - it will display a text message
instead of the Red X.
Jim
"Robert Bruckner [MSFT]" <robruc@.online.microsoft.com> wrote in message
news:%23NIFYbbdEHA.1952@.TK2MSFTNGP11.phx.gbl...
> If you have SP1 installed, then you could use an expression like this to
> "hide" non-existing external images.
> =iif(Trim(Fields!ExternalImagePath.Value) = "", Nothing,
> Fields!ExternalImagePath.Value)
> I.e. if the image.Value expression evaluates to Nothing, no red X will be
> shown.
> --
> This posting is provided "AS IS" with no warranties, and confers no
rights.
>
> "Jim L" <jim@.noaddress.com> wrote in message
> news:uL31USbdEHA.1648@.TK2MSFTNGP11.phx.gbl...
> > Is there a clever way to display an alternate image or message if the
> image
> > control cannot find the image as specified in the External URL?
> >
> > In other words... we supply the image name via a field... But if the
> image
> > does not exist, we get the red X. I want to display something other than
> the
> > red X.
> >
> > Any ideas?
> >
> > Thanks,
> > Jim
> >
> >
>|||An image in Reporting Services is not an ASP.NET image control. The desired
functionality is currently not supported. The closest you can get today is:
* either "hiding" non-existing external images through expressions as
outlined in the previous posting
* or use an expression on the Visibility property of the Image reportitem to
conditionally hide non-existing images. The expression would make a call
into a custom assembly with the image path value as parameter and would
return true if the image exists - which would then not hide the Image
reportitem. So it is doable right now, but there is some work involved to
get it done.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Jim L" <jim@.noaddress.com> wrote in message
news:OWg%23LibdEHA.1356@.TK2MSFTNGP09.phx.gbl...
> Thanks Robert for taking the time to respond... however...
> What I am looking for is this - The field will be populated with the name
of
> the image, we just don't know if the image will be there or not.
> The image control in ASP.Net supports this - it will display a text
message
> instead of the Red X.
> Jim
>
> "Robert Bruckner [MSFT]" <robruc@.online.microsoft.com> wrote in message
> news:%23NIFYbbdEHA.1952@.TK2MSFTNGP11.phx.gbl...
> > If you have SP1 installed, then you could use an expression like this to
> > "hide" non-existing external images.
> > =iif(Trim(Fields!ExternalImagePath.Value) = "", Nothing,
> > Fields!ExternalImagePath.Value)
> >
> > I.e. if the image.Value expression evaluates to Nothing, no red X will
be
> > shown.
> >
> > --
> > This posting is provided "AS IS" with no warranties, and confers no
> rights.
> >
> >
> >
> > "Jim L" <jim@.noaddress.com> wrote in message
> > news:uL31USbdEHA.1648@.TK2MSFTNGP11.phx.gbl...
> > > Is there a clever way to display an alternate image or message if the
> > image
> > > control cannot find the image as specified in the External URL?
> > >
> > > In other words... we supply the image name via a field... But if the
> > image
> > > does not exist, we get the red X. I want to display something other
than
> > the
> > > red X.
> > >
> > > Any ideas?
> > >
> > > Thanks,
> > > Jim
> > >
> > >
> >
> >
>

Wednesday, March 7, 2012

Does anyone know where to find a simple sample code that uses asp.net 2.0 and SQL 2000 to

Does anyone know where to find a simple sample showing you how to use asp.net 2.0 with the login control to direct you to another aspx page using SQL 2000 as the database on a hosted server? I have been beating my head against the wall trying to figure this out and would be very appreciative if anyone knows a place out there that shows this? I can find many sites that show you how to do this with SQL 2005, but not SQL 2000. Thanks - Chris

Hello:

Actually, for this part you can follow along with this article.

http://aspnet.4guysfromrolla.com/articles/040506-1.aspx

The key is how to connect to an existing database using the ASP.NET SQL Server Registration Tool (aspnet_regsql.exe).

You can find this tool in your ASP.NET 2.0 installation folder:%WINDOWS%\Microsoft.NET\Framework\v2.0.50727

Hope this gives a start point. I ran this tool before and I cannot remember there is any difference compare to SQL Server 2005 Dev version. Express is a little different as you've already found out.

|||

It seems the link in previous post is about sql 2005 so I find another link :

how do I setup the new ASP.NET Membership, Role Management, and Personalization services to use a regular SQL Server instead of SQL Express

Hope it helps.

|||Actually I was looking for some sample code that has the connect string and what not. I have already read that, I keep getting errors on my host website. Mainly when trying to login. Anyone?|||

Could you show your error message ?

You can find different connection stringhere.

Friday, February 17, 2012

Document map pane refreshing ENTIRE page!

I am using the ReportViewer control with SRS2005. I have an extremely large report (243 pages) - however. It takes an extremely long time to load the report as well as populate the document map pane.

When one clicks a link in the document map pane, it refreshes the entire page - and thus causes the report to take another 2-3min to repopulate the document map.

However, if I were to access the Report Server directly, clicking a link only causes the main content page to be refreshed.

This is a substantial difference between selectively refreshing as opposed to refreshing the ENTIRE page and hence taking 2-3min between links.

I am defining the report as:

<rsweb:ReportViewer ID="rvMain" runat="server" AsyncRendering="true" ProcessingMode="Remote" ShowParameterPrompts="False" OnPageNavigation="rvMain_PageNavigation" Width="100%" Height="800px" DocumentMapCollapsed="False" DocumentMapWidth="300px">
</rsweb:ReportViewer>

Hi,

Have you found a solution to this issue?

From my investigation, it seems that the problem is caused by using the OnPageNavigation event, since when removing it (in my case) the document map behavior does not reproduce.

I also found cases where the toggle functionality stoped working as of catching the OnPageNavigationEvent, after installing SQL 2005 SP1.

To me it looks like a bug in the web version ReportViewer control.

Regards

|||Hi,
I've a similar problem with Internet Explorer with SQL Server 2005, SP 2.
It would be of great help if someone could give a soln or provide some direction.

Document map pane refreshing ENTIRE page!

I am using the ReportViewer control with SRS2005. I have an extremely large report (243 pages) - however. It takes an extremely long time to load the report as well as populate the document map pane.

When one clicks a link in the document map pane, it refreshes the entire page - and thus causes the report to take another 2-3min to repopulate the document map.

However, if I were to access the Report Server directly, clicking a link only causes the main content page to be refreshed.

This is a substantial difference between selectively refreshing as opposed to refreshing the ENTIRE page and hence taking 2-3min between links.

I am defining the report as:

<rsweb:ReportViewer ID="rvMain" runat="server" AsyncRendering="true" ProcessingMode="Remote" ShowParameterPrompts="False" OnPageNavigation="rvMain_PageNavigation" Width="100%" Height="800px" DocumentMapCollapsed="False" DocumentMapWidth="300px">
</rsweb:ReportViewer>

Hi,

Have you found a solution to this issue?

From my investigation, it seems that the problem is caused by using the OnPageNavigation event, since when removing it (in my case) the document map behavior does not reproduce.

I also found cases where the toggle functionality stoped working as of catching the OnPageNavigationEvent, after installing SQL 2005 SP1.

To me it looks like a bug in the web version ReportViewer control.

Regards

Document Map Formatting

Does anyone know if it is possible to control the formatting of the Document Map in SSRS? I would like to set the background color if possible.

I'm not sure what you mean by "Document Map". Are you just asking how to set the background color of a report?

On the layout tab, right click the background grid (body) of the report. Click properties then change the background color in the properties window.

|||If you edit the properties of a table or a matrix group you have options for Document map label and Parent Group. These attributes draw the Document Map dynamically. At runtime the map is a plain black font on white background and it does not take on the properties of the report body.|||I'm not sure you can Ben, the style is controlled by a style sheet:

Code Snippet

style sheet:<link href="/Reports/Reserved.ReportViewerWebControl.axd?OpType=StyleSheet&amp;Version=2005.090.3042.00" rel="stylesheet" type="text/css" />

|||Can you change the stylesheet?|||

I found a blog that demonstrates how to override the CSS at runtime.

http://blogs.msdn.com/bimusings/archive/2005/07/08/436887.aspx

Document Map

Is there any way to control the width of the document map? Is there a
setting in any of the configuration files? Thanks.I think the document map settings are automatic... However the end user can
change the width by dragging with the mouse..( but I do not think you can
change the width settings on the fly, or even as a visible attribute in the
dev environment..)
Although I haven't checked you might be able to set them directly in the RDL.
--
Wayne Snyder MCDBA, SQL Server MVP
Mariner, Charlotte, NC
I support the Professional Association for SQL Server ( PASS) and it''s
community of SQL Professionals.
"PD" wrote:
> Is there any way to control the width of the document map? Is there a
> setting in any of the configuration files? Thanks.