添加一个定时器,定时器移动,超过屏幕自动回来。
代码如下:
Dim M As Integer '定义变量,确定移动方向
Private Sub Form_Load()
Timer1.Interval = 200 '移动时间 0.2秒移一次
Me.Left = 0 '左空初始为0
M = 0 '默认先向右移
End Sub
Private Sub Timer1_Timer()
If (Me.Left + Me.Width) > Screen.Width Then M = 1 '移到右边头上,向右移
If Me.Left <= 0 Then M = 0 '移到左边头上了,向左移
If M = 0 Then '移动方向
Me.Left = Me.Left + 1000 '向右移
Else
Me.Left = Me.Left - 1000 '向左移
End If
End Sub
修改form1.top和form1.lef就可以了啊,如果需要来回移动可以timer里面控制form1.lef大于一个数值就返回1
用一个定时器,定时器里设置me.top,me.left
定时器的时间间隔就是控制移动的速度的