Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
Add Search
Reduce spew
  • Loading branch information
ericlaw1979 committed Oct 11, 2023
1 parent f75c54d commit 4e13afa
Show file tree
Hide file tree
Showing 5 changed files with 190 additions and 115 deletions.
6 changes: 5 additions & 1 deletion nmf-view/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("1.1.0.3")]
[assembly: AssemblyVersion("1.1.1.0")]

// v1.1.0.4
// Add Search feature
// Remove cbBodyPromised spew from log.

// v1.1.0.3
// Add "Environment" tab
Expand Down
9 changes: 9 additions & 0 deletions nmf-view/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,15 @@ public static bool DenyProcessTermination()
}
return true;
}
[DllImport("user32.dll", EntryPoint = "SendMessage")]
private static extern IntPtr SendCueTextMessage(IntPtr hWnd, int msg, IntPtr wParam, [MarshalAs(UnmanagedType.LPWStr)] string lParam);

public static void SetCueText(Control oCtl, string sText)
{
IntPtr hWnd = oCtl.Handle;
SendCueTextMessage(hWnd, 5377, IntPtr.Zero, sText);
}

internal static void CopyToClipboard(string s)
{
DataObject data = new DataObject();
Expand Down
Loading

0 comments on commit 4e13afa

Please sign in to comment.