Send Messages to Other Aplication

  • Thread starter Thread starter Boris Bulit
  • Start date Start date
B

Boris Bulit

How can I send a message (for example WM_MDIMAXIMIZE) to other
application from vb.net app?

Thanks

Boris
 
* (e-mail address removed) (Boris Bulit) scripsit:
How can I send a message (for example WM_MDIMAXIMIZE) to other
application from vb.net app?

'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
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top