Error with selectSingleNode in VBScript to VB6 convert
Wed, 2 Apr 2008 13:11:12 -0700 (PDT)
Hi everybody,
I need some assistance with the following VBScript. I need to convert
this into running under VB6 and has no idea as to why it keeps falling
oover on line no 5.
Would appreciate it if help could be given in this respect.
Thanks
----------------------------------------------------
1 Dim o ...
|
how to entity microsoft datatype ?
Thu, 3 Apr 2008 03:30:55 +0800
hi,
I like to use ms_datatype , but the xmlns string is too long , and making
the xml files huge.
So , I look for using ENTITY to reduce the size . I try the method below ,
but failed , can any body help me out ?
My try:
<?xml version="1.0" encoding="gb2312"?>
<!DOCTYPE root[
<!ELEMENT root ANY>
<!ENTIT ...
|
linked textboxes
Wed, 2 Apr 2008 12:08:03 -0700 (PDT)
Can anyone point me to a spec that shows the XML tagging for linked
textboxes? I've tried exporting documents with and without linked
textboxes to XML and I truly cannot see where the linking information
is encoded. Thanks --
--larry ...
|
Formatting: A line break before each attribute?
Mon, 31 Mar 2008 21:34:10 +0100
Hello,
I have to deal with Xml files which mainly consist of nodes which contain a
large number of attributes. I can manage to format these Xml files to
nicely indent each node, but all the attributes remain on the same
(extremely long) line as the node.
Does anyone know of a way I can automatically for ...
|
simple xml de-serializer test
Mon, 31 Mar 2008 04:40:01 -0700
Hi,
I am trying to read my xml file and output in console prompt.
I get the error message: "There is an error in XML document (2, 2)."
I'm not very sure what this message means. Any advice would be appreciated.
cheers
Andrew
code
====
static void Main(string[] args)
{
clsProduct p = new clsProduct( ...
|
Add multiple parameters to a string
Sat, 29 Mar 2008 17:28:10 -0700 (PDT)
May be the wrong group but someone should be able to advise.
I have the following to display the correct menu in a separate frame:
<% Response.Write "<Menu_id>http://www.restaurantplanet.com/
test_930.asp?menu=" & Recordset1("Menu_id") & "</Menu_id>" %>
This works fine, but I want to add Location_id to t ...
|
How to make InteliSense display XSLT-FO objects
Fri, 28 Mar 2008 09:02:01 -0700
Hi all,
I am going to use XSLT-FO to format a XML. In Visual Studio 2005, how can I
make the InteliSense display the XSLT-FO' s object and property?
Clara
thank you so much for your help ...
|
|
|
How to format an embedded tag's content
Fri, 28 Mar 2008 06:22:02 -0700
Hi all,
I have an xml section like this:
...
<summary>
this year we earn <benefit>5,000</benefit> dollars,....
</summary>
...
in the declaration part
<!ELEMENT summary ANY >
I am using XSLT to output the xml file to HTML format, how can I output the
whole summary section and only make the 5, ...
|
Possible using XPath?
Thu, 27 Mar 2008 11:55:23 -0400
Let's say I have the following structure:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<child id="c1">
<child id="gc1">
<child id="ggc1"/>
<child id="ggc2"/>
</child>
<child id="gc2">
<child id="ggc3"/>
<child id="ggc4"/>
</child>
</child>
<child id="c2">
<child id="gc3">
...
|
Using dom save to an xml file
Wed, 26 Mar 2008 16:34:07 -0700 (PDT)
I am using html and dom
x=xmlDoc.getElementsByTagName('person');
for(i=0;i<x.length;i++)
{
x.item(i).setAttribute("color","red");
}
//Output all attribute values
for (i=0;i<x.length;i++)
{
document.write(x[i].getAttribute('category'));
document.write("<br />");
}
Hi tha changes that i am making ...
|