LonnieJohnson
Programmer
In reference to...
That's my problem. I can't find that code in my app. I was told that it was created by the server.
ProDev, MS Access Applications
Visit me at ==>
May God bless you beyond your imagination!!!
1) that thread above is going to get deleted again. please be sure to preview your posts prior to posting. for example, when posting your actual code, we don't need all of your select options, especially since that's not relevant to your question.
2) it is good form to place all of your script within your head tags.
3) try replacing this:
CODE
var theForm = document.forms['AddNewLog'];
if (!theForm) {
theForm = document.AddNewLog;
}
with this
CODE
window.onload = function() {
var theForm = document.forms['AddNewLog'];
if (!theForm) {
theForm = document.AddNewLog;
}
}
That's my problem. I can't find that code in my app. I was told that it was created by the server.
ProDev, MS Access Applications
Visit me at ==>
May God bless you beyond your imagination!!!