Ok, lets get this started this is for absolute newbies
First if you going to be doing basic programming like me forget about books, they just a waste of time I read a book to try to learn VB and it confuse me more then anything
Aigh here we go first get VB 6 search on yahoo or better yet buy it on limewire
So Now you have the program install and we ready to start, we going to make a real basic program I want to do this because i want you guys to get the feel of vb and to see how easy it can be,
First we start VB and the first screen you will get is this
Now here we going to select Standard EXE it should be already selected then you press Open
Now you come open the next screen I can fit everything so I going to devide the pic into two on the left you will see this
And on the right you will see this
Okie so lets get started you see this is the form where we put all the command buttons, textboxes ect..
Now this is going to be an easy program all its going to do is send a pop up messege saying my first program, its easy as hell
First it be best to make the form smaller, so put the mouse on the form blue borders and drag it to the desire size, it's the same as making a windows windows smaller or bigger ):
Ok now we must select a command button from the components box I am talking about this
The components box has all the things you need to create the program such as text boxes, buttons ect..
Ok now er going to select a command button which is located on the area surrounded by the red circle in this pic
Click on it then move the mouse on top of the form you will see something like a plus sign click on the form where you want to put the button
now your form should look similar to this,
You see the command button has some blue squares around them, well you drag those to resize the command button
Ok now we ready to put some code on the command button
Click on the command button and this screen should pop up
now we going to enter this basic code between Private Sub Command1_Click() and End Sub
enter this code
MsgBox "My first program"
it should look like this
See how easy you just made a program
on top of vb you will see a play button i am talking about this
Click on that and the program should pop up, now click on the button and the messege box saying my first program should pop up.
there you go
now lets compile the program you know to make it an exe so people can use it. fist stop the program, click on the stop button right next to the play button.
then we click on File on the top right of vb this window should come up
you see where it says Make Project1.exe click on that now a pop up with the Make project save box shoudl come up, there where it says File name enter the name you want for your program and ended with .exe for example you want to name your program first you will type first.exe on the box then press Ok, it should compile it, Ah make sure to remember which folder you compile it so you can run it and try it lol. aigh so go to the folder where you compile it and click on the first.exe and there you go your first program
Now before you close vb save the vb source code of your program, click on file again and then on save as, and save it that way
as you can see vb is easy and I going to make more tutorials to help u understand even better so keep on checking the forums





