主题:[跪求]如何让标签在表单中水平来回移动?
本人vfp菜鸟,有个问题想请教诸位vfp高手:
一个计时器控件,一个标签
标签属性:Autosize:T
Borderstyle:1
Fontsize:28
计时器属性:Interval:100
enabled:T
下面是我写的代码:
if thisform.label1.caption!=time()
thisform.label1.caption=time()
endif
if thisform.label1.left>thisform.width
thisform.label1.left=0
else
thisform.label1.left=thisform.label1.left+10
endif
以上的代码只能让标签始终从左往右移动,怎样改动才能让标签在表单中来回移动?
一个计时器控件,一个标签
标签属性:Autosize:T
Borderstyle:1
Fontsize:28
计时器属性:Interval:100
enabled:T
下面是我写的代码:
if thisform.label1.caption!=time()
thisform.label1.caption=time()
endif
if thisform.label1.left>thisform.width
thisform.label1.left=0
else
thisform.label1.left=thisform.label1.left+10
endif
以上的代码只能让标签始终从左往右移动,怎样改动才能让标签在表单中来回移动?