UCM
Centurion
Visual Basic:
Private Declare Function ShowWindow Lib "user32" Alias "ShowWindow" (ByVal hwnd As IntPtr, ByVal nCmdShow As Integer) As Integer
Private myWindow As New Form()
Private Const SW_SHOWNOACTIVATE As Integer = 4
private form_load(blah, blah )
ShowWindow(myWindow.Handle, SW_SHOWNOACTIVATE)
end sub
It is my understanding that this is supposed to display a form without the current form loosing focus, why doesn't it work?