Shawn... man, how do you figure out these objects? [Confused]

I saw both .body and .innerhtml on the MS website but never thought to put them together, or for that matter, what .innerhtml actually meant.

BUT... The good news is, you've gave me a way to solve the problem! [Big Grin]

Here is how I got it.

code:
 Break On

$URL = "@scriptdir\34output.html"

$IE = CreateObject("InternetExplorer.Application")

$IE.Visible = 1

$IE.Navigate($URL)

While $IE.Busy and $IE.ReadyState <> 4 and @ERROR = 0 Loop

$htmlcode=$IE.Document.body.innerhtml

$html=split($htmlcode,"<B>")


? left($html[2],7)


Exit 0

So... tomorrow I'll begin the Access process... looks like the db UDFs are pretty straight forward, so hopefully everything from here will be all down hill. [Cool]

Thanks again.