Search results for query: *

  1. K

    exporting xml data to excel file

    solution #1 In case anyone out there is looking here is one solution I found: Dim doc AsNew XmlDocument Dim sInPath as String=[valid xml string] doc.LoadXml(sInPath) Dim trans As Xsl.XslTransform = New Xsl.XslTransform trans.Load(Server.MapPath("excel.xsl")) trans.Transform(doc, Nothing...
  2. K

    exporting xml data to excel file

    HI, I need to export some xml data to an excel file. I've found a few ways of doing this on the web, but none of them quite fit what I want, and my knowledge of xml manipulation is not fantastic. The problem is: I have some existing code in a web application which used to work but which now...
  3. K

    Exporting Dataset to Excel

    Hi CJard, do you have any similar sort of code for .net1.1? I have the following code, which used to work, but which now runs without errors, but also without showing any results - it just shows a blank screen, with the title on it. Response.Clear() Response.Charset = ""...
  4. K

    Integers showing as code numbers (ie &H33 instead of 3)

    thank you!! that works a treat!! Kate
  5. K

    Integers showing as code numbers (ie &H33 instead of 3)

    When I'm debugging in VS and either hover over a numeric variable with the mouse or print out the variable in the immediate window, instead of ie 3, I get &H33. If I do i.ToString() then it prints out the number, but it's getting kind of annoying. Does anyone have any ideas about how to change...
Back
Top