Well, there's probably an article on CP somewhere, but it's really simple - bung a datagrid on your form, then call SetDataBinding on it with your array: ' Example - display an array of 3 items in a datagrid Dim myArray as String(3) = { "Hi", "Hello", "Bonjour" } ' Haven't tested this, but should work ok DataGrid1.SetDataBinding(myArray, "") If you need something more complicated (eg, multiple columns), use a DataTable instead of an Array. All of this is documented in MSDN anyway. -- Ian Darling