Step by Step Tutorial | How to create .exe file in Visual BAsic 6.0 | Basic Tutorial

 1. Assuming you are done making youre program. And you want to make an .EXE FILE in visual basic 6.0 | Basic Tutorial

 2. Hit FILE , that is on the upper right corner of the screen.
3. Then, Look for Make Project1.exe. See Screenshot. Hit that!.
 3. A pop up will appear, ask you where you would like to save the exe file. Choose desktop. And hit OK.
 4. After saving, look for project1.exe in desktop. And open it.
 5. You've just done it. Perfect! Easy as 1,2,3.








Step by Step Tutorial | Hello World in Visual BAsic 6.0 | Basic Tutorial

1.Creat the Program. Using Visual Basic 6.0.
2.Put one TEXTBOX and one COMMAND BOX 
3. Then, we only put code at command (ENTER) button.
#theCodes
Private Sub Command1_Click()
Text1.Text = "Hello World!"
End Sub
4. We are DONE! Hit run, or press F5.

Step by Step Tutorial | How to use Menu Editor In Visual BAsic 6.0

1. Open Visual Basic 6.0
2. Locate Menu Editor

 3. At Caption, Type the File(Any u want)
4.At name, put " mnu " before u input the caption. So in this i use mnuFile  (Avoid Spaces in NAME)
5. As you type file in the caption, you'll see in a wide white space what have you typed in the caption.
 6. EXPLORE. Add as many as you want. But dont forget to put mnu in NAME before the caption name.
 7.Here is the result of How to use Menu Editor in Visual Basic 6.0 | Step by Step Tutorial

Tutorial 3 | Basic Calculator |Visual Basic 6.0 Tutorials| Basic Tutorials VB6.0




Functions 
Basic Calculator created in Visual Basic 6.0
Simple Calculator with 2 Text Box for two input.
With the function of Addition, Subtraction, Multiplication and Division.

You can download Visual Basic 6.0 Tutorials 3 below :)



DOWNLOAD




NOTE! Install Visual Basic 6.0 first in you're computer to open tutorial 2.

------------------

PLEASE REPORT A DEAD-LINK

------------------

 

Vb 6.0 | Visual Basic Tutorials
#THECODES 
(Codes For (addition) SIGN)
Private Sub Command1_Click()
Text3.Text = Val(Text1.Text) + Val(Text2.Text)
End Sub

(Codes For -(subtraction) SIGN)
 Private Sub Command2_Click()
Text3.Text = Val(Text1.Text) - Val(Text2.Text)
End Sub

(Codes For *(Multiplication) SIGN)
 Private Sub Command3_Click()
Text3.Text = Val(Text1.Text) * Val(Text2.Text)
End Sub

(Codes For / (division) SIGN)
 Private Sub Command4_Click()
Text3.Text = Val(Text1.Text) / Val(Text2.Text)
End Sub 

 
Easy! | Comment | Follow Us on G+ | Like us on Facebook

TUTORIAL 2 VISUAL BASIC| HOW TO USE COMBO BOX AND TEXTBOX | BASIC TUTORIAL |




Functions 
Its main function, using COMBO BOX as item list, when to select an item  from COMBO BOX the program automatically display the Price of the item in TEXTBOX.

You can download Visual Basic 6.0 Tutorials 1 below :)

DOWNLOAD

NOTE! Install Visual Basic 6.0 first in you're computer to open tutorial 2.
------------------
PLEASE REPORT A DEAD-LINK
------------------
Vb 6.0 | Visual Basic Tutorials

#THECODES 
Private Sub Combo1_Click()
If Combo1.Text = "CHICKEN" Then 
Text1.Text = "200"
End If
If Combo1.Text = "HOTDOG" Then
Text1.Text = "400"
End If
End Sub
 
Private Sub Form_Load()
Combo1.AddItem "CHICKEN"
Combo1.AddItem "HOTDOG"
End Sub

Easy! | Comment | Follow Us on G+ | Like us on Facebook
 

TUTORIAL 1 VISUAL BASIC| HOW TO USE OPTION BOX, TEXT BOX & CHECK BOX





Functions 
You can change the color of the text inside the TEXTBOX, by selecting a color on OPTION  BOX and font can change through using CHECK BOX to Bold and Italic or both.

You can download Visual Basic 6.0 Tutorials 1 below :)

DOWNLOAD

NOTE! Install Visual Basic 6.0 first in you're computer to open tutorial 1.
------------------
PLEASE REPORT A DEAD-LINK
------------------
 
Vb 6.0 | Visual Basic Tutorials
 
#thecodes
 (Codes For  BOLD)
Private Sub Check1_Click()
Text1.FontBold = True
End Sub

(Codes For Italic)
Private Sub Check2_Click()
Text1.FontItalic = True
End Sub

(Codes For Blue)
Private Sub Option1_Click()
Text1.ForeColor = vbBlue
End Sub

(Codes For Red)
Private Sub Option2_Click()
Text1.ForeColor = vbRed
End Sub

(Codes For Black)
Private Sub Option3_Click()
Text1.ForeColor = vbBlack
End Sub
 
Easy! | Comment | Follow Us on G+ | Like us on Facebook

Vb 6.0 LOG-IN form v3


Log-in form Created in visual basic 6.0
Codes are so easy, just download the File and Open with Visual Basic 6.0 

| Simpliest Visual Basic Log-in form|
|Visual Basic 6.0 Tutorials|
|VB6.0 Tutorials|

DOWNLOAD HERE

Vb 6.0 Tutorial v1


Created using Visual Basic 6.0
A Simple Program, when to select a Item, 
will automatically display the Price on click.

Download the Program / System below
Make sure you have Vb6.0 installed in you're computers.
Download Here

 |Using Labels, ComboBox and Command Butoon\
|Free Visual Basic 6.0 Tutorials|

Visual Basic 6.0 Counter / Shooping System [BASIC] v2


Created using Visual Basic 6.0
Just explore the whole systems and code


Download Here
MEDIAFIRE