Hello Everybody,
I am running a code which takes a couple of minutes to compute and I would like the user to see what is going on. I want to avoid to put a process bar as I know it will slow the code even more.
I have put an application.StatusBar with one of the loop but the form is automtically open using Sub Auto_open() and xl is minimized.
So I created a text box which links to one of the value of the counter but it doesn't update automatically.
How could i do that ?
so far in the main code I have
For i = 0 To Datapoint - 1
ApplicationStatusBar = i
Sheets("LogFile").Range("T20") = i
'in the main form I have created a textbox which control
' source is LogFile!T20
Application.ScreenUpdating = False
Help would be greatfully appreciated.
Thankxx
I am running a code which takes a couple of minutes to compute and I would like the user to see what is going on. I want to avoid to put a process bar as I know it will slow the code even more.
I have put an application.StatusBar with one of the loop but the form is automtically open using Sub Auto_open() and xl is minimized.
So I created a text box which links to one of the value of the counter but it doesn't update automatically.
How could i do that ?
so far in the main code I have
For i = 0 To Datapoint - 1
ApplicationStatusBar = i
Sheets("LogFile").Range("T20") = i
'in the main form I have created a textbox which control
' source is LogFile!T20
Application.ScreenUpdating = False
Help would be greatfully appreciated.
Thankxx