Hi,
> int main(int argc, char* argv[])
> {
> XMLCh* tempStr[100];
you have declared an array of 100 XMLCh pointers. I believe what you want
is an array of 100 XMLChs, like such
XMLCh tempStr[100];
>
> XMLString::transcode ("Range", tempStr, 99);
> DOMImplementation* impl = DOMImplementationRegistry::getDOMImplementation
> (tempStr, 0);
this method only taks 1 parameter. Remove the second and it will work
correctly.
> error C2665: 'transcode' : none of the 4 overloads can convert parameter 1
> from type 'char [6]'
that really is a crap error message :(
Gareth
--
Gareth Reakes, Head of Product Development
DecisionSoft Ltd. http://www.decisionsoft.com
Office: +44 (0) 1865 203192
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]