NP-Complete means something very specific and you have to be careful or you will get the definition wrong.  First, an NP problem is a yes/no problem such that

 1. There is polynomial-time proof for every instance of the problem with a "yes" answer that the answer is "yes", or (equivalently)
 2. There exists a polynomial-time algorithm (possibly using random variables) that has a non-zero probability of answering "yes" if the answer to an instance of the problem is "yes" and will say "no" 100% of the time if the answer is "no." In other words, the algorithm must have a false-negative rate less than 100% and no false positives.

A problem X is NP-Complete if

 1. X is in NP, and
 2. For any problem Y in NP, there is a "reduction" from Y to X: a polynomial-time algorithm that transforms any instance of Y into an instance of X such that the answer to the Y-instance is "yes" if and only if the answer X-instance is "yes".

If X is NP-complete and a deterministic, polynomial-time algorithm exists that can solve all instances of X correctly (0% false-positives, 0% false-negatives), then any problem in NP can be solved in deterministic-polynomial-time (by reduction to X).

So far, nobody has come up with such a deterministic polynomial-time algorithm, but nobody has proven one doesn't exist (there's a million bucks for anyone who can do either: the is the [P = NP problem][1]).  That doesn't mean that you can't solve a particular instance of an NP-Complete (or NP-Hard) problem.  It just means you can't have something that will work reliably on all instances of a problem the same way you could reliably sort a list of integers.  You might very well be able to come up with an algorithm that will work very well on all practical instances of a NP-Hard problem.


  [1]: http://en.wikipedia.org/wiki/P_%3D_NP_problem