窗体上有名称为Commandl的命令按及名称为Textl、能显示多行文本的文本框。程序运行后,如果单击命令按,则可打开磁盘文件c:\test.txt,并将文件中的内容(多行文本)显示在文本框中。下面是实现此功能的程序,请填空。 Private Sub Commandl_Click() Textl=“” Number=FreeFile Open“c:\test.txt”For Input As Number Do While Not EOF(【 】) Line InputNumber,s Textl.Text=Textl.Text+【 】+Chr(13)+Chr(10) Loop Close Number End Sub