I am trying to understand why some of my code works fine in IE4.0, but bombs
in IE3.02. This is not brain surgery code. Here's an example:
<!--
Sub Submit_OnClick
dim frm
dim newwin
set frm=Document.sReport
Window.location.href = "../Reports/" & frm.sRegion.value & "/" &
frm.sMonth.value & frm.sYear.value & frm.sRegion.value & frm.sType.value &
".pdf"
End Sub
The controls sRegion, sMonth, sYear, sType are standard drop-down list
boxes.
The error is that a property or method of an object is not supported.
Any clues?
I thought perhaps if there was any documentation on earlier VB Scripting
versions, I might be able to pick out my issue...
Thanks in advance...Skip Borland