问题:

在窗体上画一个List1的列表框,一个名称为Label1的标签,列表框中显示若干个项目,当单击列表框中的某个项目时,在标签中显示被选中的项目的名称,下列能正确实现上述操作的程序是()。

A) Private Sub List1_Click()

Label1.Caption = List1.ListIndex

End Sub

B) Private Sub List1_Click()

Label1.Name = List1.ListIndex

End Sub

C) Private Sub List1_Click()

Label1.Name = List1.Text

End Sub

D) Private Sub List1_Click()

Label1.Caption = List1.Text

End Sub

可能感兴趣的题目: