|
Posted by Harlan Messinger on October 19, 2004, 3:14 pm
Please log in for more thread options
> Is it possible to use a hyperlink to call a vbs sub? I have seen folks
> using javascript to do this, but I cannot make it work with vbs and I
> need to.
>
> Please no "you should use javascript" answers. Unfortunately I am
> where I am and I have to use vbs.
Where you are you are only allowed to write scripts that won't work in any
browser but Internet Explorer?
You'll find many messages in this forum about why you shouldn't use the
<a href="javascript: ...">
construction, but if that's what you're talking about, the corresponding
construction for VBScript is
<a href="vbscript: ...">
Type vbscript:msgbox("hello") into the Address line in IE and you'll see.
|