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

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

fix: relative path for aaux file

parent d8364d36
No related branches found
No related tags found
No related merge requests found
......@@ -441,7 +441,10 @@ Public Class VectoJobForm
Next
'AA-TB
'Assign any previously saved Axiliary FilePath
txtAdvancedAuxiliaryFile.Text = auxInput.AdvancedAuxiliaryFilePath
txtAdvancedAuxiliaryFile.Text =
If _
(IO.File.Exists(auxInput.AdvancedAuxiliaryFilePath), GetRelativePath(auxInput.AdvancedAuxiliaryFilePath, _basePath),
"")
LvAux.Items.Clear()
For Each entry As IAuxiliaryEngineeringInputData In auxInput.Auxiliaries
......
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