Get a reference to the currently running IE ?
What type of Ref?
if u want the value of a form field or something like that its
oIE.Document.formName("fieldName").value
if u want the body source to parse then try
sVar = oIE.Document.Body.innerhtml
etc...
|