编写VB程序,实现如下功能:程序运行时,在文本框Text1中输入任意字符串,单击按钮Command1,删除字符串中的非字母后,新字符串显示在Text2中,并找出ASCII码最小的字母,将其ASCII码显示在Text3中。程序运行界面如下图所示。

(1)将命令按钮Command1中显示的文本“Command1”修改为“查找”,可在其属性窗口中将___________属性的属性值改为“查找”。
(2)实现上述功能的VB程序如下,请在划线处填入合适的代码。
Private Sub Command1_Click()
Dim result As String, s As String, c As String
Dim n As Integer, i As Integer, j As Integer
s = Text1.Text
Text2.Text = ""
For i = 1 To Len(s)
①___________
If n >= 65 And n <= 90 Or n >= 97 And n <= 122 Then
②________
End If
Next i
Text2.Text = result
j = 2
c = Mid(result, 1, 1)
Do While j <= Len(result)
If Mid(result, j, 1) < c Then c = Mid(result, j, 1)
③________
Loop
Text3.Text = ④______
(3)如图所示,在文本框Text3中的ASCII码是Text2中第____个字符的ASCII码。