Don't you think showing the code would be helpful?
To remove one Item:
ListView1.ListItems.Remove Index
where Index is either a number (0-based) or a string the specifies the Item.
To clear the whole list:
ListView1.ListItems.Clear
It's all in the helpfiles.
Your adding-problem must be because of your code.
Johan.
Quote:
> I have a listview box of items retrieved from a text file called
> UserID.dat. I am able to add items. I need to remove items either
> typos or items not needed any more. Can't figure out the code and VB
> help is not to helpful.
> I also have two columns in my listview just incase that is needed
> information. User name and Computername.
> Also there is a problem with adding a username with spaces in it. If
> one word works fine but if typed in like John Doe. I end up with John
> computername Doe. Not sure why it does that. If I just type in one
> word it works fine.
> Thanks for any help,
> Bob