vb 打开文本且显示在text1里
发布网友
发布时间:2022-04-29 23:15
我来回答
共2个回答
热心网友
时间:2022-06-25 14:30
Private Sub Form_Load()
Timer1.Interval = 1000
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
Open "c:\1.txt" For Binary As #1
Text1.Text = Input(LOF(1), #1)
Close #1
End Sub
热心网友
时间:2022-06-25 14:30
在time1里面写代码...
写读取数据的代码