Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: RickBeddoe
  • Content: Threads
  • Order by date
  1. RickBeddoe

    modifying XML namespace

    Hello I have an XML document in which I need to change a namespace. <root xmlns:abc=http://www.abc.com/20090930 > Within the XML file I have elements within the abc namespace: <abc:myElement>123456</abc:myElement> I use the following code to modify the namespace: XmlDocument myXmlDoc = new...
  2. RickBeddoe

    Change a namespace attribute value in XML schema

    Hello folks. I've also posted this in the XML forum. Having a tough time trying to figure this one out. I have a schema (xsd) file with namespaces declared in the root element as shown: <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"...
  3. RickBeddoe

    Modifying namespace difinitions in schema file

    Hello folks. Having a tough time trying to figure this one out. I have a schema (xsd) file with namespaces declared in the root element as shown: <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ci-com="http://xbrl.us/stm/ci/com/2008-03-31"> I would like to change the...
  4. RickBeddoe

    Cannot change attribute value

    Hello Folks, I am having a hard time changing the attribute value in the XML file below. I am using XML in a VBA environment. I have the following XML data: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <root xmlns:link="http://foo.com"> <sub xmlns:attr="foo"> </sub> </root> I...
  5. RickBeddoe

    Regex to look for missing string

    Hello Folks, I have an HTML file that I'm processing that contains comments. Unfortunately, the application that generates this HTML file, malforms the comments. We are working to get the developer of this tool to fix the problem, but in the meantime I'd like to develop a workaround. The...
  6. RickBeddoe

    List sort challenge

    Hello folks, I am having a dilemma with the list.sort method. The data I'm using is stored in the 'heading' member of the 'Contexts' objects (p1,p2). Here's my data: 3 months ending 9/30/2007 3 months ending 9/30/2008 9 months ending 9/30/2007 9 months ending 9/30/2008 Here is my sort...
  7. RickBeddoe

    reading id Attribute in XML (XSD) file

    I was going to post this in the XML forum, but I think this is more C# related. I have the following schema file: 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 <!DOCTYPE xs:schema [ 3 <!ELEMENT xs:schema ANY> 4 <!ELEMENT xs:element ANY> 5 <!ATTLIST xs:element id ID...
  8. RickBeddoe

    XSLT vs. C# opinions please

    I am somewhat new to XSL but I am a seasoned C# (not expert, mind you). I have been trying to get up to speed on XSL over the past week and I'm not sure I should continue pursuing this. I currently have a project where I need to consolidate 5 XML documents (including a Schema) and several...
  9. RickBeddoe

    Modifying attributes via VBA

    I am trying to edit an attribute of a XML file using VBA. Here is my code so far: Dim XMLDOC As DOMDocument Set XMLDOC = New DOMDocument Dim myNodes As IXMLDOMNodeList Dim Node As IXMLDOMNode Dim attrs As IXMLDOMNamedNodeMap Dim attr As IXMLDOMAttribute XMLDOC.Load...
  10. RickBeddoe

    iTextSharp

    Anyone using this to convert HTML to PDF? It seems promising, but I'm not having very much luck with HTML tables.
  11. RickBeddoe

    XML Online Courses

    I've been flailing around for the past few months teaching myself XML, but I feel a bit overwhelmed. There are just so many nuances. I am considering taking a more structured approach. Does anyone have any recommendations for an on-line training course?

Part and Inventory Search

Back
Top