how to create button in internet explorer?
Posted
by karikari
on Stack Overflow
See other posts from Stack Overflow
or by karikari
Published on 2010-04-26T04:03:28Z
Indexed on
2010/04/26
4:13 UTC
Read the original article
Hit count: 292
internet-explorer
|c++
I am developing a simple c++ program inside Microsoft Visual Studio. This program will later be convert to DLL, in order to register it to Internet Explorer.
Inside my program, I would like to do like this:
if flag=1,
toolbar_button = green;
else
toolbar button = red;
I want to create a simple button on the Internet Explorer, and the button can reflects the color that I pass from my c++ program.
How can I achieve this?
© Stack Overflow or respective owner