Hi, I need help again, I would move a control from (by example) x=0 y=0 to x=200 y=155
I did:
It work but not correctly cause the control go to Y in first and it go to X all right... (Sorry I don't know how explain you)
I would like that the control go to X and Y in same time...
Thanks for your replies, tell me if you don't understand...
I did:
B4X:
Sub Timer1_Tick
If obj.Left<200 Then obj.Left=obj.Left+1
If obj.Left>200 Then obj.Left=obj.Left-1
If obj.Top<155 Then obj.Top=obj.Top+1
If obj.Top>155 Then obj.Top=obj.Top-1
End Sub
I would like that the control go to X and Y in same time...
Thanks for your replies, tell me if you don't understand...