[求助]关于计时器的问题????
今天让做一个左右往复移动的标签文本的表单。
那个大哥会做帮下忙!!
我就会写一直往左的
if thisform.label1.left<thisform.width
thisform.label1.left=thisform.label1.left+4
else
thisform.label1.left=_thisform.label1.width
endif
那个能帮忙写个往复运动的啊???
if thisform.leftmove=.f. &&&添加表单属性leftmove=.f.
if thisform.label1.left<thisform.width
thisform.label1.left=thisform.label1.left+10
else
thisform.label1.left=thisform.width
thisform.leftmove=.t.
endif
endif
if thisform.leftmove=.t.
if thisform.label1.left+thisform.label1.width<0
thisform.label1.left=0-thisform.label1.width
thisform.leftmove=.f.
else
thisform.label1.left=thisform.label1.left-10
endif
endif