VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



A1 'Animated' spinning globe using only a label and a timer. (WebDings Required)

by [])utch[]v[]aster (18 Submissions)
Category: Miscellaneous
Compatability: VB Script
Difficulty: Beginner
Date Added: Wed 3rd February 2021
Rating: (3 Votes)

Using webdings, you can created a VERY rudamentary spinning globe. Please do not vote.

Rate A1 'Animated' spinning globe using only a label and a timer. (WebDings Required)

Const G1 As String = "ü"
Const G2 As String = "ý"
Const G3 As String = "þ"
'Label needs to be WEBDINGS font, at a relatively large size.
'My Timer1.Interval is set to 150
Private Sub Timer1_Timer()
 If Label1 = G1 Then
  Label1 = G2
 ElseIf Label1 = G2 Then
  Label1 = G3
 Else
  Label1 = G1
 End If
End Sub

Download this snippet    Add to My Saved Code

A1 'Animated' spinning globe using only a label and a timer. (WebDings Required) Comments

No comments have been posted about A1 'Animated' spinning globe using only a label and a timer. (WebDings Required). Why not be the first to post a comment about A1 'Animated' spinning globe using only a label and a timer. (WebDings Required).

Post your comment

Subject:
Message:
0/1000 characters