Jump to content

Recommended Posts

Posted (edited)

hi all how wolud i covert the to autoit

I know i need to use _SendMessage

the two lines

This one i think wold be a WinGetHandle but i am not shure L32Msg = RegisterWindowMessage("Logger32")

L32hWnd = FindWindow(vbNullString, "Logger32")

First, the user must register a windows message and identify the Logger32 MDI Form hWnd like this

L32Msg = RegisterWindowMessage("Logger32")

L32hWnd = FindWindow(vbNullString, "Logger32")

Your application can now exchange messages with Logger32 using SendMessage and/or PostMessage. An example of a message from your application would be

SendMessage L32hWnd, L32Msg, 3, Me.hWnd

thanks beau

Edited by n9mfk9

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...