vbscript - Programtically add a hyperlink button to outlook 2007 -
i adding toolbar outlook.
the toolbar have 1 button on it.
this button, when pressed, open web site.
i've created button & toolbar no problem, cannot work out how add hyperlink?
any ideas?
thanks in advance,
jim
set otbar = oview.add("toolbarname") otbar.position = 1 otbar.visible = true set obutton = otbar.controls.add obutton .caption = "click here!" .style = 3 .hyperlinktype = 1 .faceid = 1707 end
haha!
you need add tooltip:
.tooltiptext = "http://your_url"
Comments
Post a Comment