单选题
窗体上有一个名称为Picture1的图片框控件,一个了名称为Timer1的计时器控件,其Interval属性值为1000。要求每隔5秒图片框右移100。现编写程序如下:
Private Sub Timer1_Timer()
Static n As Integer
n=n+1
If(n/5)=Tnt(n/5)And Picture1.
Left<Form1.Width Then
Picture1.Left=Picture1.Left+100
End If
End Sub
分析以上程序,以下叙述中正确的是______。