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 is NP-Complete if

 1. The problem is in NP and
 2. If a deterministic, polynomial-time algorithm exists that can solve all instances of the problem correctly (0% false-positives, 0% false-negatives) for any problem in NP, a deterministic-polynomial-time algorithm exists.

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).  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.