I have a filled datatable and I'm trying to bind it to a ListView control, I'm currently using that following code:

Code:
listView1.DataBindings.Add(new Binding("text", myDataTable, "ItemName"));
it compiles but doesn't seem to work, I know that the datatable is full. what am I doing wrong?