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
 2. There exists a polynomial time algorithm (possibly using random variables) that has a non-zero probability of answering "yes" if the answer an instance of the problem is "yes" and will say "no" 100% of the time.  In other words, a less than 100% false-negative rate and a 0% false positive rate.

A problem is NP-Complete if

 1. The problem is in NP
 2. If 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.