You should be looking at the Visual BASIC IDE with a gray box in the left hand corner. As mentioned previously, this gray box is…
You should be looking at the Visual BASIC IDE with a gray box in the left hand corner. As mentioned previously, this gray box is…
Comments Comments are just as important in Visual BASIC as they are in any other language. Without them, code that you wrote when you were…
Input/Output Input is used to take information from the person using the program. The TextBox component is used to get input from a user. On…
Listboxes Listboxes are just that, a box with a list in it. When we add a Listbox (Name beginning with lst) we need to add…
If…Then…Else There are times when you want the program to respond differently to different events. Say you wanted to write some code that checks to…
CURL can be a very important tool when you need to grab contents from a page from another website and display it on your own….
When working with databases, the ability to find and replace MySQL data can save time and streamline bulk updates across your tables. A common scenario…
In any programming language, commenting your code is important. This is especially true in PHP when you more than likely will have code being looked…
An alert box is a pop-up message box that displays an alert message to the user. It can be used to inform the user about…
A ternary operator is a concise way to perform conditional logic within a single line of code. It is often used as a shorthand for…