Welcome to AspAdvice Sign in | Join | Help

April 2004 - Posts

VS.NET EA 2003, SD apps and problems

I faced weird problem yesterday. I couldn't get Smart Device app development to work with my VS 2003 at all. When I created the SD app project, it was missing all the references right away. When I tried to compile, IDE complained with "The designer could
Posted by joteke | 2 Comments
Filed under:

Review: The Visual Basic .NET Programming Language (Addison-Wesley)

My brief review of the book is now online here . Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
Posted by joteke | 0 Comments
Filed under:

Difference: throw or throw ex?

Just for demonstrating, if you have classes in C# as follows: using System; namespace WindowsApplication2 { public class Class1 { public static void DoSomething() { try { Class2.DoSomething(); } catch (Exception ex) { throw ex; } } } public class Class2
Posted by joteke | 5 Comments
Filed under: