Wonder if I could ask a favour of anyone that has Kixforms installed on Windows XP (has to be XP) - could you run the following script and respond back whether the column headers of the ListView are populated correctly - example there are three columns and they should read column-0, column-1 and column-2 ... im interested in hearing from as many members as possible. thanks.

Break On
  
$Form = CreateObject("Kixtart.Form")
 
$ListView = $Form.ListView
$ListView.Location = 10,10
$ListView.Right = $Form.ClientWidth-10
$ListView.Bottom = $Form.ClientHeight - 10
 
$ListView.Columns.Count = 3
 
for each $column in $listview.columns
 $column.text = "column-"+$column.index
next
 
$Form.Show
 
While $Form.Visible
 $=Execute($Form.DoEvents)
Loop
 
Exit 1