Showing posts with label display. Show all posts
Showing posts with label display. Show all posts

Friday, March 30, 2012

Increase Tooltip display time?

Hi All,

Is it possible to increase the amount of time a tooltip is displayed within report manager?

Regards,
JonNo I don′t think that this is customizable within the report.

HTH, Jens Suessmeyer.

http://www.sqlserver2005.de|||

Hello

can u tell me

How to put tool tip in My report.

thanx

ki

|||There is a setting for controls naming tooltip which can define any tooltip displayed if you hover over the specified item.

HTH, jens Suessmeyer.

http://www.sqlserver2005.de|||Hi Ki,

In the properties box all objects, in the "General" tab is an option

for "Tooltip". You can put an expression in here to define a

tooltip.

Regards,
Jon

Increase Paging

I want to display everything on my report on the same screen without having
to go to any other pages. How can I increase what is shown on the first page
of a report?You could increase the PageHeight/PageWidth settings for the report. If you
are using RS 2005, you could set the InteractiveHeight value to 0 and leave
the PageHeight unchanged. Note: the InteractiveHeight property only affects
so called interactive renderers (such as Preview and HTML).
You may also want to read this blog article:
http://blogs.msdn.com/bwelcker/archive/2005/08/19/454043.aspx
-- Robert
This posting is provided "AS IS" with no warranties, and confers no rights.
"David" <David@.discussions.microsoft.com> wrote in message
news:BB5240E3-ED2D-4875-AB25-F57312B74428@.microsoft.com...
>I want to display everything on my report on the same screen without having
> to go to any other pages. How can I increase what is shown on the first
> page
> of a report?

Friday, March 9, 2012

Inconsistency in HTML display

Hi all i am currently using a custom aggregate function in the Stored Proc to Concatenate certain fields and group the others. The concatenation is done be leaving an empty line (Line Break) inbetween. The problem is that the New Line Break is getting displayed in the PDF format of the Reports generated using Reporting Service 2005 but in the HTML (using IE) format the Line break does not occur, can anyone help me out with this. Doesnt IE support New Line?

You can change the width of this line with specific property (lineheigt) on that TABLEROW object. You must complete the "write" expression on that property and the results are fine.

For example you can use the function posted below to get the number of occurence of char(13) character.

TABLEROW1.LineHeight= n*(1-occurs(@.yourstring,char(13))

Create function occurs

(

@.iStr varchar(4000),

@.fStr varchar(100)

)

Returns smallint As

Begin

Declare @.rStr varchar(100)

Select @.rStr = case when charindex(left(@.fStr,1),@.fStr,2)>0 then stuff(@.fStr,charindex(left(@.fStr,1),@.fStr,2),0,'~') else Replicate('~',datalength(@.fStr)+1) end

Return(datalength(Replace(Replace(@.iStr,@.fStr,@.rStr),@.fStr,@.rStr)) - datalength(@.iStr))

End