Creating a web browser in Visual Basic 2008

Basically Everyone who wish to surf the World Wide Web needs to use a web browser such as Internet Explorer ,FireFox , Google Chrome,Opera,Safari, Android browser or others. However, isn’t it cool that if you can create your very own web browser that you can customize to your own taste ? Yes, you can do that in Visual Basic 2008, and pretty easy too.

Read More……………

Creating Arrays in Visual Basic 2013

What is an Array? In visual Basic 2013, an array is a group of variables(elements) with the same data type . When we work with a single item, we only need to use one variable. However, if we have a list of items which are of similar type to deal with, we need to declare an array of variables instead of using a variable for each item

For example, if we need to enter one hundred names, it is very tedious to declare one hundred different names, this is a waste of time and efforts. So, instead of declaring one hundred different variables, we need to declare only one array. We differentiate each item in the array by using subscript, the index value of each item, for example name(1), name(2),name(3) …….etc. , which will make declaring variables streamline and much more systematic.

Read More………………