编写VB程序,实现如下功能:单击启动按钮Start1,在列表框List1内每隔2秒输出一个由10个大小写字母组合成的字符串,运行界面如图所示:

(注:字母“A”的ASCII码值为65,字母“a” 的ASCII码值为97)
(1)按观察程序代码,可知“启动”按钮的对象名为_________ 。(单选,填字母
A.Timer1 / | B.Start / | C.Command1 / | D.Start_1 / | E.启动) |
(2)实现上述功能的 VB 程序如下,请在划线处填入合适代码。
Private Sub Start_1_Click()
Timer1.Enabled =
①End Sub
Private Sub Timer1_Timer()
Dim s As String, c As String
Dim i As Integer, e As Integer, h As Integer
Randomize
s = ""
flag = True
For i = 1 To 10
e = Int(Rnd * 52 + 1)
If e <= 26 Then
h = e + 64
Else
② End If
③ s = s + c
Next i
List1.AddItem s
End Sub
划线处的代码为:
①_______________________________
②________________________________
③________________________________