diff --git a/Installer/Output/dt_setup.exe b/Installer/Output/dt_setup.exe index 896dd05e..53bfc909 100644 Binary files a/Installer/Output/dt_setup.exe and b/Installer/Output/dt_setup.exe differ diff --git a/MainForm.vb b/MainForm.vb index ccb1d34a..6a5aff5c 100644 --- a/MainForm.vb +++ b/MainForm.vb @@ -11637,7 +11637,7 @@ Public Class MainForm End Sub Private Sub ExplorerView_Click(sender As Object, e As EventArgs) Handles ExplorerView.Click, Button22.Click - Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.Windows) & "\explorer.exe", projPath) + Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.Windows) & "\explorer.exe", "/select," & Quote & projPath & "\" & projName.Text & ".dtproj" & Quote) End Sub Private Sub GetImageInfo_Click(sender As Object, e As EventArgs) Handles GetImageInfo.Click @@ -15065,7 +15065,7 @@ Public Class MainForm End Sub Private Sub LinkLabel16_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabel16.LinkClicked - Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.Windows) & "\explorer.exe", projPath) + Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.Windows) & "\explorer.exe", "/select," & Quote & projPath & "\" & projName.Text & ".dtproj" & Quote) End Sub Private Sub LinkLabel17_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabel17.LinkClicked diff --git a/Panels/DoWork/ProgressPanel.vb b/Panels/DoWork/ProgressPanel.vb index e21eacfa..051d9741 100644 --- a/Panels/DoWork/ProgressPanel.vb +++ b/Panels/DoWork/ProgressPanel.vb @@ -5576,7 +5576,7 @@ Public Class ProgressPanel Visible = False ImgConversionSuccessDialog.ShowDialog(MainForm) If ImgConversionSuccessDialog.DialogResult = Windows.Forms.DialogResult.OK Then - Process.Start("\Windows\explorer.exe", Path.GetDirectoryName(imgDestFile)) + Process.Start("\Windows\explorer.exe", "/select," & Quote & imgDestFile & Quote) End If ElseIf OperationNum = 996 Then MainForm.DetectMountedImages(False)