Click here to Skip to main content
15,908,909 members

Comments by marshell_w (Top 2 by date)

marshell_w 6-Aug-14 21:48pm View    
Dear boer:
Thanks a lot. I think that's the problem, I am trying to get through it.
marshell_w 5-Aug-14 4:06am View    
Dear boer:
For the dialogbox window is created by outlook, I get the button ID with SPY++ and Convert to decimal 4774. Then I use the code:

Public Const WM_COMMAND As Integer = &H111
.....
PostMessage(btn_hwnd, WM_COMMAND, 4774, IntPtr.Zero) it still does not work, but seems the Button is focused. can you give me some example?

I turned back to test the other buttons,such as the HELP button, use the following:
PostMessage(btn_HELP_hwnd, BM_CLICK, IntPtr.Zero, IntPtr.Zero)
PostMessage(btn_HELP_hwnd, BM_CLICK, IntPtr.Zero, IntPtr.Zero)

It works,the window is closed and the help window opened.

Does the allow(or OK) button is blocked by microsoft or the Multithreading?
And when I use the FindWindowEX, it just cannot get the controls by the caption or classname on the microsoft outlook dialogbox window. So I have to turn to the enumwindows.

It's really driving me mad.