vb控件用计时器设置图标左右移动,求解

请不要那代码来敷衍,不好意思,说话就这么直白!我需要的是步骤,第一步怎么设置这个代码,什么意思。这样。是一个计时器,一个image.command的控件弄得,麻烦了!让I... 请不要那代码来敷衍,不好意思,说话就这么直白!
我需要的是步骤,第一步怎么设置这个代码,什么意思。
这样。是一个计时器,一个image.command的控件弄得,
麻烦了!让IMAGE图片左右移动。数值弄整数好理解。

我错了,以后一定认真上课,唉。。悲剧啊!
忘了,还有一个结束控件。嘿嘿。糊涂了!
展开
 我来答
百度网友2ca1c0f24
2009-12-15 · TA获得超过2036个赞
知道大有可为答主
回答量:4364
采纳率:0%
帮助的人:3428万
展开全部
Dim S As String
Private Sub Form_Load()
Timer1.Enabled = True
Timer1.Interval = 100
Image1.Left = 0
S = "右移"
End Sub

Private Sub Timer1_Timer()
If S = "右移" Then
If Image1.Left + Image1.Width <= Me.Width Then Image1.Left = Image1.Left + 20
If Image1.Left + Image1.Width >= Me.Width Then S = "左移"
ElseIf S = "左移" Then
If Image1.Left >= 0 Then Image1.Left = Image1.Left - 20
If Image1.Left <= 0 Then S = "右移"
End If
End Sub

Private Sub Command1_Click()
Timer1.Enabled = False
End Sub

Private Sub Command2_Click()
Timer1.Enabled = True
End Sub
申楠剑君昊
2019-10-07 · TA获得超过3950个赞
知道小有建树答主
回答量:3042
采纳率:33%
帮助的人:232万
展开全部
Dim
S
As
String
Private
Sub
Form_Load()
Timer1.Enabled
=
True
Timer1.Interval
=
100
Image1.Left
=
0
S
=
"右移"
End
Sub
Private
Sub
Timer1_Timer()
If
S
=
"右移"
Then
If
Image1.Left
+
Image1.Width
<=
Me.Width
Then
Image1.Left
=
Image1.Left
+
20
If
Image1.Left
+
Image1.Width
>=
Me.Width
Then
S
=
"左移"
ElseIf
S
=
"左移"
Then
If
Image1.Left
>=
0
Then
Image1.Left
=
Image1.Left
-
20
If
Image1.Left
<=
0
Then
S
=
"右移"
End
If
End
Sub
Private
Sub
Command1_Click()
Timer1.Enabled
=
False
End
Sub
Private
Sub
Command2_Click()
Timer1.Enabled
=
True
End
Sub
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式