vb.net - Remove first 7 chars from every items in a listbox -


an example of item be:

title1=hello! 

i need remove first 7 characters make it:

hello! 

i have tried code, not working:

listbox.items.item(1).remove(0, 7) 

    each in listbox1.items         = (strreverse(strreverse(i).remove(7)))     next 

Comments

Popular posts from this blog

c# - Class in a list -

mysql - Django database model for my website -

ios - How to run a segue on itself OR another viewController -