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

控制台编程

开发平台:

Visual Basic

  1. '小车料满开走模块
  2. Private Sub Timer7_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.   
  11. D1.BackColor = &HFF&
  12. picCar.Picture = LoadPicture("C:Documents and Settingsseastar桌面自动配料系统imgmaincar2.GIF")
  13. Static yTimes As Integer
  14. yTimes = yTimes + 1
  15. Debug.Print yTimes
  16. If yTimes = 10 Then
  17. Timer7.Enabled = False
  18. SQ1.Caption = "SQ1(OFF)"
  19. End If
  20.    picCar.Left = picCar.Left - 440
  21. End Sub