这个代码怎么改一下
Private Sub Command1_Click()Open "c:\temp.txt" For Input As #1
While Not EOF(1)
Line Input #1, s
p = InStr(s, Text1.Text) '在text1中输入查找关键字
If p <> 0 Then Print Mid(s, p + Len(Text1.Text) + 1, 6)
Wend
Close
End Sub
这个数据显示在Print Mid上 我想让它显示在 Text2.Text 上