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

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -