try
myVar=new String(2003,2,12,17,18,12); _________________________________________________________
for the best results to your questions: FAQ333-2924 01001111 01101110 01110000 01101110 01110100
whoops! surounded it quotes
myVar=new String("2003,2,12,17,18,12" _________________________________________________________
for the best results to your questions: FAQ333-2924 01001111 01101110 01110000 01101110 01110100
myVar is actually an array element tranformed for semplicity, and it comes from a chunk of XML code which
comes from a database query. Cannot touch that.
Can someone please provide an example of how to achieve this...I have an XML file:
----------------------
<?xml version="1.0"?>
<top>
<Process>
<Location>\\test_machine\test</Location>
<Gauge>LOG</Gauge>
<Filter>10</Filter>
</Process>
<Process>
<Filter>45</Filter>
<Location>\\test_machine\again</Location>
<Gauge>TXT</Gauge>
</Process>
<Process>
<Location>\\test_machine\more</Location>
<Gauge>HKE</Gauge>
<Filter>20</Filter>
</Process>
<Process>
<Location>\\test_machine\one</Location>
<Gauge>LTX</Gauge>
<Filter>999</Filter>
</Process>
</top>
-------------------
How would I do this if I wanted something on the "Process" line, for example:
I can already get the Location, Gauge and Filter to work bu I want to be able to identify the Parent value too.
Now, when I process I want to display the "This test" on the "Process" node. I am using JavaScript (JScript) on Windows Scripting Host and the MS DOM object.
Can that be done? If so, can you provide some an example on that?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.