未找到方法或数据成员 请各位看看指点一下
Private Sub command1_Click()
Text1.Text = ""
With CommonDialog1
.InitDir = App.Path
.Filter = "文本文件|*.txt"
.ShowOpen
End With
Open CommonDialog1.aa For Input As 1
Dim str As String
Do While Not EOF(1)
Input #1, str
Text1.Text = Text1.Text & vbNewLine & str
Loop
Close 1
End Sub