Results 1 to 9 of 9

Thread: Listview won't show text [resolved]

Threaded View

  1. #1

    Thread Starter
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Listview won't show text [resolved]

    This code won't actually show up any text in the listview even though its View property is set to Details.

    Code:
    		Dim lvi As ListViewItem
    
    		With lvProcesses
    			.Clear()
    
    			For i As Integer = 0 To Procs.GetUpperBound(0)
    				lvi = New ListViewItem(Procs(i).id)
    				lvi.SubItems.Add(Procs(i).Name)
    				lvi.SubItems.Add(Procs(i).Priority)
    				lvi.SubItems.Add(Procs(i).Boost)
    				.Items.Add(lvi)
    			Next i
    		End With
    What gives?
    Last edited by wossname; Apr 7th, 2004 at 02:37 AM.
    I don't live here any more.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width