Just a quick shot at it <table> <xsl:for-each select="root/ResultSet/Record"> <tr> <xsl:for-each select="Column"> <td><xsl:value-of select="." /></td> </xsl:for-each> </tr> </xsl:for-each> </table>
your not being very clear, what are yu transforming the xml into? assuming you mean html, then just specify the size attribute on the img element.
"When the only tool you have is a hammer, a sore thumb you will have."
Here's the info I was looking for: http://www.sys-con.com/dotnet/readerschoice2003/liveupdate.cfm?BType=30 The link above has number of these tools. (I post this here in case these threads get archived so if someone searches for the same topic they'll find the answer).
you need to learn xslt http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/htm/xsl_intro_7yw5.asp[^]
"When the only tool you have is a hammer, a sore thumb you will have."
Expat uses a callback mechanism to parse documents (similar to SAX). So, basically you make a callback function for elements that checks if the element is an "author" (and does something with that data), you register that handler, then you start the parser. There is a good tutorial on getting started with Expat here: "Using Expat" by Clark Cooper. - Mike
Attributes aren't part of the child tree as you are trying to use it. Attributes are considered separate by the DOM and need to be accessed via IXMLDOMElement::getAttribute or IXMLDOMNode::attributes, with the later being best for you usage as you can iterate over all available attributes.
Try:
/// <summary>
/// Summary for the enum here...
/// </summary>
public enum MyEnum
{
/// <summary>
/// Summary for Value1 here...
/// </summary>
Value1,
/// <summary>
/// Summary for Value2 here...
/// </summary>
Value2,
...
}
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer