I am creating a Internet Explorer 6 plugin using VC++. I would like to know, how can I send 开发者_如何学Gomessages like TBN_TOOLBARCHANGE from my C++ ?
You could probably use SendMessage API. For this, you need to know the target handle of window to cause the desired effect. You may use FindWindow() to match a window against certain characteristics, and Spy++ would help you see what others are doing.
精彩评论