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

控制台编程

开发平台:

Visual Basic

  1. '物料进料模块
  2. Private Sub Timer9_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.   D4.BackColor = &HFF&
  12.   Static bTimes As Integer
  13.   bTimes = bTimes + 1
  14.   Debug.Print bTimes
  15.   If bTimes = 5 Then
  16.   Timer9.Enabled = False
  17.   imgres1.Visible = False
  18.   Timer1.Enabled = True
  19.   End If
  20.     imgres1.Left = imgres1.Left - 650
  21.    
  22. End Sub