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

控制台编程

开发平台:

Visual Basic

  1. '物料出料模块
  2. Private Sub Timer2_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. D2.BackColor = &HFFFF&
  12. Static xTimes As Integer
  13. xTimes = xTimes + 1
  14. Debug.Print xTimes
  15. If xTimes = 10 Then
  16. Timer2.Enabled = False
  17. Timer3.Enabled = True
  18. imgmix1.Visible = False
  19. D2.BackColor = &HFF&
  20. End If
  21.    imgmix1.Top = imgmix1.Top + 200
  22. End Sub