Visual Basic - VB code, scripts and tutorials.
OK, now for the Visual Basic ( VB )Tutorials, VB codes / scripts and VB programs. Visual Basic is what I started off with when I first started programming. Visual Basic is extrememly easy to use and learn, but is also Windows reliant, so you cannot run the VB applications on other Operating Systems without a Visual Basic emulator, and Visual Basic does teach you some bad habits. The worst habit you can pick up is relying on the Visual Basic auto capitalisation feature, or in other words, Visual Basic puts the capitals in where they are needed and auto corrects some of the code. In C++ you will often find yourself looking for a problem, when all you needed was a capital somewhere. Now here is some Visual Basic code to get you started off with the basics, and below are some Visual Basic programs I have made (Source not included).'
You can view all the Visual Basic editable commands (not API) for an object when in the code editing window. Say you are in a Visual Basic forms code, you type either Form1. or Me. and Visual Basic will come up with a list of things you can choose, for example, Me.Caption, Me.Width, Me.Height, etc, all of these are changeable values, but there will be some such as Me.Name, which will only return a value.
Respectively you can control all of a Visual Basic windows (forms) properties, including it's shape using the Windows API, there are some great API programs out there that list all known API, all you need to do is a google search.