Simple text effect
very Simple but interesting text effect for the form caption
AI
AI 摘要: 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.
源代码
Dim x As Integer
Private Sub Form_Load()
x = 0
End Sub
Private Sub Timer1_Timer()
Me.Caption = Mid$("Created by Chris Martian", 1, x)
'find how much of the caption should be displayed
x = x + 1
'add 1 to number of letters to be displayed next time
If x > Len("Created by chris martian") Then x = 0
'if it gets to the end then start again
End Sub
原始评论 (3)
从 Wayback Machine 恢复