View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
merjet merjet is offline
external usenet poster
 
Posts: 812
Default List box question

Of course, you need: ListBox1.ColumnCount = 1

Then after: ListBox1.AddItem f1.Name
Insert: ListBox1.List(ListBox1.ListCount - 1, 1) = "whatever"

HTH,
Merjet