c# - Creating a ribbon button to open a browser link -



c# - Creating a ribbon button to open a browser link -

i'm looking create ribbon button ol2k10 add-in opens specific website. i've seen references creating button using commandbars, different i'd accomplish.

ideas welcome usual.

i think here can do:

in ribbon button click event function, write next code allow launch web browser accessing given url, e.g. http://stackoverflow.com

string myurl = "http://stackoverflow.com"; system.diagnostics.process.start(myurl);

okay, guess that's pretty much need. :)

c# outlook outlook-addin

Comments

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -