[DllImport("user32.dll", SetLastError=true)]
static extern IntPtr SetActiveWindow(IntPtr hWnd);
<DllImport("user32.dll", SetLastError=true)> _
Private Shared Function SetActiveWindow(ByVal hWnd As IntPtr) As IntPtr
End Function
None.
None.
Please add some!
[DllImport("user32.dll")]
static extern IntPtr SetActiveWindow(IntPtr hWnd);
public void MakeFormActive()
{
SetActiveWindow(Handle);
}
Do you know one? Please contribute it!