Imagine you have this enum definition and a variable of same type: [Flags] public enum Tubo { One, Two } … Tubo tubo = Tubo.One; Now, how do […]
Slovenia/1st European Silverlight Challenge
SLODUG has launched the Slovene website of the 1st European Silverlight Challenge. You can read more about it in this post (in Slovene) or go directly to the […]
Sometimes silent changes are for better
I've been reading monthly invoice from my ISP and a line caught my eye immediately. I've been a happy user of FTTH (fiber optics) 6Mb/6Mb Internet bandwidth for […]
Custom embedding using CodeRush
It happened that I had to embed plenty of asp.net elements into tables, i.e: <table> <tr> <td> <asp:Label … /> <asp:TextBox … /> </td> <td> <asp:Label … /> […]
Where has TimeZone2 class gone?
If you are following blogs about .net 3.5 you might have across this interesting post. It explains the benefits of new TimeZone2 class residing in .net 3.5 System.Core […]
WebConfigurationManager.OpenWebConfiguration throws Failed to map the path ‘/’.
Create a ASP.NET Web Site and put this piece of code into Page_Load method: Configuration cfg = WebConfigurationManager.OpenWebConfiguration(System.Web.Hosting.HostingEnvironment.ApplicationVirtualPath); There are good chances you’ll get Failed to map the […]
Visual Source Safe 2005 over web problem 0x80072F19
Did you ever try VSS 2005 Internet connection? I did once just for testing. I need it now for real, to connect to a client of mine. The […]
Everybody, start burning that broadband of yours – VSTS 2008 is waiting for you in MSDN Subscriptions
Yep, right. Fire up your browser, go to MSDN Subscriptions and start downloading! VSTS 2008 is already available. Routers will scream, cables will burn, let the avalanche begin!
Visual Studio 2008 next week?
MSDN Subscription WebLog is suggesting that we should look for Visual Studio 2008 downloads at MSDN Subscriptions early next week. I foresee a lot of people constantly refreshing […]
Assigning default values to fields trivia
class Tubo { bool value; bool TuboTubo() { return value; } } Will this piece of code compile (answer without compiling, please )?