小车模块代码.txt
上传用户:xianglong
上传日期:2022-06-19
资源大小:1105k
文件大小:1k
源码类别:

控制台编程

开发平台:

Visual Basic

  1. '小车开动模块
  2. Private Sub Timer8_Timer()
  3.   Open App.Path & "txt小车模块代码.txt" For Input As #1
  4.   Do While Not EOF(1)
  5.      Line Input #1, aspect$ '一行一行读入
  6.      whole$ = whole$ + aspect$ + Chr$(13) + Chr$(10)
  7.   Loop
  8.   Text1.Text = whole$
  9.   Close #1
  10.   L2.BackColor = &HFF&
  11.   L1.BackColor = &H80FF&
  12.   SQ1.Caption = "SQ1(ON)"
  13.   Label2.Caption = "<--开始进料"
  14.   
  15.   Static aTimes As Integer
  16.   aTimes = aTimes + 1
  17.   Debug.Print aTimes
  18.   If aTimes = 7 Then
  19.   Timer8.Enabled = False
  20.   Timer9.Enabled = True
  21.   End If
  22.     picCar.Left = picCar.Left - 200
  23.     
  24. End Sub