Reading the username from the domain\username is not so difficult is it?

You could use substr() or you could split the line on the \ and get the last element from the array you created while splitting it.

Example:
 Code:
$line = "domain\UserA"
$name = SubStr($line, 8)
? $name


or

 Code:
$line = "domain\UserA"
$split = Split($line, "\")
? $split[UBound($split)]
_________________________
Mart

- Chuck Norris once sold ebay to ebay on ebay.