编写如下事件过程: Option Explicit Private Sub Form_Click() Dim Str As String,i As Integer Open"examp" For Output As#1 For i=1 To 5 Str=Chr(i+65) Print#1,Str; Next i Close 1 Open"examp" For Input As#2 Str=Input $ (5, #2) Print Str; Close #2 End Sub 程序运行后,单击窗体,则窗体上显示的内容是______。