某程序列表框中有许多项,现在用Timer控件控制时间,0.1秒删除一项,直到删完为止,用一滚动条来显示删除的项目,请选择合适的语句,完成此程序( )。Private Sub Command2_Click()HSeroll1.Min=0HScroll1.Max=List1.ListCountHScroll1.Value=0Timer1.Interval=______Timer1.Enabled=TrueEnd SubPrivate Sub Timer1_Timer()If List1.ListCount>0 ThenList1.RemoveItem 0HScroll1.Value=HSeroll1.Max-List1.ListCountElseTimer1.Enabled=______MsgBox 全部删除! End IfEnd Sub
A.100 False
B.0.1 True
C.100 True
D.0.1 False