View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
CodeSponge[_2_] CodeSponge[_2_] is offline
external usenet poster
 
Posts: 15
Default 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...