Reporting Services - Add a logo to the Report Manager - Jon Galloway

Reporting Services - Add a logo to the Report Manager

The SQL Server Reporting Services Report Manager is functional, but it's not very customizable. The ASPX pages just reference compiled assemblies, so the only real way to modify them is via CSS.

What makes that more difficult is that the SSRS HTML is poorly constructed so that the tags you'd most want to customize don't have Id's or Classes assigned. For instance, the most obvious customization anyone would want to make is to add a corporate logo, and there's no hook for that at all. The folder image is a simple <img> tag, nestled between two other spacer <img> tags, packed inside an unidentified <td>, and all those elements are written out in code1. The problem there is that there's no way, even with some descendant selector trickery, to target that folder image.

That's not entirely true, part 1:

IE7 adds support for some combinators (e.g. child, adjacent, first:sibling) which allow you to directly target elements without classes or id's. Why I'm not using that approach here:

  • IE6 doesn't support it.
  • IE7's support is kind of quirky - it sees HTML comments as page elements, for instance. That means it's difficult to write cross browser combinator based CSS rules.
  • Targeting deeply nested elements with combinators is pretty difficult.
  • Combinator based rules are inherently unstable, since any changes to the page's structure (including HTML comments, as mentioned above) can really mess up your page. Structure changes can cause your rule to be ignored or - much worse - point it at another page element.

That's not totally true, part 2:

You could replace the image files (C:\Program Files\Microsoft SQL Server\MSSQL.X\Reporting Services\ReportManager\images\48folderopen.jpg
as well as all the other files in that directory named 48*.jpg)2 with your corporate logo. Problems with that approach:

  • You're constrained to a 48x48 px jpg
  • Subsequent upgrades could overwrite it
  • Those images do serve some use - they change depending on the current function you're performing in the site.

Who needs an Upper Title, anyway?

I went for the next best target - the rather useless "upper title" - since it's a div which actually has a class (div.msrs-uppertitle)assigned. First, let's look at the style changes, then we'll talk about the different ways to add them.

