Please start any new threads on our new 
    site at https://forums.sqlteam.com.  We've got lots of great SQL Server
    experts to answer whatever question you can come up with.
    
        | 
                
                    | 
                            
                                | Author | Topic |  
                                    | CoachBarkerPosting Yak  Master
 
 
                                        170 Posts | 
                                            
                                            |  Posted - 2009-03-04 : 07:49:27 
 |  
                                            | I have been testing my reports for printing, but I have aa problem. The print option is set to print the front and back of a page, the Report Header prints front and back, but the body of the report only prints on the front of the page. The reports are not using a rectangle. Any thoughts.Thanks for the helpCoachBarker |  |  
                                    | visakh16Very Important crosS Applying yaK Herder
 
 
                                    52326 Posts | 
                                        
                                          |  Posted - 2009-03-04 : 09:50:01 
 |  
                                          | one method would be to apply expression for report header visibility property to print only for odd pages. something like=IIF(Globals!PageNumber.value % 2 <> 0,False,True) |  
                                          |  |  |  
                                    | CoachBarkerPosting Yak  Master
 
 
                                    170 Posts | 
                                        
                                          |  Posted - 2009-03-04 : 11:28:01 
 |  
                                          | I meant the Page Header if that makes any difference.Thanks for the helpCoachBarker |  
                                          |  |  |  
                                    | visakh16Very Important crosS Applying yaK Herder
 
 
                                    52326 Posts | 
                                        
                                          |  Posted - 2009-03-04 : 13:01:09 
 |  
                                          | quote:i also told about same thing, showing report heading in pageOriginally posted by CoachBarker
 I meant the Page Header if that makes any difference.Thanks for the helpCoachBarker
 
 |  
                                          |  |  |  
                                    | CoachBarkerPosting Yak  Master
 
 
                                    170 Posts | 
                                        
                                          |  Posted - 2009-03-26 : 11:11:46 
 |  
                                          | I haven't gotten back to this in a while, but how do I access the visibility property of the Page Header. No matter what  try I can not find that property.Thanks for the helpCoachBarker |  
                                          |  |  |  
                                    | visakh16Very Important crosS Applying yaK Herder
 
 
                                    52326 Posts | 
                                        
                                          |  Posted - 2009-03-28 : 04:51:22 
 |  
                                          | quote:why should you look for it? what you need is to alter the visbility property of items in header rather than header itself.Originally posted by CoachBarker
 I haven't gotten back to this in a while, but how do I access the visibility property of the Page Header. No matter what  try I can not find that property.Thanks for the helpCoachBarker
 
 |  
                                          |  |  |  
                                    | CoachBarkerPosting Yak  Master
 
 
                                    170 Posts | 
                                        
                                          |  Posted - 2009-03-28 : 12:42:27 
 |  
                                          | I found out that the reason the headers were giving me a problem was that the right column in the report was a little past the edge or the report bodies size so it was carrying the blank page over to another page. But thanks for clarifying about the visibility of the items in the header.Thanks for the helpCoachBarker |  
                                          |  |  |  
                                |  |  |  |