I have a form that appears whenever I turn on a function. The form is a button which stops the function.
The following code appears in the Forms section
Private Sub UserForm_activate()
ProbeStop = False
Call Live
End Sub
Private Sub CommandButton1_Click()
ProbeStop = True
End Sub
The subroutine Live runs until ProbStop=True
How do I move the postition of the CommandButton1 so that it doesnt block other activity on the screen?
The following code appears in the Forms section
Private Sub UserForm_activate()
ProbeStop = False
Call Live
End Sub
Private Sub CommandButton1_Click()
ProbeStop = True
End Sub
The subroutine Live runs until ProbStop=True
How do I move the postition of the CommandButton1 so that it doesnt block other activity on the screen?