I got it working, but now another problem. I know it is not fully working yet, but I want to see what I CAN do.

I can write to a text box in IE with

$doc=$ie.document
$element=$doc.GetElementById("textboxID")
$element.Value("set to this")

But I can't read the value back. $element.value errors and $element.value() erases the value. .innerHTML() also erases the value.

Any ideas?

cj