This is my code and its not loading records in combobox, even though the rows are there in dataTable ??? why ??

VB Code:
  1. Private Sub LoadParentEntities()
  2.         Dim b_entity As New B_Entity
  3.         Dim ddataTable As New DataTable
  4.  
  5.         ddataTable = b_entity.GetEntities()
  6.         LoadParentEntities_CallBack(ddataTable, 20)
  7.     End Sub
  8.  
  9.     Private Sub LoadParentEntities_CallBack(ByVal objectData As DataTable, ByVal recordCount As Long)
  10.         Dim i As Integer
  11.  
  12.         Try
  13.             With cboParentEntity
  14.                 .DataSource = objectData
  15.                 .DisplayMember = "Entity_Label"
  16.                 .ValueMember = "Entity_Guid"
  17.             End With
  18.            
  19.  
  20.         Catch ex As Exception
  21.             MessageBox.Show(ex.Message)
  22.         End Try
  23.     End Sub