;;I am receiving this error
I can not see an error in your post
;;I understand that it may be possible that this component is not installed
What OS are you using, I beleive it's an object?
;;Where would I find this dll
You wont
;;Is the name of the dll VBScript.RegExp
No
A reference for the following may be found at:
http://www.winnetmag.com/WindowsScri...70/pg/2/2.html
-------------------
In VBScript 5.0 and later, the regular expression processor is a COM object called RegExp. As a result, the support for VBScript's regular expressions is language independent.
To use VBScript regular expressions, you need to create an instance of the RegExp object. One way is to use the New keyword in code such as
Set regexp = New RegExp
Another way is to use the CreateObject function with RegExp's programmatic identifier (ProgID) VBScript.RegExp in code such as
Set regexp = CreateObject("VBScript.RegExp")
----------------------
If you are validating an email address may I suggest using JScritp RE's. This is the one I use, it works a treat:
email=document.addUser.eMail.value;
var expression=/^([a-zA-Z0-9\-\._]+)@(([a-zA-Z0-9\-_]+\.)+)([a-z]{2,3})$/;
if(!(expression.test(email)) )
{
alert("Please enter a valid email address");
document.addUser.eMail.select();
document.addUser.eMail.focus();
return false;
}
Wind is your friend
Matt