.msrs-uppertitle { BACKGROUND: url(http://www.sitename.com/images/logo.gif) no-repeat; HEIGHT: 35px; WIDTH: 120px; TEXT-INDENT: -5000px; }

Some things to notice:

  1. We set a background image by URL. That will keep the reports up to date with our company logo as it may change in the future. Make sure to pick an image that's an appropriate size for that space.
  2. We set the background to no-repeat so it just displays once rather than tiling. That's handy even if the logo image has a border, since we don't have to be so precise on your height and width settings.
  3. We set a height and width which are large enough to display the logo. These should be just larger than your image size; you can just see via trial and error what looks best. This is one of those times where on the fly CSS editing tools like the IE DevToolbar or the Firefox Web Developer extension come in really handy.
  4. Now we need to get rid of the site title. I didn't want to mess with trying to blank it out in the SSRS Site Settings since it might be useful elsewhere, or someone might fill it in without knowing that it would conflict with the logo. The easiest solution is to use the Phark Image Replacement technique and hide the text by setting the indent to -5000px.

Done and done.

Oh, wait. I said I'd be talking about where to add this style, didn't I? A few options:

  1. Edit ReportingServices.css (in the C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportManager\Styles folder).
  2. Use another stylesheet - method 1: change the HTMLViewerStyleSheet parameter in RSReportServer.config
  3. Use another stylesheet - method 2: specify a stylesheet in rc:StyleSheet parameter of the report url:
    http://localhost/reportserver?/AdventureWorksSampleReports/Product+Line+Sales&rs:Command=Render&rc:Stylesheet=MyStyleSheet

I went with a variation of option 1 - I edited ReportingServices.css, but just to add an import statement that points to another CSS file where I'll put all my Reporting Services CSS customizations:

  1. Add the following to the top of ReportingServices.css:
    @import url(customizations.css);
  2. Save the block of CSS (the bit that starts with ".msrs-uppertitle") to a file called customizations.css to the same folder as ReportingServices.css. You might want to add other customizations to it while you're at it, like this CSS fix for Firefox.

That's it! We're done!

Great, but the logo should link to the home page of our intranet!

What!? Feature creep! Version 2!

Oh, okay. It's not easy, though...

Changing style isn't a piece of cake, but at least there's a supported hook for it. You can't add a link via CSS, though. CSS2 allows for some limited content generation, but it doesn't support adding links; even if it did we'd be out of luck because IE7 doesn't support it.

Bill Vaughn and Peter Blackburn proposed a solution using DHTML Behaviors. That's a pretty slick workaround - behaviors allow you to tie Javascript functionality to DOM elements in CSS. Unfortunately, only IE supports behaviors. Plus, if you're going to hack Javascript, why not edit the ReportingServices.js file...3

C:\Program Files\Microsoft SQL Server\MSSQL.n\Reporting Services\ReportManager\js\ReportingServices.js

There it is... the fabled treasure... a way to modify the content of the Reporting Services Manager...

I added the following code to the top of the JS file (after backing it up, of course):

addLoadEvent(SetLogoUrl); function addLoadEvent(fn) { if (window.addEventListener) window.addEventListener('load', fn, false) else if (window.attachEvent) window.attachEvent('onload', fn); } function SetLogoUrl() { var header = document.getElementById('ui_sharedArea'); if (!header) return; var headerDivs = header.getElementsByTagName('div'); for (var i=0;i<headerDivs.length;i++) { if(headerDivs[i].className == 'msrs-uppertitle') { headerDivs[i].onclick = new Function('top.location="/"'); headerDivs[i].style.cursor = 'pointer'; //headerDivs[i].style.backgroundImage = 'url(http://images.slashdot.org/topics/topiccommunications.gif)'; //headerDivs[i].style.backgroundRepeat = 'no-repeat'; //headerDivs[i].style.width = '96px'; //headerDivs[i].style.height = '62px'; } } }

 

Let's talk about it:

  1. That addLoadEvent business is there because we can't modify the page until it has finished loading, but this script is included at the top of the page. A less sophisticated solution is to set a timeout to call SetLogoUrl, but addLoadEvent leverages the built in event model to call the function after the page has finished loading. IE uses attachEvent, while everyone else uses addEventListener, so we'll include some logic to make sure the right one gets called.
  2. SetLogoUrl's job is to modify the Upper Title DIV. This would be easier if that DIV had an ID assigned, since Javascript doesn't have built in support for retrieving an element by class name. Most sample code which returns an element by class just iterates all elements in the DOM looking for a class name match, but since we know a bit about the page structure we can be a little more efficient. We narrow the search by grabbing the nearest parent element with an ID assigned and only searching through its children.
  3. Once we've got our DIV, we can just set the onclick behavior to navigate to the correct URL. We'll need to change the cursor to indicate that it's a link, too.

Hey, since we're messing with that DIV, why not just change the image in Javascript and simplify things? Well, I've left some commented code there to get you started if that's what you want to do, but I think it's better to keep the image modification in CSS.

Why? Well, there are a few good reasons. The biggest reason is that the Javascript doesn't execute until the page has finished loading, so the original DIV text is displayed, then changes to the logo. Ugh. Plus, from a maintenance and architectural perspective, it's a much better practice to keep your presentation information in CSS and your behaviors in Javascript.

And that's it.

But, can we change the navigation to use WPF/E with Ajax and pull in some Google Analytics?

No.


1 reflector://Microsoft.ReportingServices.UI.SharedArea.InitTitleArea()

2 Reporting Service installs into different directories depending on the order you install SQL Server services. A default installation will put Reporting Services in \Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services, but that MSSQL.3 folder may be different on your machine.

3 I actually stumbled across the HTC technique after I'd finished making this work as a Javascript include.

Published Tuesday, December 12, 2006 4:43 PM by Jon Galloway

Comments

# re: Reporting Services - Add a logo to the Report Manager

Valuable tips here!

In a few months you'll be adding the missing features of RS in Firefox yourself ;)

Wednesday, December 13, 2006 3:50 AM by CumpsD

# re: Reporting Services - Add a logo to the Report Manager

Nice thing. however, since the rs is so unappealing visually-wise, even an i-pod won't be enough to de-uglify it ...

About behaviors, well there's the "behavior" library that rely on the faboulos "prototype" library, to elegantly attach behaviors to css selectors in a cross browser way. look at http://www.bennolan.com/behaviour/

Sunday, December 17, 2006 12:40 PM by Ken Egozi

# Taking CSS beyond a simple style library

Summary CSS based design is really all about your HTML structure. We'll look at bad examples, then good

Wednesday, September 12, 2007 4:44 AM by Jon Galloway

# re: Reporting Services - Add a logo to the Report Manager

<a href=pl.youtube.com/watch gone wild</a> in the club.

Great video, i'd like to be there with them

Saturday, September 15, 2007 1:50 PM by pussylover

# re: Reporting Services - Add a logo to the Report Manager

Hi Jon

It's one in the morning in ireland and i have spent hours figuring out how to add a logo with a link to report manager, i really was pulling my hair out, that is until i came across your article, it was a godsend, thanks a million for script.  it works perfectly.

Tuesday, October 23, 2007 7:43 PM by Gerry C

# re: Reporting Services - Add a logo to the Report Manager

Does anyone know if it is legally legit to use reflector to decompile the Report Manager DLLs, modify as needed, recompile and deploy?

I've read Microsoft's claim:

"You can customize Report Manager in very limited ways. You can modify the application title on the Site Settings page. If you are a Web developer, you can modify the style sheets that contain the style information used by Report Manager. Because Report Manager is not specifically designed to support customization, you must thoroughly test any modification that you make. If you find that Report Manager does not meet your needs, you can develop a custom report viewer or configure SharePoint Web parts to find and view reports in a SharePoint site."

I've also read the law regarding decompilation, and I'm still not entirely clear.

Tuesday, November 06, 2007 1:18 PM by FMM

# re: Reporting Services - Add a logo to the Report Manager

Very useful post - thanks alot!

you could also try this trick to hide the ugly 'context' icon in the top left...

/* Upper title on the page - set position to absolute and configure the top-left positions */

.msrs-uppertitle

{

position:absolute;

top: 0px;

left: 0px;

background: url(url to your icon);

height: 66px;

width: 182px;

text-indent: -5000px;

}

/* adjust the height of the containing row to fit the image in */

#ui_sharedArea

{

height: 80px;

}

not tested in browsers other than IE6/7 though

Steve

Tuesday, March 11, 2008 6:35 PM by Steve

# re: Reporting Services - Add a logo to the Report Manager

Can somebody tell me how do i customize my report names (ABC) to appear instead of the ugly Report Manager.

Wednesday, March 19, 2008 10:16 AM by Rick

# re: Reporting Services - Add a logo to the Report Manager

Workaround: place subreport at the top of all  your reports.

See details here

www.mssqltips.com/tip.asp

Saturday, March 29, 2008 5:08 AM by nikiola

# re: Reporting Services - Add a logo to the Report Manager

No, i meant, just like using external application like c# we can title(IE)the report name from Report Manager to customized name (ABC). Is there a way to customize the title of IE just by SSRS.

Tuesday, April 01, 2008 2:53 PM by Rick

# re: Reporting Services - Add a logo to the Report Manager

I tried doing the change of logo, but when I reloaded the page in my Internet Explorer, it's asking me for a username and password.  I can only see the logo if I have the SSRS admin account.

Any suggestion?

Wednesday, June 04, 2008 2:26 PM by Jethro

# re: Reporting Services - Add a logo to the Report Manager

I am creating a aspx page. From that page i am going to call Report Manager.I want to show the customize report manager only launch from my application. is it possible? Please healp me.

Thursday, June 19, 2008 10:42 AM by Sathya

# re: Reporting Services - Add a logo to the Report Manager

We decided it was easier in the long run to download and install Windows Sharepoint Servers 3.0 and install that on the report server, then switch reporting services into Sharepoint Intergrated mode. That gave us all the functionality of Reporting Services but also the fully customisable interface of Sharepoint. Works well for us!

Thursday, July 17, 2008 8:01 PM by Nathan Griffiths

# re: Reporting Services - Add a logo to the Report Manager

This article was very helpful. I was able to put our company's logo on the report manager however... They now want to remove the upper portion of the page to remove the navigation buttons and also save on some space since we are putting the whole thing in a iframe. Right now I have this ".msrs-uppertitle, .msrs-lowertitle, .msrs-search, .msrs-banner, msrs-normal, .msrs-sectionheader,.msrs-txtbox, .msrs-button, .msrs-linkpanel

{

   background-color:#FDFDFE no-repeat;

   HEIGHT: 1px;

   WIDTH: 1px;

   TEXT-INDENT: -5000px;

}" which is hiding everything unfortunately this hides ALL buttons and text boxes and it doesn't save us space. Any suggestions?

Tuesday, July 29, 2008 4:04 PM by Larry Valiquette

# re: Reporting Services - Add a logo to the Report Manager

I note the comment about switching to Deep Integrated mode to use fully customisable interface of SharePoint. However has anyone successfully managed to pass parameters via query string into the Deep Integrated Report Viewer? It looks like to get parameter passing to work this way you still have to use the native report viewer, which is not exactly the sharepoint look and feel! I may be missing something though, does anyone out there have the missing piece of this jigsaw available yet?

Tuesday, August 26, 2008 5:15 AM by Steve Giergiel

# Reporting Services

Reporting Services

Wednesday, October 15, 2008 6:29 AM by i.florianb.NET Blog

# re: Reporting Services - Add a logo to the Report Manager

Have you ever collected <a href=http://vintagetoys.cwahi.net>vintage toys</a>. Which are the best to collect?

I heard that old Barbie dolls is a valuable addition to every collection.

<a href="http://vintagetoys.cwahi.net">vintage toys</a>

Saturday, November 29, 2008 7:23 PM by freedating

# re: Reporting Services - Add a logo to the Report Manager

i want to know how to connect the report manager with reporting services and explain fully about the installation of sql reporting services in sqlserver2005 express edition

Wednesday, January 21, 2009 2:50 AM by gopalakrishnan

# re: Reporting Services - Add a logo to the Report Manager

Thsnks for this. Have linked you freom my blog

Rich D

Friday, May 08, 2009 7:34 PM by Rich D

# re: Reporting Services - Add a logo to the Report Manager

great article!!It's help me so much..

Thursday, June 18, 2009 11:20 AM by JimmyYu

# re: Reporting Services - Add a logo to the Report Manager

Great Article.  You might want to look into Aspect Programming.  Its possible to override EVERYTHING (yes I said everything) in a .Net library.  Check out thise site: www.postsharp.org/.../overview

Thursday, August 06, 2009 6:47 PM by Ray Simpson

# re: Reporting Services - Add a logo to the Report Manager

Boutique de vente en ligne d’electromenager et high-tech

Friday, September 11, 2009 7:52 AM by electromenagerburhani.ueuo.com

# re: Reporting Services - Add a logo to the Report Manager

Followed the recipe for RS2008 but nothing doing...  No change in appearance on the home page...

Have you had a chance to see if RS2008 can be overridden?  The css' appear to be in Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportManager\Styles

Thanks for what promised to be a neat customization - shame about RS2008's resistance to change...

Wednesday, October 28, 2009 8:35 PM by SAinCA

# re: Reporting Services - Add a logo to the Report Manager

hm. thanks for post!

Monday, December 21, 2009 5:32 AM by Hicreree

# re: Reporting Services - Add a logo to the Report Manager

I tried this, but unless I replace 48folderopen.jpg with my logo, it doesn't work.

Wednesday, December 23, 2009 12:40 PM by Drew

# Adding a DotNetKicks image via Javascript

Update: This post is pretty old. While it still works, I'd recommend doing this with jQuery now. Chris

Friday, February 05, 2010 3:57 PM by Jon Galloway

# re: Reporting Services - Add a logo to the Report Manager

а все таки: восхитительно!!  а82ч

Wednesday, February 17, 2010 12:52 PM by Acinnina

# re: Reporting Services - Add a logo to the Report Manager

I agree with sweelyhosergy..

Monday, September 13, 2010 1:40 PM by yonkers

# re: Reporting Services - Add a logo to the Report Manager

I want to know just what Kara can do about that...

-Regards

Refugio

<a href="http://url.com">keyword one</a>

Wednesday, January 12, 2011 7:51 AM by Erick Caldwell

# re: Reporting Services - Add a logo to the Report Manager

Herminia is the best :P

Thanks

Antony

<a href="en.netlog.com/.../blogid=4005913">Belanja Baju Online</a>

Sunday, January 30, 2011 9:27 AM by Tanner Pagan

# re: Reporting Services - Add a logo to the Report Manager

Tuesday, May 10, 2011 10:05 AM by lmubygut

# re: Reporting Services - Add a logo to the Report Manager

I have followed the instructions here and my company logo still does not appear on my Report Manager

Friday, November 18, 2011 9:42 AM by Anthony

# re: Reporting Services - Add a logo to the Report Manager

I am really enjoying the theme/design of your weblog. Do you ever run into any web browser compatibility issues?

A handful of my blog visitors have complained about my

website not operating correctly in Explorer but looks great in Opera.

Do you have any ideas to help fix this issue?

Tuesday, August 07, 2012 3:03 PM by Corbin

# re: Reporting Services - Add a logo to the Report Manager

I think that everything composed was actually very logical.

But, what about this? suppose you were to create

a killer title? I mean, I don't wish to tell you how to run your website, however suppose you added a headline that makes people want more? I mean Reporting Services - Add a logo to the Report Manager - Jon Galloway is a little plain. You should glance at Yahoo's front page and

note how they create article headlines to get viewers interested.

You might add a video or a related pic or two to grab readers

excited about everything've got to say. Just my opinion, it could make your website a little livelier.

Thursday, September 13, 2012 11:21 PM by Treadwell

# re: Reporting Services - Add a logo to the Report Manager

hkebf<a href=> randy moss jersey </a>

ifjie<a href=> brett keisel jersey </a>

saiqz<a href=> santonio holmes jersey </a>

izflp<a href=> wes welker jersey </a>

uexpj<a href=> brian dawkins jersey </a>

Tuesday, October 23, 2012 12:44 PM by Jimmyhq2wh

# re: Reporting Services - Add a logo to the Report Manager

exopo<a href=> tony romo jersey </a>

hevyh<a href=> desean jackson jersey </a>

sbtzt<a href=> champ bailey jersey </a>

sxmyw<a href=> ben roethlisberger jersey </a>

dyhtr<a href=> jason pierre paul jersey </a>

Wednesday, November 07, 2012 9:15 PM by Jimmyxq0du

# re: Reporting Services - Add a logo to the Report Manager

Hi there I am so excited I found your blog, I really found you by mistake, while I was researching on Askjeeve for something else, Regardless I am here now and would just like to say thanks for a fantastic post and a all round entertaining blog (I also love the theme/design), I don? have time to look over it all at the minute but I have saved it and also included your RSS feeds, so when I have time I will be back to read much more, Please do keep up the superb job.

Saturday, November 10, 2012 5:11 AM by ohdvapowsh@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Find more info about low back pain, lower low back pain

and lumbar pain relief etc. While many people experience lower back pain

occasionally, the actual cause of back pain is often unknown.

Despite the fact that lower back pain is a mystery of sorts, backaches

usually resolve themselves within 3 to 5 weeks. In the interim,

instead of reaching for an otc pain reliever, try a natural or herbal treatment

for soothing pain relieving results.. If you suffer from lower back pain, you will know there are some actions and some stuff you can’t.

Saturday, November 10, 2012 12:34 PM by Deberry

# re: Reporting Services - Add a logo to the Report Manager

These are in fact great ideas in regarding blogging.

You have touched some pleasant points here.

Any way keep up wrinting.

Monday, November 12, 2012 1:34 AM by Flowers

# re: Reporting Services - Add a logo to the Report Manager

Please do not socialize who're relaxing to be with. It's the perfect time that will amount of force that you definitely lever tumbler that you are moving up.

Saturday, November 17, 2012 11:46 PM by nhgyxalv@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Unquestionably believe that which you stated. Your favorite reason appeared to be on the web the easiest thing to be aware of.

I say to you, I definitely get annoyed while people consider worries

that they plainly don't know about. You managed to hit the nail upon the top as well as defined out the whole thing without having side effect , people could take a signal. Will probably be back to get more. Thanks

Tuesday, November 20, 2012 4:43 AM by Burks

# re: Reporting Services - Add a logo to the Report Manager

I feel that is one of the such a lot important information for me.

And i'm satisfied studying your article. However wanna commentary on some normal issues, The site style is ideal, the articles is in reality great : D. Excellent activity, cheers

Thursday, November 22, 2012 9:04 AM by Hickey

# re: Reporting Services - Add a logo to the Report Manager

Happen to be preceding every time just about every single pal claims he's a small fineness through the different.

Thursday, November 22, 2012 8:08 PM by jewtcwpql@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

I read this article completely about the resemblance of most up-to-date and earlier technologies, it's awesome article.

Saturday, November 24, 2012 10:06 AM by Hammonds

# Windows 8 distributive

Pingback from  Windows 8 distributive

Sunday, November 25, 2012 9:15 AM by Windows 8 distributive

# re: Reporting Services - Add a logo to the Report Manager

I comment each time I appreciate a post on a website or I have something

to contribute to the conversation. It is caused by the passion displayed

in the article I looked at. And on this post Reporting Services - Add a logo

to the Report Manager - Jon Galloway. I was actually excited

enough to drop a comment :) I do have a few questions for you if you don't mind. Could it be just me or do a few of these responses look as if they are coming from brain dead folks? :-P And, if you are posting on additional online sites, I'd like to keep up with everything new you have to post.

Would you list the complete urls of your public pages like

your twitter feed, Facebook page or linkedin profile?

Tuesday, December 04, 2012 10:38 AM by Ball

# re: Reporting Services - Add a logo to the Report Manager

For the reason that the admin of this site is working, no doubt

very shortly it will be renowned, due to its quality contents.

Saturday, December 08, 2012 12:52 PM by Squires

# re: Reporting Services - Add a logo to the Report Manager

By WebOsPublisher

PI,the angel.ico:

PI, The Angel Icon

PI, The Angel Icon Details

Log-in or register.

Software

Gallery

Icons

Cursors

Tags

Authors

Licenses

Design services

Links

Help

Forum

People

Home

Gallery

Icons

Junkyard

PI, the angel.ico

PI, the angel.ico

Published on November 17th 2009 by Anonymous.

Released under the Release to Public Domain license.

Icon for Windows XP, Vista and 7.

Download

(30.8 kB)

273 downloads

How to download?

Tweet

Images in the iconTo download individual pictures from the icon, right-click on the image and select "Save image as..." in the menu.16x16 pixels, smooth edges32x32 pixels, smooth edges48x48 pixels, smooth edges256x256 pixels, smooth edgesResources

What is a Windows icon?

How to download and use an icon?

Convert images to icons online.

Create your own icons in RealWorld Icon Editor.

See alsogreen.icogold.icoMopsfidel.icoPI with his friend.icoв—„ Prev1245781011131416171819Next в–є

IconsIcon sets

Icon junkyard

Upload icon

Bookmark and share

Del.icio.usredditStumbleUponFacebook share

Vista $ Win 7 icons

Find out how Vista icons differ from XP icons.See how RealWorld Icon Editor handles Vista icons.

Graphics archives links

Clip art, Photo galleries, Wallpapers, Textures, 3D Models

About us |

Contact |

Privacy policy |

Sitemap |

News feedCopyright В© 2005-2012 RealWorld Graphics.

Saturday, December 08, 2012 7:59 PM by shutterstock.com

# re: Reporting Services - Add a logo to the Report Manager

By WebOsPublisher

Scheduling Appointments icons. Images of Scheduling Appointments icon from different collections

Scheduling Appointments Icons

Icon list

Scheduling Appointments Icons

You can purchase these icon images for your projects. Click on icons to purchase them.

Scheduling appointments      Medical Icons for Vista

Scheduling appointments      Health Care Icons

Scheduling appointments      Medical Icons for Vista

Home  |  Products  |  Downloads  |  Order  |  Icons  |  Support

Copyright &copy; 2005-2012 Icon Empire. All rights reserved.

Stock Icon Packs

People Icons for Vista

Perfect Toolbar Icons

Business Toolbar Icons

Database Toolbar Icons

Multimedia Icons for Vista

Monday, December 10, 2012 1:12 PM by jidesoft.com

# re: Reporting Services - Add a logo to the Report Manager

By WebOsPublisher

First off,i would like to thank guesprime for handing leadership down to me,but there are many problems within our union. Many are easy

HELP WANTED (wanna help, come here to see what this union needs done!) - GameSpot.com--

#site_nav div.custom_site_subnav background: #48adde;width:160px; overflow:hidden;#site_nav ul.custom_site_subnav float:left; margin:-1px 0 -110px; padding:0 0 110px; width:100%;#site_nav a.custom_nav_action max-width:50px; overflow:hidden;#site_nav li.custom_masthead_item span max-width:60px;#site_nav li.custom_masthead_item max-width:60px; padding-right:5px;#site_nav .dropdown_open .custom_dropdown_wrap  padding: 2px 0 0; margin: -1px 0 0 ;background: none repeat scroll 0 0 transparent;border-style:solid; border-width:1px; border-top-color: #5fd5fb;border-left-color: #5fd5fb;border-right-color: #3488ba;border-bottom-color: #3488ba;#site_nav img.custom_masthead_image  width:45px; height:56px; margin:-20px 0 -20px -8px; #site_nav .dropdown_open .custom_dropdown background: #48adde; repeat scroll 0 0 transparent !important;#site_masthead .dropdown_open .custom_dropdown -moz-box-shadow: none !important; box-shadow: none !important; -webkit-box-shadow: none !important#site_masthead .active .custom_action_wrap, #site_masthead .dropdown_open .custom_action_wrap background:no-repeat scroll transparent !important;#site_masthead .custom_masthead_image -moz-box-shadow: none !important; box-shadow: none !important; -webkit-box-shadow: none !important#site_nav a.custom_nav_image float:none !important;#site_nav li.custom_subnav_item display:inline; float:left;border-top:1px solid #ffffff;font-size:11px; line-height:14px; width:100%;#site_nav a.custom_subnav_action  background: #48adde no-repeat;color:#ffffff;display:block; font-weight:normal; padding:5px 15px; text-decoration:none;#site_nav a.custom_subnav_action:hover background-color: #48adde;color: #000000;

GameSpot

 SearchSearchSearch  

Sign on Options

Log in &raquo;

sign in

Email

Password

Forgot Password?

Sign up

Main Nav

Best of 2012 Peoples' Choice Voting  

 Reviews  

Latest Reviews

All Reviews

Video Reviews

Reviews Blog

Reviews on Metacritic

 News  

Top Stories

News Blog

Rumor Blog

Daily Updates

New Releases

 Videos  

All Videos

GameSpot Live

On The Spot

Start/Select

Plays Like

Now Playing

Video Reviews

Video Previews

Trailers

Gameplay

Interviews

 Cheats  

Popular Game Cheats

GameSpot Walkthroughs

Walkthroughs on GameFAQs

Platform Nav

 Xbox 360  

Xbox 360 Home

Reviews

Previews

New Releases

Top Games

All Games

Videos

Cheats $ Walkthroughs

Xbox Live

 PC  

PC Home

Reviews

Previews

New Releases

Top Games

All Games

Videos

Cheats $ Walkthroughs

Downloads

 PS3  

PS3 Home

Reviews

Previews

New Releases

Top Games

All Games

Videos

Cheats $ Walkthroughs

PlayStation Network

 Wii U  

Wii U Home

Wii Home

Reviews

Previews

New Releases

Top Games

All Games

Videos

 3DS  

3DS Home

DS Home

Reviews

Previews

New Releases

Top Games

All Games

Videos

Cheats $ Walkthroughs

 PS Vita  

PS Vita Home

PSP Home

Reviews

Previews

New Releases

Top Games

All Games

Videos

Cheats $ Walkthroughs

 iPhone  

iPhone Home

Highest Rated

Most Popular

Plays Like

Reviews

iPhone App

 Android  

Android Home

Highest Rated

Most Popular

Plays Like

Community Nav

 Forums  

GameSpot Forums

Forum Search

Community Blog

 Fuse  

What's Hot

 eSports  

 Watch GameSpot on Youtube  Follow @GameSpot

 Theme: [Light Selected] To Dark&raquo;

Forums

 &rsaquo;

 The Contra Alliance (union board)

   &rsaquo;

 HELP WANTED (wanna help, come here to se ...  

  HELP WANTED (wanna help, come here to see what this union needs done!)

   Search ForumsSearchForum ActionsNew MessageTag Favorites_____________Edit FavoritesAdd to Favorites_____________  

Quick Messagefalconclan Level 41Thunder ForcePosts: 16658Mar 8, 2006 3:53 pm GMTFirst off, i would like to thank guesprime for handing leadership down to me, but there are many problems within our union. Many are easy fixes, and some are harder, more time consuming ones.To start, we are at union status "AWOL" thats basicly a signal to abandon ship for some! BUT DONT DO THAT. freaking out will just make that rating worse. It shouldnt be hard to get out of this, but we need more posting activity and recruiters to find people who are willing to join and post. I dont want to just spam countless gs mailboxes, since no one will respect our pleas if we do that.Again we need people posting, but we also need to get our union noticed. since we have no signature icons or anything it'll be hard. those of you with knowledge of making signatures, we'd be greatly pleased if you helped out with those, but if you can't make sigs, simply put a link in your signature.add anything else you think would be good for the union if you'd like...-- falconFirst off, i would like to thank guesprime for handing leadership down to me, but there are many problems within our union. Many are easy fixes, and some are harder, more time consuming ones.To start, we are at union status "AWOL" thats basicly a signal to abandon ship for some! BUT DONT DO THAT. freaking out will just make that rating worse. It shouldnt be hard to get out of this, but we need more posting activity and recruiters to find people who are willing to join and post. I dont want to just spam countless gs mailboxes, since no one will respect our pleas if we do that.Again we need people posting, but we also need to get our union noticed. since we have no signature icons or anything it'll be hard. those of you with knowledge of making signatures, we'd be greatly pleased if you helped out with those, but if you can't make sigs, simply put a link in your signature.add anything else you think would be good for the union if you'd like...-- falconReport AbuseQuoteReplyPlease wait. Quick reply will be available shortly.Quick QuoteQuick Replypropyro Level 19Gitaroo ManPosts: 6758Mar 8, 2006 10:22 pm GMTwhut?  yea i'll try.Metroid whut?

:roll:  yea i'll try.Report AbuseQuoteReplyPlease wait. Quick reply will be available shortly.Quick QuoteQuick Replyboricua4life21 Level 8Quad DamagePosts: 88Mar 11, 2006 4:05 pm GMTi posted a topic about us in the Union Recruitment forum, so hopefully some more people will notice us and join... i posted a topic about us in the Union Recruitment forum, so hopefully some more people will notice us and join...Report AbuseQuoteReplyPlease wait. Quick reply will be available shortly.Quick QuoteQuick Replyfalconclan Level 41Thunder ForcePosts: 16658Mar 11, 2006 8:38 pm GMT boricua4life21 wrote: i posted a topic about us in the Union Recruitment forum, so hopefully some more people will notice us and join...i posted in it... The problem is, recruiting doesnt work anymore, due to spammers. Most people dont even look at requests anymore... Thats why i posted in a few unions i knew well, and it worked

[QUOTE="boricua4life21"]i posted a topic about us in the Union Recruitment forum, so hopefully some more people will notice us and join...[/QUOTE]i posted in it... The problem is, recruiting doesnt work anymore, due to spammers. Most people dont even look at requests anymore... Thats why i posted in a few unions i knew well, and it worked :)Report AbuseQuoteReplyPlease wait. Quick reply will be available shortly.Quick QuoteQuick Reply  Search ForumsSearchForum ActionsNew Message

Forums

 &rsaquo;

 The Contra Alliance (union board)

   &rsaquo;

 HELP WANTED (wanna help, come here to se ...  

GameSpot

SearchSearchSearchRSSHomePCXbox 360Wii UPS3PS VitaPSP3DSDSiPhoneMobileForumsVideosCheatsNew ReleasesDownloadsNewsWorldwideAbout UsJoin GameSpotHelpAdvertise on GameSpotUK.GameSpot.comGameFAQs.comGameRankings.comMetacritic.comGiantBomb.com

What's Hot:GameSpot's Best of 2012 AwardsThe Phantom Pain revealedDark Souls 2 on the wayTop Games:Skyrim - Dragonborn (X360)Halo 4 (X360)League of Legends (PC)Far Cry 3 (X360)SpyParty (PC)Far Cry 3 (PC)Far Cry 3 (PS3)Elder Scrolls V: Skyrim (X360)Top Cheats:Medieval II: Total War CheatsSuper Smash Bros. Melee CheatsDragon Ball Z: Budokai 3 CheatsYu-Gi-Oh! GX: Duel Academy CheatsGTA: San Andreas CheatsHalo 4 CheatsCounter-Strike: Condition Zero CheatsYu-Gi-Oh! Ultimate CheatsGameSpot On:TwitterFacebookYouTubeGoogle+Mobile

Visit other CBS Interactive Sites

Select Site

BNET

CBS Cares

CBS College Sports

CBS Films

CBS Radio

CBS.com

CBSInteractive

CBSNews.com

CBSSports.com

CHOW

CNET

Find Articles

GameSpot

Help.com

Last.fm

MaxPreps

Metacritic.com

Moneywatch

MovieTome

MP3.com

mySimon

NCAA

Radio.com

Search.com

Shopper.com

Showtime

SmartPlanet

TechRepublic

The Insider

TV.com

UrbanBaby.com

ZDNet

BNET

CBS Cares

CBS College Sports

CBS Films

CBS Radio

CBS.com

CBSInteractive

CBSNews.com

CBSSports.com

CHOW

CNET

Find Articles

GameSpot

Help.com

Last.fm

MaxPreps

Metacritic.com

Moneywatch

MovieTome

MP3.com

mySimon

NCAA

Radio.com

Search.com

Shopper.com

Showtime

SmartPlanet

TechRepublic

The Insider

TV.com

UrbanBaby.com

ZDNet

About CBS Interactive | Jobs | Advertise

&copy; 2012 CBS Interactive Inc. All rights reserved. | Privacy Policy (UPDATED) | Ad Choice | Terms of Use

window.fbAsyncInit = function()  false;

if (FB)  [];

queue && queue.length && queue.each(function(fnc)

fnc();

);

;

Asset.javascript('//connect.facebook.net/en_US/all.js', id: 'facebook-jssdk', async: true);

var om = "is_dev":0,"context":"forum_board":"the contra alliance (union board)","forum_topic":"help wanted (wanna help, come here to see what this union needs done!)","page_type":"forum topic","platform":"platform agnostic","sections":"forums";

for(var key in om_dynamic_vars)

om.context[key] = om_dynamic_vars[key];

Asset.javascript('/js/tracking/omniture/s_code.min.js');

id.lenta.ru/.../108850

Tuesday, December 11, 2012 2:54 AM by gimporg

# re: Reporting Services - Add a logo to the Report Manager

Ringlets differ in length of life and place of growth. Longest-living hair on his fore-part - to 4 or even 10 years, but the hair high the armpits, eyebrows and eyelashes - on the contrary 3-4 months. Japanese old lady Hiroko Yamaske took 18 years to reach its band length of 2.6 m common extension of trifle per date - involving 0.35-0.4 mm, and at end of day they bourgeon below par, and preferably in the evening. On the chairlady, beard and underarm trifle grows more actively than in the get of the body.

Wednesday, December 26, 2012 4:44 PM by Seerfrarben

# re: Reporting Services - Add a logo to the Report Manager

You can find a brand-new creation that everyone who smokes ought to know about. It can be referred to as the ecigarette, also called a smokeless cigarette or [url=shopping.lycos.com/.../vapor-ultra ]njoy electronic cigarette benefits [/url] , and it can be modifying the authorized panorama for cigarette people who smoke round the entire world.

The patented E-cigarette presents to proficiently simulate the encounter of using tobacco an genuine cigarette, without the need of any with the wellbeing or legal challenges bordering conventional cigarettes.

Although E-cigs look, truly feel and style similar to conventional cigarettes, they purpose really in a different way. The thing is, electronic cigarettes will not essentially burn off any tobacco, but relatively, any time you inhale from an e-cigarette, you activate a "flow censor" which releases a h2o vapor containing nicotine, propylene glycol, along with a scent that simulates the flavor of tobacco. All of which just implies that electronic cigarettes permit you to get your nicotine take care of although keeping away from all of the most cancers leading to brokers observed in traditional cigarettes this kind of as tar, glue, many additives, and hydrocarbons.

Also to staying healthier than conventional cigarettes, and maybe most significantly of all, would be the incontrovertible fact that e cigarettes are thoroughly authorized. Since E cigarettes don't include tobacco, you are able to legally smoke them wherever that common cigarettes are prohibited these types of as bars, restaurants, the perform place, even on airplanes. Moreover, e-cigarettes enable you to smoke without having fears of inflicting damage on other folks because of to terrible second hand smoke.

The refillable cartridges are available a large number of flavors along with nicotine strengths. You'll be able to get standard, menthol, even apple and strawberry flavored cartridges and nicotine strengths are available full, medium, mild, and none. While electronic cigarettes are technically a "smoking alternative" instead than the usual cigarette smoking cessation product, the array of nicotine strengths presents some noticeable possible being an assist within the kinds attempts to quit cigarette smoking and would seem to get proving preferred within that market.

The great factor about e cigarettes as apposed to say, nicotine patches, is the fact e-cigarettes create exactly the same tactile sensation and oral fixation that smokers wish, even though enjoyable types tobacco cravings too. Whenever you get a drag from n ecigarette you really sense the your lungs fill having a warm tobacco flavored smoke and if you exhale the smoke billows away from your lungs just like normal smoking cigarettes, even so, as stated, that smoke is actually a considerably much healthier h2o vapor that rapidly evaporates and thus will not offend any person during the fast vicinity.

When electric cigarettes are about for a while in different incarnations, it has been new improvements within the engineering together with ever raising restrictions from cigarette smoking that have propelled the e-cigarette right into a new located attractiveness. Should you be interested in a much healthier choice to smoking cigarettes, or in the event you just want to contain the flexibility to smoke anywhere and any time you want, an e-cigarette is likely to be the answer you've been seeking.

Sunday, January 13, 2013 12:43 AM by Heelolfquable

# re: Reporting Services - Add a logo to the Report Manager

Nice Post.

----------

I love http://youtube.com

Thursday, March 14, 2013 2:05 AM by Jearveeteni

# re: Reporting Services - Add a logo to the Report Manager

yz8xg7 bf7pp1 qt9to1 <a href=xcdif67sdsj.com/.../a> rv0ky4 go9ao3

Tuesday, March 19, 2013 8:20 PM by parlowerhearf

# re: Reporting Services - Add a logo to the Report Manager

Have a passion for may be delicate by beginning, but it really really gets more muscular as we age whether it's effectively raised on. coach diaper bag outlet www.coachoutletstore88.com

Sunday, April 07, 2013 5:43 AM by orqgvh@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Hurrah, that's what I was searching for, what a material! present here at this website, thanks admin of this web page.

Saturday, April 13, 2013 5:51 PM by hlvydedaztk@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

this cheap defiance gold is good to carry

Sunday, April 14, 2013 4:49 AM by fmgvqsfoyvt@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Simply no man or woman may well your current tears, in addition to an individual that is without a doubt picked up‘g add battle cry. nike pas cher http://ruehee.fr/

Monday, April 15, 2013 7:00 AM by kqaedxqakh@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

True association foresees the needs of other useful rrnstead of predicate its own. sous vetement femme http://rueboo.fr/

Monday, April 15, 2013 7:10 AM by diwjejoqk@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Magnificent goods from you, man. I have understand your stuff previous to and you are just extremely excellent. I really like what you've acquired here, certainly like what you are stating and the way in which you say it. You make it entertaining and you still take care of to keep it sensible. I cant wait to read far more from you. This is really a wonderful website. coachoutlet royaleast.eordercenter.com/online.html

Wednesday, May 01, 2013 7:53 AM by Coachoutletonlinefactory@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

We're a group of volunteers and opening a new scheme in our community. Your site provided us with valuable information to work on. You've done an impressive job and our whole community will be grateful to you. michael kors outlet www.dougthompson.ca/kors.html

Wednesday, May 01, 2013 10:40 AM by michaelkorsoutlet@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

I am really impressed with your writing skills and also with the layout on your weblog. Is this a paid theme or did you customize it yourself? Either way keep up the excellent quality writing, it's rare to see a nice blog like this one today.. michael kors outlet www.dougthompson.ca/outlet.html

Thursday, May 02, 2013 10:04 AM by michaelkorsoutlet@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Designed to suit was in fact suitable,   That i gained prada handbags right in front of the holiday and that of a wonderful item so that you can myself personally!

Saturday, May 04, 2013 12:21 PM by krovieep@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Hi there, I discovered your website by the use of Google while searching for a comparable topic, your site came up, it looks great. I've bookmarked it in my google bookmarks.

Tuesday, May 07, 2013 9:27 PM by sgsbfriibxh@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

O y眉zden giysi buldu臒umuzda 莽ok mutlu olduk.

Minerals include calcium, chloride, copper, iodine magnesium, phosphorus, potassium, zinc, sodium and selenium..

The Royals then joined the Queen and 700 members of the livery companies, the original trade associations, at a grand lunch in Westminster Hall.

Reservations would be recommended for most restaurants on the weekends.

In addition, Timberland High Top Boots may also consider the future development of children's clothing market.

Wednesday, May 08, 2013 1:47 AM by XRwogannimeieTest

# re: Reporting Services - Add a logo to the Report Manager

Hello, I wish for to subscribe for this weblog to take latest updates, therefore where can i do it please help. nfl jerseys www.ombudsman.com/.../nfl-jerseys.html

Friday, May 10, 2013 6:54 AM by 22pms@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Not so negative. Interesting issues here

Saturday, May 11, 2013 8:17 PM by diocasdifk@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

I must show my passion for your kindness in support of men who really need help on the topic. Your special dedication to getting the solution throughout ended up being certainly significant and have truly enabled folks just like me to achieve their pursuits. Your important tutorial implies a lot to me and especially to my mates. Regards; from everyone of us. sneakers isabel marant www.asvelcorporate.com/.../sneakers-isabel-marant.html

Sunday, May 12, 2013 10:06 PM by 992pms@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

I have been checking out many of your articles and i must say pretty good stuff. I will make sure to bookmark your site. oakley sunglasses portal.imagerights.com/oakley-sunglasses.html

Monday, May 13, 2013 1:04 AM by oakleysunglasses@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

You made a number of good points there. I did a search on the topic and found most people will have the same opinion with your blog. jerseys www.ombudsman.com/.../jerseys.html

Tuesday, May 14, 2013 10:19 AM by 22pms@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

cake, just pay for a few of the Vehicles 2 Movie toy autos. Make  http://www.baidu.com sports icon David Beckham are wearing the same brand for their

Wednesday, May 15, 2013 6:27 AM by Marynaxyy

# re: Reporting Services - Add a logo to the Report Manager

Hi there, how's it going? Just shared this post with a colleague, we had a good laugh. sneakers isabel marant esprit-sport.com/.../isabel-marant-basket.html

Wednesday, May 15, 2013 8:54 AM by 990pms@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Hello. Great job. I did not anticipate this. This is a great story. Thanks! Isabel marant basket www.do-mo.fr/.../isabel-marant.html

Thursday, May 16, 2013 3:26 PM by 990pms@gmail.com

# re: Reporting Services - Add a logo to the Report Manager

Hi there, I wish for to subscribe for this web site to obtain most recent updates, therefore where can i do it please help out. Isabel marant basket www.asvelassociation.com/.../isabel-marant.html

Friday, May 17, 2013 1:47 AM by 992pms@gmail.com

Leave a Comment

(required) 
(required) 
(optional)
(required)