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: liberty4all
  • Content: Threads
  • 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

    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=...
  3. 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...
  4. 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...
  5. 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