Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit d44a5dc2 authored by Markus QUARITSCH's avatar Markus QUARITSCH
Browse files

add message to vecto gui after simulation

parent 32738237
No related branches found
No related tags found
No related merge requests found
......@@ -1105,6 +1105,20 @@ Imports TUGraz.VectoCore.Utils
sender.ReportProgress(100, New VectoProgress With {.Target = "ListBox",
.Message =
String.Format("Simulation Finished in {0:0}s", (DateTime.Now() - start).TotalSeconds)})
#if CERTIFICATION_RELEASE
dim message as string = nothing
#else
#if RELEASE_CANDIDATE
dim message as string = "RELEASE CANDIDATE - NOT FOR CERTIFICATION!"
#else
dim message as string = "DEVELOPMENT VERSION - NOT FOR CERTIFICATION!"
#End If
#end if
if Not string.IsNullOrWhitespace(message) then
sender.ReportProgress(100, New VectoProgress With {.Target = "ListBoxWarning",
.Message = message})
End If
End Sub
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment