Hi ,
I already created a button "enjoy button" that i want to move in a form when the "timer start button" is clicked.
how do link the timer to the
"timer start button" and make it move?
this is what i tried so far..then am blank
first
then
I already created a button "enjoy button" that i want to move in a form when the "timer start button" is clicked.
how do link the timer to the
"timer start button" and make it move?
this is what i tried so far..then am blank
first
Code:
Private Sub MainForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Me.xTimer.Enabled = False xTimer.Interval = 10 DX = 1 xDXTextBox.Text = DX DY = 1 xDYTextBox.Text = DY Counter = 1000 xCounterTextBox.Text = Counter X = 216 Y = 135 Me.xButtonLabel.Text = "Button(" & X & ", " & Y & ")"
Code:
Private Sub TimeStartButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles xTimeStartButton.Click Me.xTimer.Enabled = True
Comment