diff --git a/VECTO3GUI/Model/JobListModel.cs b/VECTO3GUI/Model/JobListModel.cs
index ebfb93345d010cb3688e70131d0b7ed9c08ed69e..821d1bca37522c93562dfdc1deaead60f196fcde 100644
--- a/VECTO3GUI/Model/JobListModel.cs
+++ b/VECTO3GUI/Model/JobListModel.cs
@@ -61,7 +61,11 @@ namespace VECTO3GUI.Model
 			for (int i = 0; i < jobEntries.Count; i++)
 			{
 				JobList.Add
-				(
+				(	jobEntries[i].Missing ? new JobListEntry() {
+							JobFilePath = jobEntries[i].JobEntryFilePath,
+							IsSelected = false,
+							JobTypeName = JobType.Unknown.GetLabel(),
+						}: 
 					new JobListEntry
 					{
 						JobTypeName = jobEntries[i].Header.JobType.GetLabel(),
@@ -81,6 +85,13 @@ namespace VECTO3GUI.Model
 
 			for (int i = 0; i < JobList.Count; i++)
 			{
+				if (!File.Exists(JobList[i].JobFilePath)) {
+					jobEntries.Add(new JobEntry() {
+						JobEntryFilePath = JobList[i].JobFilePath,
+						Missing = true
+					});
+					continue;
+				}
 				var jobType = JobTypeHelper.Parse(JobList[i].JobTypeName);
 				JobEntry jobEntry;
 
diff --git a/VECTO3GUI/ViewModel/Impl/JobEntry.cs b/VECTO3GUI/ViewModel/Impl/JobEntry.cs
index d1c437cf9b28b313e693604ce2d7d104b426c325..15d1500f621ccaa6ea0f7e04d4441990c5129e36 100644
--- a/VECTO3GUI/ViewModel/Impl/JobEntry.cs
+++ b/VECTO3GUI/ViewModel/Impl/JobEntry.cs
@@ -73,11 +73,12 @@ namespace VECTO3GUI.ViewModel.Impl
 		private JobBody _body;
 		private bool _selected;
 		private string _jobEntryFilePath;
+		private bool _missing;
 
 		[JsonIgnore]
 		public bool Selected
 		{
-			get { return _selected; }
+			get { return !Missing && _selected; }
 			set { SetProperty(ref _selected, value); }
 		}
 
@@ -99,6 +100,12 @@ namespace VECTO3GUI.ViewModel.Impl
 			set { SetProperty(ref _body, value); }
 		}
 
+		public bool Missing
+		{
+			get { return _missing; }
+			set { SetProperty(ref _missing, value); }
+		}
+
 		public string GetAbsoluteFilePath(string propertyFilePath)
 		{
 			if (IsFileName(propertyFilePath)) {
diff --git a/VECTO3GUI/ViewModel/Impl/JoblistViewModel.cs b/VECTO3GUI/ViewModel/Impl/JoblistViewModel.cs
index 79951ff5f6f9f519399fe0aa945a0be797898ce3..ffcbd5b9c155760ed9eeed82621994e0796b2b82 100644
--- a/VECTO3GUI/ViewModel/Impl/JoblistViewModel.cs
+++ b/VECTO3GUI/ViewModel/Impl/JoblistViewModel.cs
@@ -412,7 +412,7 @@ namespace VECTO3GUI.ViewModel.Impl
 		}
 		private bool CanEditCompletedFile(JobEntry jobEntry)
 		{
-			return jobEntry != null && 
+			return jobEntry != null && !jobEntry.Missing &&
 					(IsJobEntry(jobEntry) || jobEntry.Header.JobType == JobType.CompletedXml);
 
 		}
@@ -777,8 +777,8 @@ namespace VECTO3GUI.ViewModel.Impl
 
 		private bool IsJobEntry(JobEntry jobEntry)
 		{
-			return jobEntry.Header.JobType == JobType.CompletedBusJob ||
-					jobEntry.Header.JobType == JobType.SingleBusJob;
+			return !jobEntry.Missing && (jobEntry.Header.JobType == JobType.CompletedBusJob ||
+					jobEntry.Header.JobType == JobType.SingleBusJob);
 		}
 
 		private bool IsXmlFile(string filePath)
diff --git a/VECTO3GUI/Views/JoblistView.xaml b/VECTO3GUI/Views/JoblistView.xaml
index 8b0238b8e41ec5ae77ca53c6f3de3f6cf330cb41..032f30a0b4026c72f9f3386d34130c6328cf2e8e 100644
--- a/VECTO3GUI/Views/JoblistView.xaml
+++ b/VECTO3GUI/Views/JoblistView.xaml
@@ -152,6 +152,15 @@
                                 </DataGridTextColumn>
                             </DataGrid.Columns>
 
+                            <DataGrid.CellStyle>
+                                <Style TargetType="DataGridCell">
+                                    <Style.Triggers>
+                                        <DataTrigger Binding="{Binding Missing}" Value="True">
+                                            <Setter Property="Foreground" Value="Red"/>
+                                        </DataTrigger>
+                                    </Style.Triggers>
+                                </Style>
+                            </DataGrid.CellStyle>
                         </DataGrid>
 
                     </Grid>