Quote Originally Posted by Ricky1
I wana take all the words in list1 and add them to list3 in sentence case, is what i want to do.

In that case, try something like this:

VB Code:
  1. Dim I As Integer
  2. List3.Clear ' Clear the listbox
  3. For I = 0 To List1.ListCount
  4.     List3.AddItem List1.List(I)
  5. Next I


Cheers,

RyanJ