问题 单项选择题

某程序列表框中有许多项,现在用Timer控件控制时间,0.1秒删除一项,直到删完为止,用一滚动条来显示删除的项目,请选择合适的语句,完成此程序( )。



Private Sub Command2_Click()

HSeroll1.Min=0

HScroll1.Max=List1.ListCount

HScroll1.Value=0

Timer1.Interval=______

Timer1.Enabled=True

End Sub

Private Sub Timer1_Timer()

If List1.ListCount>0 Then

List1.RemoveItem 0

HScroll1.Value=HSeroll1.Max-List1.ListCount

Else

Timer1.Enabled=______

MsgBox"全部删除!"

End If

End Sub

答案

参考答案:A

解析: 本题的难点在于考生能从全局上读懂代码,在按钮的单击事件中,设置时钟控件的时间间隔,其单位是毫秒,所以0.1秒应设置为100毫秒;在Timer事件中,如果已经全部删除列表框中的内容,则应将Timer1关闭,不再执行删除操作,所以Enabled属性应该设置为False。

完形填空
All big cities are quite similar. Living in a modern Asian city isn’t very different from living in an American city. 小题1:______
In many parts of the world, farmers and their families live in villages or towns. In the United States, however, each farm family lives on its own fields, often beyond (在……之外) the sight of any neighbors. Instead of traveling from the village to the fields every morning, American farmers stay on their land the whole week. 小题2:______ Their children ride on buses to large schools for all the farm families living in the area. In some areas, there are small schools serving a few farm families, and the children walk to school. Of course life keeps changing for everyone, including farmers. 小题3:______ And there are also modern machines for farming. All of these have changed the farm life.
小题4:______ Farmers usually had to deal with their own problems, instead of getting help from others. They learned to try new ways, and to trust their own ideas rather than (而不) followed the old ways.
*******************************************************************************
A. Today there are cars, good roads, radios and television sets.
B. The same can not be said about living on farms, however.
C. Many years ago, however, farming in America was often a lonely way of living.
D. They travel to the nearest town on Saturdays for shopping or on Sundays for church.
小题5: Which of the following is NOT true according to the passage?
A.Life in the world also keeps changing.
B.Life in the United States keeps changing.
C.American farmers like their old ways.
D.American farmers have changed their lives.
问答题