Pls guide me how to open a web page in one of the tabs in an outlook form
Printable View
Pls guide me how to open a web page in one of the tabs in an outlook form
What tabs?
i mean tabs like p1, p2 etc
Probably vb script version of this code in the click handler of a label controll on the forms tab P.2 ?
VB Code:
Shell "http://www.vbforums.com"
I got it working for a command button's click event.
VB Code:
Sub CommandButton1_Click() Set wshell = CreateObject("WScript.Shell") wshell.Run "Http://www.vbforums.com" set wshell = nothing End Sub