OCDProgrammer.com

It's Microsoft's World, and I'm just living in it
View Clarence Klopfstein's profile on LinkedIn

Clarence Klopfstein's Facebook profile

This site is under construction...

Categories

New Comments

Referring Sites


Disclaimer

  • This is MY blog. The views represented here are not in relation to anybody else. Please read my full disclaimer for a more complete disclaimer.

A few random links and saved pages

March 12, 2011 22:46 by ckincincy

I have a habit of bookmarking pages as I feel that I need to go back and review the content. 

So, I’m a bit too OCD to have that many random links in my book marks and I’ve had it happen more than once where stuff I bookmarked later disappeared from the web.  Let me share them with you… and at the same time give ma  point of reference!

PC Usability Hacks

Programming Tips

Fun Tips

Hacks

Tech Links

Political/Opinion


Completely Remove .NET Framework

March 6, 2010 06:00 by ckincincy

Last week I came into the office to find my box was completely hosed.  I kept getting a compile error that the webengine.dll could not be found. 

I tried many different uninstalls and reinstalls of .NET but it wouldn’t fix the problem.  However I notice that even though .NET was uninstalled, it wasn’t.  I went looking for a tool to completely uninstall .NET and found this website.

After using that process to uninstall .NET and then rebooting, I reinstalled .NET and was good to go.

Was one of the most frustrating work days I have had in some time, have never been so close to being beaten by a technical problem like this.


WebDev.Webserver.exe has stopped working fix

March 3, 2010 06:00 by ckincincy

I’ve been doing some work on the DotNetBlogEngine and recently I would get this error when I tried to debug.

Thankfully after an online search I found this solution.

In short, open up your .SLN file in notepad and edit the VWDPort entry to a lower number.  You should be up and running after that. 

Thanks to JBERKE for the help!


Visual Studio Tips and Tricks

January 29, 2009 03:00 by ckincincy

Ran across this post a while a go, figured I’d share.  It is 11 Tips for Visual Studio.  Take a moment and go over to Stephen Walther’s site for an explanation of them.  I really like number 1 and 4.  I already knew 6, 7, and 11.

Tip #1 – You don’t need to select a line to copy or delete it

Tip #2 – You can add a namespace automatically by pressing CTRL-.

Tip #3 – Never create properties by hand

Tip #4 – You can remove and sort unnecessary using statements

Tip #5 – Use CTRL-k+c to comment out code

Tip #6 – You can close all documents except the current one

Tip #7 – You can open a database by double-clicking the database file in App_Data

Tip #8 – You can copy a file or folder into a project by dragging and dropping

Tip #9 – Use CTRL-SPACE to perform statement completion

Tip #10 – Add new items by pressing CTRL-N or CTRL-SHIFT+A

Tip #11 – You don’t need to type file extensions when adding a file