Monday, January 23, 2006

 

VB .NET 2005 - Global Keyword

Global
Points to .NET framework base class library when used. This is useful wherein some of the custom namespace in an assembly has the same namespace in .NET framework base class libraries.


Namespace System.IO
 
Public Class FileWriter
Public Shared Sub Write()
' Some code here for actual implementation
End Sub
End Class
 
End Namespace




Supposing you want to use the .NET framework base class library for System.IO.
Simple use the Global keyword, please see below.


Dim fstm as Global.System.IO.FileStream




 

IMS Update for Mediaspot

I just finished doing the bug fixes on the IMS application for Mediaspot. I have troubles on finding the bugs but I'm glad I've found it in the end. The cause of the bugs were controls that were being binded to a business objects properties and failed to unbind it when the form closes.

On the other hand, I did my start my new job last monday 01/16. Since the company I joined is still new here in Cebu, we are still setting up the office space and I'm starting to do research on .NET 2.0 and its new features.

I told Joseph that I will be posting some of the new features in VB .NET 2005, please hang on I'll give you a blast this week.

This page is powered by Blogger. Isn't yours?