home *** CD-ROM | disk | FTP | other *** search
- VERSION 1.0 CLASS
- BEGIN
- MultiUse = -1 'True
- END
- Attribute VB_Name = "clsTape"
- Attribute VB_Base = "0{FCFB3D2A-A0FA-1068-A738-08002B3371B5}"
- Attribute VB_Creatable = False
- Attribute VB_TemplateDerived = False
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = False
- Attribute VB_Customizable = False
- '**********************************************
- ' ╙├╙┌ VCR ╩╛└²╙ª╙├│╠╨≥╡─└α─ú┐Θíú
- ' ╛═╧± VCR ╡─┤┼┤°╩Σ╦═╫░╓├╥╗╤∙ú¼
- ' ┐╪╓╞╫┼═╝╧±╡─í░╗╪╖┼í▒íú
- '**********************************************
-
- Option Explicit
-
- Public Left As Integer '╫ε║≤╡─╬╗╓├
- Public Forward As Boolean '┤┼┤°╖╜╧≥
- Public Speed As Integer '┤┼┤°╦┘╢╚
- '**********************************************
- ' ─┐╡─ú║ ╬¬├┐╥╗╖∙╢»╗¡╝╞╦π╨┬╫∙▒Ωíú
- ' ╩Σ╚δú║ ┐φ╢╚ú║ ▓Ñ╖┼╢»╗¡╡─═╝╞¼┐≥╡─┐φ╢╚
- '**********************************************
- Public Sub Animate(Width As Integer)
- If Forward = True Then
- ' ╧≥╟░╫▀ - ╘÷╝╙╡▒╟░╡─ left ╓╡
- ' ╓▒╡╜╡╜┤∩╙╥▒▀╜τ
- If Left < Width - 50 Then
- Left = Left + 50
- Else
- Left = 0
- End If
- Else
- ' ╧≥╟░╫▀ - ╝⌡╔┘╡▒╟░╡─ left ╓╡ ú┐ú┐ú┐╘¡╬─╙╨╬≤
- ' ╓▒╡╜╡╜┤∩╫≤▒▀╜τ
- If Left > 0 Then
- Left = Left - 50
- Else
- Left = Width - 50
- End If
- End If
- End Sub
-
- Private Sub Class_Initialize()
- ' │⌡╩╝╗»└α╩⌠╨╘
- Forward = True
- Left = 0
- Speed = 300
- End Sub
-