> xmlClinDom.selectNodes
> ("/clinicalInfo/clinNoteItems/clinNoteItem[@typeId >=
> 20000 && @typeId < 40000]");
>
> works fine except with msxml4.0.
Shouldn't work, because && is syntax error in XPath. In XPath it's spelled as
"and":
/clinicalInfo/clinNoteItems/clinNoteItem[@typeId >= 20000 and @typeId < 40000]

Signature
Oleg Tkachenko
http://www.tkachenko.com/blog
Multiconn Technologies, Israel