物料进料模块代码.txt
上传用户:xianglong
上传日期:2022-06-19
资源大小:1105k
文件大小:1k
- '物料进料模块
- Private Sub Timer9_Timer()
- Open App.Path & "txt物料进料模块代码.txt" For Input As #1
- Do While Not EOF(1)
- Line Input #1, aspect$ '一行一行读入
- whole$ = whole$ + aspect$ + Chr$(13) + Chr$(10)
- Loop
- Text1.Text = whole$
- Close #1
-
- D4.BackColor = &HFF&
- Static bTimes As Integer
- bTimes = bTimes + 1
- Debug.Print bTimes
- If bTimes = 5 Then
- Timer9.Enabled = False
- imgres1.Visible = False
- Timer1.Enabled = True
- End If
- imgres1.Left = imgres1.Left - 650
-
- End Sub