Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kees van Spelde committed Jun 22, 2024
1 parent c36c514 commit 4549ee2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
3 changes: 0 additions & 3 deletions MsgReader.sln
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ Global
{601408B8-D192-480F-9C8A-70F1BED7EFA9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{601408B8-D192-480F-9C8A-70F1BED7EFA9}.Release|Any CPU.Build.0 = Release|Any CPU
{601408B8-D192-480F-9C8A-70F1BED7EFA9}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{601408B8-D192-480F-9C8A-70F1BED7EFA9}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{601408B8-D192-480F-9C8A-70F1BED7EFA9}.Release|Win32.ActiveCfg = Release|Any CPU
{601408B8-D192-480F-9C8A-70F1BED7EFA9}.Release|Win32.Build.0 = Release|Any CPU
{601408B8-D192-480F-9C8A-70F1BED7EFA9}.Release|x64.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -188,7 +187,6 @@ Global
{7627E4F4-44FE-465D-B89D-A4BB669B12D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7627E4F4-44FE-465D-B89D-A4BB669B12D7}.Release|Any CPU.Build.0 = Release|Any CPU
{7627E4F4-44FE-465D-B89D-A4BB669B12D7}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{7627E4F4-44FE-465D-B89D-A4BB669B12D7}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{7627E4F4-44FE-465D-B89D-A4BB669B12D7}.Release|Win32.ActiveCfg = Release|Any CPU
{7627E4F4-44FE-465D-B89D-A4BB669B12D7}.Release|Win32.Build.0 = Release|Any CPU
{7627E4F4-44FE-465D-B89D-A4BB669B12D7}.Release|x64.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -258,7 +256,6 @@ Global
{0EAB7816-7958-41D7-8713-E410C5403A6C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0EAB7816-7958-41D7-8713-E410C5403A6C}.Release|Any CPU.Build.0 = Release|Any CPU
{0EAB7816-7958-41D7-8713-E410C5403A6C}.Release|Mixed Platforms.ActiveCfg = Release|x86
{0EAB7816-7958-41D7-8713-E410C5403A6C}.Release|Mixed Platforms.Build.0 = Release|x86
{0EAB7816-7958-41D7-8713-E410C5403A6C}.Release|Win32.ActiveCfg = Release|x86
{0EAB7816-7958-41D7-8713-E410C5403A6C}.Release|Win32.Build.0 = Release|x86
{0EAB7816-7958-41D7-8713-E410C5403A6C}.Release|x64.ActiveCfg = Release|Any CPU
Expand Down
7 changes: 4 additions & 3 deletions MsgReaderCore/MsgReader.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4135,9 +4135,10 @@
</member>
<member name="P:MsgReader.Outlook.Storage.Message.MessageLocalId">
<summary>
Returns the <see cref="T:System.Globalization.RegionInfo" /> for the Windows LCID of the end user who created this
<see cref="T:MsgReader.Outlook.Storage.Message" /> It will return <c>null</c> when the Windows LCID could not be
read from the <see cref="T:MsgReader.Outlook.Storage.Message" />
Returns the <see cref="T:System.Globalization.RegionInfo" /> for the Windows LCID of the end user who created this<br/>
<see cref="T:MsgReader.Outlook.Storage.Message" /> It will return <c>null</c> when the Windows LCID could not be<br/>
read from the <see cref="T:MsgReader.Outlook.Storage.Message" />. <c>null</c> will be returned when the<br/>
local id is not present or invalid
</summary>
</member>
<member name="P:MsgReader.Outlook.Storage.Message.SignatureIsValid">
Expand Down
7 changes: 3 additions & 4 deletions MsgViewer/ViewerForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Threading;
using System.Windows.Forms;

Expand Down Expand Up @@ -56,10 +55,10 @@ private void ViewerForm_Load(object sender, EventArgs e)
WindowPlacement.SetPlacement(Handle, Settings.Default.Placement);
Closing += ViewerForm_Closing;
generateHyperlinksToolStripMenuItem.Checked = Settings.Default.GenerateHyperLinks;
var version = Assembly.GetExecutingAssembly().GetName().Version;
//var version = Assembly.GetExecutingAssembly().GetName().Version;

// ReSharper disable LocalizableElement
Text = "MSG Viewer v" + version.Major + "." + version.Minor + "." + version.Build;
Text = "MSG Viewer v5.6.1";
// ReSharper restore LocalizableElement

SetCulture(Settings.Default.Language);
Expand Down Expand Up @@ -113,7 +112,7 @@ private void PrintButton_Click(object sender, EventArgs e)

private void webBrowser1_Navigated_1(object sender, WebBrowserNavigatedEventArgs e)
{
StatusLabel.Text = e.Url.ToString();
if (e.Url != null) StatusLabel.Text = e.Url.ToString();
BackButton.Enabled = webBrowser1.CanGoBack;
ForwardButton.Enabled = webBrowser1.CanGoForward;
}
Expand Down

0 comments on commit 4549ee2

Please sign in to comment.