Forum Moderators: open
So far my Java Program works, Check list then Prints.
need to Add Email Page.
// Starts -->
<script language="JavaScript" type="Text/JavaScript">
function checkrequired(which) {
var pass=true;
if (document.images) {
for (i=0;i<which.length;i++) {
var tempobj=which.elements[i];
if (tempobj.name.substring(0,8)=="required") {
if (((tempobj.type=="text"¦¦tempobj.type=="textarea")&&
tempobj.value=='')¦¦(tempobj.type.toString().charAt(0)=="s"&&
tempobj.selectedIndex==0)) {
pass=false;
break;
}
}
}
}
if (!pass) {
shortFieldName=tempobj.name.substring(8,30).toUpperCase();
alert("Please make sure the "+shortFieldName+" field was properly completed.");
return false;
}
else
if (window.print)
window.print()
}
// End -->
The Java program is nie and simple that check my list to make sure everything is entered.
I tried Html format but wont work for me.
I will keep trying. I'm also reading alot of book to find the answer but still they point to a file program that will do the work for you.
Thanks for your help.
Chris
Having the file save to desktop that would confuse them.
trying to make it easy
So far im at this line now.
window.location = "mailto:cluxmore@rogers.com";
This will open outlook but will not attach the wegpage. Still working on it.
THanks. You guys are helping me out alot just from reading the posting.
Chris Luxmore