Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 40ef4c06 authored by VKMTHD\franzjosefkober's avatar VKMTHD\franzjosefkober
Browse files

changed filepath handling

parent a76e3184
No related branches found
No related tags found
No related merge requests found
......@@ -1127,28 +1127,28 @@ Public Class Form1
TbRatedPower.Text = Job.RatedPower.ToTextBoxText()
TbRatedSpeed.Text = Job.RatedSpeed.ToTextBoxText()
If String.IsNullOrEmpty(Path.GetDirectoryName(Job.MapFile)) Then
TbFuelMap.Text = jobFilePath + "\" + Job.MapFile
Else
If String.IsNullOrEmpty(Job.MapFile) Then
TbFuelMap.Text = Job.MapFile
Else
TbFuelMap.Text = jobFilePath + "\" + Job.MapFile
End If
If String.IsNullOrEmpty(Path.GetDirectoryName(Job.FlcFile)) Then
TbFLC.Text = jobFilePath + "\" + Job.FlcFile
Else
If String.IsNullOrEmpty(Job.FlcFile) Then
TbFLC.Text = Job.FlcFile
Else
TbFLC.Text = jobFilePath + "\" + Job.FlcFile
End If
If String.IsNullOrEmpty(Path.GetDirectoryName(Job.FlcParentFile)) Then
TbFLC_Parent.Text = jobFilePath + "\" + Job.FlcParentFile
Else
If String.IsNullOrEmpty(Job.FlcParentFile) Then
TbFLC_Parent.Text = Job.FlcParentFile
Else
TbFLC_Parent.Text = jobFilePath + "\" + Job.FlcParentFile
End If
If String.IsNullOrEmpty(Path.GetDirectoryName(Job.DragFile)) Then
TbMotoring.Text = jobFilePath + "\" + Job.DragFile
Else
If String.IsNullOrEmpty(Job.DragFile) Then
TbMotoring.Text = Job.DragFile
Else
TbMotoring.Text = jobFilePath + "\" + Job.DragFile
End If
SfFuelType1.Text = Job.FuelType
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment