Wednesday, May 30, 2012

UAC and SSRS

If you are trying to access a local SSRS be sure to run either SSMS or IE as an administrator. This is really poor that a major release of both OS and SQL latter they have still not fixed this.

You can reference here for more detailed steps and read the connect ticket. If your going to tout about building more robust software don't make me run your web browser as an admin!

The worst part of this is when you login with SSMS it gives you no warning, just everything is disabled. It wasn't until I browsed to the report manager and was greated with did it all click:

User 'domain\joeuser' does not have required permissions. Verify that sufficient permissions have been granted and Windows User Account Control (UAC) restrictions have been addressed. 

Monday, May 7, 2012

Baby Smash!

This app must be five years old and like his brother before him, Moshe has found he loves Baby Smash!

Notice though he is smashing the wife's computer, he's not allowed to smash on mine.

Thank you Scot Hanselman again

Thursday, May 3, 2012

IE 8/9 Not Enough Space Issue

We had an interesting bug report come in today. One of our customers who is stuck using IE8, reported that the spell checker in our rich text editor was causing the browser to lock up.

We are using CKEditor with the SSL Web Spell Checker product. So first thing I did was fire up IE, and test it out. I was greeted with a Javascript error of "Not enough storage is available to complete this operation." I verify my machine has 4GB of memory, plenty of disk space, paging file etc. Everything seems fine.

So I launch into the debugger and am greeted with: this.$.createStyleSheet(h)


The lightbulb went off in my head. This page is compromised of many small user controls written in ASP.Net. Sometimes our developers will put their style blocks in the control since they are building at a component level. IE stops processing style tags after the 31st. I guess it also causes an exception to be thrown if you try and add one and your past that point.

Just one more reason, I am pushing our customers to Chrome