I have observed several samples in JavaScript such as:

<BODY onselectstart="return false">

But, I am having troubles in VBScript. I want to avoid mixing Java and
VBScript in this page so as not to have to load both scripting engines.
Anyone been able to successfully do this? Thanks

-Tom

Re: How To: Disable Selections with OnSelectStart by Michael

Michael
Tue Oct 21 14:40:19 CDT 2003

T K wrote:
> I have observed several samples in JavaScript such as:
>
> <BODY onselectstart="return false">


<BODY onselectstart="window.event.returnValue = false">


>
> But, I am having troubles in VBScript. I want to avoid mixing Java and
> VBScript in this page so as not to have to load both scripting
> engines. Anyone been able to successfully do this? Thanks
>
> -Tom

--
Michael Harris
Microsoft.MVP.Scripting

Microsoft® Windows®2000 Scripting Guide
http://www.microsoft.com/technet/scriptcenter/scrguide/sagsas_overview.asp

TechNet Script Center Sample Scripts
http://www.microsoft.com/downloads/release.asp?ReleaseID=38942

WSH 5.6 documentation download
http://www.microsoft.com/downloads/details.aspx?FamilyId=01592C48-207D-4BE1-8A76-1C4099D7BBB9&displaylang=en



That Did It by T

T
Tue Oct 21 15:56:23 CDT 2003

Thank you.