B Boris Bulit Jan 20, 2004 #1 How can I send a message (for example WM_MDIMAXIMIZE) to other application from vb.net app? Thanks Boris
How can I send a message (for example WM_MDIMAXIMIZE) to other application from vb.net app? Thanks Boris
H Herfried K. Wagner [MVP] Jan 20, 2004 #2 * (e-mail address removed) (Boris Bulit) scripsit: How can I send a message (for example WM_MDIMAXIMIZE) to other application from vb.net app? Click to expand... 'SendMessage': \\\ Private Declare Auto Function SendMessage Lib "user32.dll" ( _ ByVal hwnd As IntPtr, _ ByVal wMsg As Int32, _ ByVal wParam As Int32, _ ByRef lParam As Int32 _ ) As Int32 ///
* (e-mail address removed) (Boris Bulit) scripsit: How can I send a message (for example WM_MDIMAXIMIZE) to other application from vb.net app? Click to expand... 'SendMessage': \\\ Private Declare Auto Function SendMessage Lib "user32.dll" ( _ ByVal hwnd As IntPtr, _ ByVal wMsg As Int32, _ ByVal wParam As Int32, _ ByRef lParam As Int32 _ ) As Int32 ///