SharE AlL YoU KnoW

Archive for the ‘Programming’ Category

Building Documentation Comments in C#

Tuesday, February 26th, 2008 Posted in Programming | No Comments »

  C# allows developers to embed XML comments into their source files, in order to provide additional information for other developers. Take a look at the example below: You can see that there some descriptions for ...

Use Parameters in SQL command

Thursday, August 23rd, 2007 Posted in Programming | No Comments »

When you are trying to work with data, you probably need to filter the results based on certain criteria. Normally, user will input the specific value and it will be used for the SQL query. The SQL query formed will ...

Windows Presentation Foundation

Tuesday, August 7th, 2007 Posted in Programming | No Comments »

Windows Presentation Foundation, WPF, formerly code named Avalon, is a component of Microsoft .NET Framework 3.0, empowers users to build the next-generation of Windows users experiences. It is directly related to XAML (Extensible Application Markup Language), providing a ...

Visual Studio 2008

Wednesday, July 25th, 2007 Posted in Programming, Software Dev., Tech Corner | No Comments »

  Visual Studio 2008, code-named Orcas is the successor to Visual Studio 2005, and it would be launch together with Windows Server 2008 and SQL Server 2008 at 27th February, 2008, in Los Angles. The next version of ...

Google Code Search

Monday, July 9th, 2007 Posted in Programming | 1 Comment »

Google Code Search is a free beta product from Google which debuted on October 5, 2006, allowing all the web users to search for codes on the Internet. Most of the programmers would like to use this tool to find relevant ...

Netbeans IDE 6.0 Preview

Friday, June 1st, 2007 Posted in Programming, Software Dev. | No Comments »

As mentioned earlier in my post, Netbeans IDE 6 Preview is available now. You can check the roadmap below regarding the Netbeans open source project. From the roadmap, Netbeans IDE 6.0 will be released in November 2007. Hopefully, we can ...

Regular Expressions

Sunday, May 27th, 2007 Posted in Programming, Software Dev. | 2 Comments »

Regular expression is a string that is used to describe or match a set of strings, according to certain syntax rules. It is supported by many programming languages for string manipulation. (Wikipedia) So, have you tried using Regular Expression in ...