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 Mike Lewis 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: liberty4all
  • Order by date
  1. liberty4all

    using DOM.. what's the best way to do this

    Hi, I am trying to use XML to display tables on my website, in hope it's faster than using a dataReader or dataSet. The way I do it is using 3 files: 1. myxsl.xsl - an XSL file that defines how the XML should look like. It is well formed. 2. mysource.aspx - an ASPX file that just selects the...
  2. liberty4all

    XML SelectSingleNode problem

    Thank you for your patience.. I thought that msxml2 version 4.0 is standart on any computer that runs IE, isn't it?
  3. liberty4all

    XML SelectSingleNode problem

    Where is the version 4.0 of the msxml2 core service supposed to be installed? on the server that my website is running on? My page works, it shows the table using the xsl as it should. I have a function that is called when the header of the table is clicked, that is where I try to select the...
  4. liberty4all

    XML SelectSingleNode problem

    thanks for your replay. could you explain what you mean by "the real script"? the xsl is indeed well-formed and in the same directory as the script that loads it
  5. liberty4all

    XML SelectSingleNode problem

    Maybe I should explain how I get docStyle from which I select the node from.. so this is how: dim docStyle set docStyle = CreateObject("MSXML2.DOMDocument.4.0") docStyle.async=false docStyle.load "ntscorers.xsl" ntscorers.xsl is the xsl that appears in my original post. sorry if I wasn't clear
  6. liberty4all

    XML SelectSingleNode problem

    Hi, I am trying to sort an XML table dynamically, according to the header the user clicked on. In order to do that I need to select the sort node from the XSL file being used by the table, change its attributes and reload it. For some reason this line returns null for me set sortNode=...
  7. liberty4all

    non-recursive quick sort

    Can anyone help me with some outlines for the algorithm? Just the general idea? I assume I'll need to use a stack in order to do this, but that's pretty much all I've figured out so far...
  8. liberty4all

    Question about Quick Sort

    Thanks for replying! My main question isn't about what index is best to use though, but rather that if you choose the pivot as the last index, how can that cause the partition loop to become endless?
  9. liberty4all

    Question about Quick Sort

    Hello all. I'm sure you all are familiar with the quick sort algoritem, but I'm still gonna post it in short: IF left < right THEN BEGIN pivot := partition (list, left, right); Quicksort (list, left, pivot-1); Quicksort (list, pivot + 1, right); END In the...
  10. liberty4all

    A problem involving strtok

    Me again, just signed up here. Anyway, if i replace the &quot; AddWord(&List,token); &quot; command with a simple printf, then it works and prints out all the words in the file. However, if i replace AddWord with the most trivial function in the world, &quot; push_front &quot;, which adds words...
  11. liberty4all

    A problem involving strtok

    Hey everyone, I am writing a program that reads from a file, separates the words from punctuation marks and aranges arranges the words in alphabetical order in a linked list. I have a loop, which deals with one line at a time, taking care of every word. It works fine with a 1-line file, but...

Part and Inventory Search

Back
Top