Advertisement
3_2004-2005 Miscellaneous #132759

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

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

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
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
Original Comments (3)
Recovered from Wayback Machine