Showing posts with label include. Show all posts
Showing posts with label include. Show all posts

Friday, March 30, 2012

print function?

One of our user requirement is to include "Print" option to the Reporting
Manager toolbar (either inlcude in the Export to .. list or a separate
option to send the report to the printer).
Is this possible.? If possible, how? if not, what are the alternatives?
ThanksClient side printing is expected to be included in a future release. In the
current release, you can print reports from a custom app. Please see
http://www.csharphelp.com/archives3/archive545.html for a code sample.
--
Ravi Mumulla (Microsoft)
SQL Server Reporting Services
This posting is provided "AS IS" with no warranties, and confers no rights.
"newmem" <""> wrote in message
news:uQgLw%23TiEHA.3548@.TK2MSFTNGP09.phx.gbl...
> One of our user requirement is to include "Print" option to the Reporting
> Manager toolbar (either inlcude in the Export to .. list or a separate
> option to send the report to the printer).
> Is this possible.? If possible, how? if not, what are the alternatives?
> Thanks
>

print from toolbar

Hello, I have created an asp.net application using VS .Net 2003, which has a Report Viewer to include reports from my report manager.

The reportviewer has been set to include the standard toolbar, which includes the print button. However, when I use this option, the system prints more pages than it should. If the report is 2 pages long, I end up getting 6 pages, the other four having just the header and footer...(2 blanks pages after each page when port. ana 1 black after each page if landscape)

Any1 know the solution to this problem? I have not coded anything for the print option....

Thanks :)

Check the width of your reports. If it is too wide then printing it will create extra pages.

micro-geek

Wednesday, March 21, 2012

Primary Key in table variable

hello,

i want to create a table variable that has a primary key that contains more than one column.
In the example below the key should include prodID,catID to be unique

declare @.t_CNETPickList table (
prodID varchar(16) primary key ,
catid char(2),
AtrID char(6),
AtrText varchar(255),
number int ,
text varchar(255)
)

Is this possible?declare @.t_CNETPickList table (
prodID varchar(16) ,
catid char(2),
AtrID char(6),
AtrText varchar(255),
number int ,
text varchar(255)

, primary key ( prodID,catID )

)

rudy
http://r937.com/|||thanks