Here's a very simple solution: have your app write a random key into the registry somewhere inconspicuous (under your app's key is polite, but don't call it "key" or "product id") the first time it's run. I like using a GUID for this key.
Each time your app starts, it reads this key and then also checks for a matching unlock code (which isn't there initially, of course). If the code is missing or doesn't match, you show a box to the user requiring them to enter the code (also display the key which they send to you to get the code).
You can use a simple Tom Mix decoder ring-style algorithm for matching keys to unlock codes (crackers can see what your app is doing anyway, so anything more isn't worth the trouble). If the code they enter works, you save it in the registry also and then they never see the message again.
This means you have to manage each individual user via email, but in practice this is a minor problem, and the overall setup does require customers to keep in touch with you periodically. Another advantage to this approach is that you can freely distribute your installation disks to customers (and even encourage them to make copies).
Edit: in Vista this could be a bad idea, because of permissions issues with the registry. I would change that part to whatever the recommended approach is now for Vista. On the other hand, it's not necessarily bad to only write the key and code to the current user part of the registry - that way other people can't use your software on that machine.