M
Milan
Hello,
I have got the following problem. When some user clicks on the
command-button placed on my form the time-consuming operation starts
to run. That is why I want to display some information text in some
caption or text box which would change by every let's say second. I
have written this timer procedure:
Sub Info()
Me.Text1.Caption = " . . .Proceeding . . ."
Me.Text2.Caption = ". . . Proceeding. . . "
End Sub
Sub Form_Timer()
Me.Text1.Visible = Not Me.Text1.Visible
Me.Text2.Visible = Not Me.Text1.Visible
End Sub
I don´t want to use status bar. The problem is that the timer event
procedure and the button_click procedure don´t run simultaneously. I
tried to use 2 forms but the result was the same.
Can someone tell me what to do?
Thanks,
Milan
I have got the following problem. When some user clicks on the
command-button placed on my form the time-consuming operation starts
to run. That is why I want to display some information text in some
caption or text box which would change by every let's say second. I
have written this timer procedure:
Sub Info()
Me.Text1.Caption = " . . .Proceeding . . ."
Me.Text2.Caption = ". . . Proceeding. . . "
End Sub
Sub Form_Timer()
Me.Text1.Visible = Not Me.Text1.Visible
Me.Text2.Visible = Not Me.Text1.Visible
End Sub
I don´t want to use status bar. The problem is that the timer event
procedure and the button_click procedure don´t run simultaneously. I
tried to use 2 forms but the result was the same.
Can someone tell me what to do?
Thanks,
Milan