Displaying Computer Information using VB.NET

This is my another tutorial in vb.net entitled Displaying your Computer Information. We will just use My Namespace in which it exposes frequently used information about your application, your computer, and more. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

C++ Tutorial : Exceptions in C++/CLI

   Hi :) It’s Bright777 and today I want to show you a mechanism of catching exceptions in C++. First of all you need to know that is the exception how it can be caused. Exception is the action that can’t be completed due to the errors. For example, if you divide some number and zero, you will have an exception.    C++ can help you to catch exceptions.

How to use Math.Max Function in VB.NET

In this article, i will introduce some function in VB.NET regarding the Math Functions. Math.Max is a function in vb.net that has its class in Math. Math.Max() Mathematical Function in Visual Basic.Net is used to return the largest of two decimal numbers. Note: This function is only applied in two integer or decimal numbers. So, now let's start this tutorial! 1.

How to Display OS Version in Visual Basic.Net

Hi! This is me again! :) Now, i will introduce some kind of tutorial that will find and display your PC's OS Version with the use of Visual Basic. Before we start, let us first discuss what are the codes that we will be using in this tutorial. We will use the OperatingSystem class as it will return a string representation of operating system information and the Environment Class which will provide the current environment and platform of your OS. Now, let's start this OS Version Displaying tutorial! 1.

Font Dialog Tutorial in Visual Basic.NET

Font Dialog is one of the important features in VB.NET The Font because it lets the user choose attributes for a font, such as font family and associated font style, font size, effects , and a script. Now, let's start this Font Dialog tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

How to Trap Error in Visual Basic

Error trapping let you intercept and deal with run-time errors, rather than having programs abort or ignore a fatal error and can possibly causing loss of data. But there is one way to trap error in Visual Basic. It has the same syntax with VB 6.0 and VB.NET. To prevent the program from error we have to use the On Error Goto Statement. Now lets start this tutorial! :) 1.

C++ Tutorial: Using of BackgroundWorker Component in C++/CLI

Intro     Hi. It is Brigh777 and today I will show you how to use such component as backgroundworker in your C++ application. First of all, I tell you why we need, such component, as backgroundworker. Backgroundworker is a really good thing then you want to run some background processes in your application. The standard application does all calculations, commands and other things in one thread. It causes a lot of problems, such as a long time of work, the main window of your program can hangs , while you program will do calculations.