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
------------------
Private Sub Check1_Click()
Text1.FontBold = True
End Sub
Vb 6.0 | Visual Basic Tutorials
#thecodes
(Codes For BOLD)
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
Post a Comment