You are the man!!!! ThanksOriginally Posted by RobDog888
Just rated you!
If anyone else reads this thread here is the working code.....
Code:function btnEmailJava(subject, tofield, body) { var myOlApp = new ActiveXObject("Outlook.Application"); var myOlExp = myOlApp.ActiveExplorer; var myItem = myOlApp.CreateItem(Object.olMailItem); myItem.Subject = subject; myItem.Body = body; myItem.To = tofield; myOlExp.Activate(); myItem.Display(); }





Reply With Quote