Monthly Archives: January 2010

Java and .NET Web Services Interoperation Training

The slides, Java Web Service and .NET client are all in my skydrive.com. This is session conducted on 15th January 2010. TheWebServicesPlatform.xpsConAppJavaWS.rar JavaWSCalculator2.rar

Posted in Uncategorized | Leave a comment

Antivirus from Microsoft free

One of my biggest problems in the past is where to find antivirus after installing Windows® operating system. Today this is no longer an issue to me because Microsoft has free antivirus for Windows®. To download and play with it: … Continue reading

Posted in Uncategorized | 1 Comment

Virtual function in C# in depth

In a simple term, in order to override a function in base class with implementation that function in base class must be virtual. Consider the code below. class MyBase {   public void GetData()   {     int Length = 0;   } }          … Continue reading

Posted in .Net | Leave a comment

Open / Read Excel content in C#

To read the content in Excel file using C# is not as hard but it is not too easy too. The reason for not so easy to read it is because over the years the syntax to read an Excel … Continue reading

Posted in .Net | 1 Comment

RSS Feed in C# complete code

I was looking for quick way to create a RSS Reader in C# and I found a download in dreamincode.net. Somehow the code has 2 very nice classes without implementation code. Following is the code for console application: RssManager ObjRss … Continue reading

Posted in .Net | Leave a comment