Friday, July 25, 2008

Unlocker & Teracopy

I’d like to mention two great tools I came across the other day, Unlocker & Teracopy.
 
Unlocker runs in the background and when you try to delete something and get a “file in use” or “permission denied” even though you are a local administrator it automatically kicks in. You will get a window showing what the cause of the error is and options to get rid of it by removing the cause for the error.

Teracopy is a replacement for the standard file copying/moving system which allows for extremely faster copy/move operation. If you every tried to copy a large file from/to another system from Vista over a wireless LAN you should automaticlly see the value this has. Yes, SP1 improves that issue however it still doesn’t do it as well as it does on XP.

Unlocker:
http://ccollomb.free.fr/unlocker/

Teracopy:
http://www.codesector.com/teracopy.php

Posted by Hakke at 15:50:02 | Permalink | No Comments »

Thursday, July 24, 2008

Visual Studio 2003 To 2008 ASP.NET Updates Breaks Web Controls

When moving a site using ASP.NET 1.1 to 3.5 Visual Studio throws a nasty little entry in the web.config which breaks web controls such as the menu control. Remove the entry you see below from your web.config to address this issue. I hope this saves some people the hassle of finding this solution like I had.

 <xhtmlConformance mode=”Legacy“/>

Posted by Hakke at 16:40:42 | Permalink | No Comments »

Friday, July 18, 2008

SMTP Tester

Here’s a simple command line tool I built when diagnosing SMTP issues. It is a great companion to Microsoft’s SMTPDiag.

Usage: SMTPTester.exe HOST FROM TO

http://www.codeplex.com/smtptester

Posted by Hakke at 15:12:57 | Permalink | No Comments »

Sunday, July 13, 2008

Visual Studio 2008 Setup Project Build Fails

As many of you may know, setup projects fail on build with no errors in certain solutions. This happens to be a strange LINQ to SQL issue. If one project uses it any setup projects in that same solution will fail on build with no errors. There is a workaround. However this work around is no good for web site projects. The work around is to edit the project file manually. A website project does not have it and the closest thing to it would be the web.config file.

For regular projects do this to workaround the issue:

1. Close VS 2008.
2. Open the project file containing the LINQ To SQL item in Notepad.
3. Remove the following lines:
<ItemGroup>
     <Service Include=”{3259AA49-8AA1-44D3-9025-A0B520596A8C}” />
</ItemGroup>

If you open the DBML designer again you will have to perform this work around again. For solutions with a web site project using LINQ to SQL all you can do is temporarily remove the web site project from the solution, build the setup project and place it back in afterwards.

Luckily even though it says it fails nothing actually fails and the installer is created. Microsoft’s Connect site lists this project as fixed. However it has been stated that with the Visual Studio 2008 SP1 beta the problem still exists. So either there is some hotfix out there that nobody can seem to find or it is going to be a long time until this is actually resolved.

Posted by Hakke at 03:07:11 | Permalink | No Comments »

Thursday, July 10, 2008

Visual Studio 2008 & .NET v3.5 SP1 Beta More Like Alpha

As we all know service packs are supposed to have fixes and enhancements to existing features. However the Visual Studio 2008 & .NET v3.5 SP1 Beta release had a ton of new features. Some of which people like myself were in desperate need of (BIDS in my case). So I figured beta, can’t be too bad, let me give it a try. I was seriously wrong.

Yes beta has no promise of working correctly at all. However beta is a level above a release quality status called alpha. So there is a certain amount of stability expected. In the case of alpha you know it is going to have serious issues.

Then we have Microsoft releasing a beta version service pack for their latest development tools. Yet, even though they were labeled as beta, they behaved like alpha (or CTP as Microsoft likes to call it). So you have them releasing software with an incorrect status and goes against the service pack quality.

So I am left with the question of why did they do this. I figure the answer is simple. These tools lacked important features to be put in full use. So they release these service packs as beta and cram the necessary new features they require. I figure it is simply because they wanted to show that they were going to fill in the missing pieces and soon.

Ok, this is understandable. Although I don’t have to like it to agree with it. I hope this does not become commonplace for them. SQL 2008 CTP (now RC0 by the way) was allot more stable then these supposed beta releases. Oh well, lets hope to see things like this handled better in the future.

Posted by Hakke at 17:53:42 | Permalink | No Comments »

Wednesday, July 9, 2008

HP 2133 UMPC Horrors

My job recently purchased the highly praised HP 2133 UMPC (http://www.hp2133guide.com/). I thought it would be perfect for my needs. Sadly, this was not the case.

First of all the trackpad buttons are on the left and right of it instead of under it which makes navigation a nightmare. Then, you think VIA CPU, that should be low power enough to keep it from getting hot. Wrong! It was way beyond the ability to cook an egg on it. The entire bottom surface getss so hot could flip it over and fry up a burger on it. Luckily the battery is designed to raise up the back and keeps most of the surface from being directly on your lap. I guess this was their work-around for the heat issue. Then you think think, 1280×768 resolution, that leaves me with a ton a of desktop space to work with compared to other UMPCs. That just makes it worse. Even with a 120 DPI and 2.5x magnified reading glasses it was still painful to see anything. I could go on however I think my point has been made.

My 2 children each have and EEE. Even though it has such low specs I would take that over the 2133 any day.

Posted by Hakke at 02:37:43 | Permalink | No Comments »