Lesson 6 - make Slide Font in Vb 6
Ouke kk ...
How to make a "Slide Font","Label Walk" on the form or on the application that we will create.
let's refer to the tutorial below:
let's refer to the tutorial below:
STEP:
1. Component Needed :
- Form1
- Label ( Label1 )
- Label ( Label1 )
- Timer
- Coding
- or some component you can add ^_^
- Coding
- or some component you can add ^_^
_________________________________________________________________
2.
COMPONENT PROPERTIES :
Label : - Caption = "Whatever You Want"
COMPONENT PROPERTIES :
Label : - Caption = "Whatever You Want"
Timer : - Interval = 100
_________________________________________________________________
CODING :
3.
- Double Click Form1, or Right Click > View Code.
add this code into Form1:
add this code into Form1:
Private Sub Form_Load()
Label1.caption = Label1.caption & Space(50)Timer1.Enabled = True
End Sub
- Double Click Timer1, add this code into Timer1:
Private Sub Timer1_Timer()
Dim str As String
str = Form1.Label1.Caption
str = Mid$(str, 2, Len(str)) + Left(str, 1)
Form1.Label1.Caption = str
End Sub
Dim str As String
str = Form1.Label1.Caption
str = Mid$(str, 2, Len(str)) + Left(str, 1)
Form1.Label1.Caption = str
End Sub
_________________________________________________________________________________
4. Hit F5 to Preview,
You are done,.. and you can add the information Project, and make the exe. files
5. Enjoy.
5. Enjoy.
You can Download The Project Files,
You can Follow The Step By Watch Video ^_^
[ Uploading :P ]
download note:
Link download in a picture Download button.
* You Will be redirected to the site adf.ly
wait 5 seconds until there is written SKIP AD at the top right of your monitor.
click > SKIP AD < to continue.
Thanks For Read and Visit, Best Wishes ................... DindaPhobia.
Good Job.
0 comments:
Post a Comment
Enter Your Comment For This Post.
Please Do not SPAM!