Probably the first thing you play with in the Visual Studio 2008 extensions for SharePoint is to create a web part. The default project naming can take a little to get used to however. Here's the common path that leads to confusion:
The takeaway from this is that for each Visual Studio project template the default feature names start at 1 and unique feature names are required in SharePoint. Hence if you want to reuse the name WebPart1 on your SharePoint server, you have to deactivate and uninstall the previous one. You could use the SETUP.BAT from the first project for this, or you could use STSADM to remove it.
A better option would be to create Visual Studio projects using the Empty Project template (instead of the WebPart project) and then manually add your Web Part and give your Web Part a unique name yourself. It's unlikely that you would want to only have one WebPart in a SharePoint Visual Studio project anyway.