Skip to content

Commit 4e13afa

Browse files
committed
v1.1.1
Add Search Reduce spew
1 parent f75c54d commit 4e13afa

5 files changed

Lines changed: 190 additions & 115 deletions

File tree

nmf-view/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
[assembly: AssemblyTrademark("")]
1111
[assembly: AssemblyCulture("")]
1212
[assembly: ComVisible(false)]
13-
[assembly: AssemblyVersion("1.1.0.3")]
13+
[assembly: AssemblyVersion("1.1.1.0")]
14+
15+
// v1.1.0.4
16+
// Add Search feature
17+
// Remove cbBodyPromised spew from log.
1418

1519
// v1.1.0.3
1620
// Add "Environment" tab

nmf-view/Utilities.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,15 @@ public static bool DenyProcessTermination()
6767
}
6868
return true;
6969
}
70+
[DllImport("user32.dll", EntryPoint = "SendMessage")]
71+
private static extern IntPtr SendCueTextMessage(IntPtr hWnd, int msg, IntPtr wParam, [MarshalAs(UnmanagedType.LPWStr)] string lParam);
72+
73+
public static void SetCueText(Control oCtl, string sText)
74+
{
75+
IntPtr hWnd = oCtl.Handle;
76+
SendCueTextMessage(hWnd, 5377, IntPtr.Zero, sText);
77+
}
78+
7079
internal static void CopyToClipboard(string s)
7180
{
7281
DataObject data = new DataObject();

0 commit comments

Comments
 (0)