Search results for query: *

  1. C

    VB2005 Using XSL files in my.resources

    Ok, new problem now. hehe How do I get the results of the XSLCompiledTransform.Transform method into an XML.XMLDocument object? The XSL stylesheet I created converts one version of XML document to another version of XML document. This way I only need to write processing instructions in VB to...
  2. C

    VB2005 Using XSL files in my.resources

    You helped me more than you know! Thank you. Don't worry about the "over-complicated" first idea. Most ideas are that way, it takes time to refine them. :) If you hadn't replied I would still be stuck on this, and probably stuck for many more hours too.
  3. C

    VB2005 Using XSL files in my.resources

    HOLY COW! I was so clueless! :) So, if what you are saying is true, then this should work... Dim myXSLDoc As XmlDocument = New XmlDocument() myXSLDoc.LoadXml(My.Resources.XSLTFile) Dim xsl As New Xml.Xsl.XslCompiledTransform() xsl.Load(myXSLDoc) Since the XsLCompiledTransform.Load...
  4. C

    VB2005 Using XSL files in my.resources

    Would this work? Dim mem As New IO.MemoryStream(My.Resources.XSLFileData) Dim xr As XmlReader xr = XmlReader.Create(mem) Dim xsl As New Xml.Xsl.XslCompiledTransform() xsl.Load(xr)
  5. C

    VB2005 Using XSL files in my.resources

    p.s. Why didn't Microsoft just add another overloaded XslCompiledTransform.Load method that accepts an XMLDocument object as an argument? It would solve all my problems. :)
  6. C

    VB2005 Using XSL files in my.resources

    Thanks very much for your reply. I don't want to seem ungrateful, but does the XMLCompiledTransform .Load method accept an XMLTextReader as an argument? I am confused because the documentation doesn't say anything about that...
  7. C

    VB2005 Using XSL files in my.resources

    Can anyone give me some example code of how to use an XSLT file stored in my.resources? What I'm trying to do is use the XslCompiledTransform Class to transform XML documents using an XSLT stylesheet saved in my.resources. What I'm trying to prevent having to deploy both the exe and an .xslt...
  8. C

    Visual Studio 2005 windows service walkthru inquiry

    I'm new to Windows programming in Visual Studio.Net. I have a ASP.Net 2.0 web application that requires a particular action to occur at a user-definable interval. (Namely an index job) I assume that a Windows Service would accommodate this function nicely. However, I am unable to find a...
Back
Top