|
|
Implement Globalization in VB.NET using CultureInfo class
|
Views:
7165
|
|
Author:
Waqas Anwar
-
Posted Date:
06-Apr-2008
|
|
CultureInfo class provides culture-specific information in .NET applications. This information includes language, sublanguage, country or region, day names, month names, calendar etc. It also provides culture specific conversions of numbers, currencies, dates or strings.
In the following tutorial, I will show you how you can retrieve this information from different cultures available in .NET Framework.
|
|
|
Display Windows Services in VB.NET
|
Views:
967
|
|
Author:
Waqas Anwar
-
Posted Date:
06-Apr-2008
|
|
.NET Framework 2.0 provides System.ServiceProcess namespace that contains classes developers can use to create and install Windows Services. These classes include ServiceBase, ServiceInstaller and ServiceProcessInstaller. This namespace also contains one class which can display the list of all the Windows Services running on local or remote computer. In this Tutorial I will show you how you can display the list of locally running Windows Services inVB.NET.
|
|
|
Using DriveInfo class in VB.NET to get System Drives Information
|
Views:
1061
|
|
Author:
Waqas Anwar
-
Posted Date:
06-Apr-2008
|
|
DriveInfo class in .NET Framework is very useful class you can use to get information about the system drives. It has many properties and methods to query drive information such as drive type, drive format, total size or total free space. In the following Tutorial I will show you how to use this class in VB.NET Windows Application.
|
|
|
Delegates in Visual Basic .NET
|
Views:
653
|
|
Author:
Waqas Anwar
-
Posted Date:
25-Mar-2008
|
|
A delegate in Visual Basic.NET is defined as a type safe function pointer. It holds the memory address of a function or procedure in the code and can be used to invoke the function. As a Visual Basic developer, we used delegates on daily basis without even knowing that we are using them. Event handling in .NET is also based on the concept of delegates and .NET Framework automatically handles delegates behind the scenes when we handle events in the program.
|
|
|
|