summaryrefslogtreecommitdiffstats
path: root/win/C#/frmReadDVD.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-09-27 21:46:14 +0000
committersr55 <[email protected]>2008-09-27 21:46:14 +0000
commitb5afbe5d8d9a81b79481fbfee67831ecd3728859 (patch)
tree06bf874ccca6c5ac95e45f07ead2936af85b8964 /win/C#/frmReadDVD.cs
parent007dd35a0ca3909c7a6c80bd2e0c84962178082c (diff)
WinGui:
- Improved some of the messagebox error messages. Removed a few redundant error messages. - the x264 tooltips got lost at some point. They've been re-added. Changed one or 2 other tooltips. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1779 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmReadDVD.cs')
-rw-r--r--win/C#/frmReadDVD.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/frmReadDVD.cs b/win/C#/frmReadDVD.cs
index f4fc30c71..ec9b318d1 100644
--- a/win/C#/frmReadDVD.cs
+++ b/win/C#/frmReadDVD.cs
@@ -135,7 +135,7 @@ namespace Handbrake
}
catch (Exception exc)
{
- MessageBox.Show("frmReadDVD.cs - closeWindowAfterError - Unable to recover from a serious error. \n\n Error Information: \n " + exc.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ MessageBox.Show("frmReadDVD.cs - closeWindowAfterError - Unable to recover from a serious error. \nYou may need to restart HandBrake. \n\n Error Information: \n " + exc.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
@@ -162,7 +162,7 @@ namespace Handbrake
}
catch (Exception ex)
{
- MessageBox.Show("Unable to kill HandBrakeCLI.exe \n\nError Information: \n" + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ MessageBox.Show("Unable to kill HandBrakeCLI.exe \nYou may need to manually kill HandBrakeCLI.exe using the Windows Task Manager if it does not close automatically within the next few minutes. \n\nError Information: \n" + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}