I managed to sort it out using this code: var fldDate =
this.getField("DOB").value; var strDate = "12122004"; fldDate =
fldDate.toString(); app.alert("Field Date is " + fldDate + " and the
type is : " + typeof fldDate); app.alert("String Date is " + strDate + "
and the type is : " + typeof strDate); var fmtDate =
util.scand("ddmmyyyy", fldDate); app.alert("Print this is scand date: "
+fmtDate); app.alert("THis is printd date: " + util.printd("dd/mm/yyyy",
fmtDate));It became apparent that the da...