How to open a url from winform LinkLabel.
That is easy!
In Click of LinkLabel:
System.Diagnostics.Process.Start("http://www.itblogs.info/");
Then .Net Runtime will call your default browser.
Same Look and Feel across various platforms
I am developing some personal software and use a number of operation systems, such as Linux, Windows XP & Vista and Windows Mobile. Yeah, the first name is hit on my head, Java. The virtual machine of Java can run various platform too and they has very very similar Look and Feel across various platforms. But my major language is C# at this moment. My solution is wvWidget. This a C++ GUI API library and can run in Win32, MacOS, Linux and WinCE(Windows Mobile). Moreover, it has a .Net Library. So I can develop the application via this library.
SharpDevelope Window Mobile Problem
I got a new Windows Mobile. I was looking for a development tool. I have tried SharpDevelop. It got a solution template for Compact Framework. But the error,Microsoft.CompactFramework.Common.targets missing, appeared. I have spent a lot of time to solve this problem. Yeah! this morning, I reinstall .Net framework 2.0 SDK. The error has disappeared. But .NET 3.5 is not supported, because .NET SDK 3.5 for Windows Mobile is not downloadable.
Learnt a new word
Today, I listened a talk from TechEd 2006.
They mentioned TDD.
Well, I did a search in Wikipedia too.
http://en.wikipedia.org/wiki/Test-driven_development
This is quite interesting ,Test-Driven Development. Writing the test cases and then only implement the codes for the cases. It sounds like a kind of hacking the code.