注意:不得修改程序的其他部分和控件属性,最后把修改后的文件按原文件名存盘。程序调试通过后,两个命令按钮的事件过程必须至少各执行一次。 [题目提供的源程序] 标准模块sjt5.bas内容: Public Sub save(1 As Control) Open App.Path & "\out5.txt" For Append As #1 Print #1, 1.Caption Close #1 End Sub 窗体Form1的内容: Option Base 1 Dim a(4,4) As Integer Private Sub Command1_Click() ’考生应编写的程序 ’不得修改以下部分 save Label3 End Sub Private Sub Command2_Click() ’考生应编写的程序 ’不得修改以下部分 save Label4 End Sub Private Sub Form_Load() Open App.Path & "\in5.txt" For Input As #1 For i=1 To 4 For j=1 To 4 Input #1, a(i,j) Next j Next i Close #1 End Sub