OpenSTAAD V8i
Monitor the status of an analysis process.
Where:
An integer variable:
Dim stat as Integer
Do While stat = 1
Application.Wait (Now() + CDate("00:00:02")) ‘This method will wait for 2 seconds before checking the analysis status
stat = objOpenSTAAD. IsAnalyzing ()
Loop
MsgBox “Analysis has completed”, VbOkOnly