Im getting the following error when running the code below;

An unhandled exception of type 'System.Data.OleDb.OleDbException' occurred in system.data.dll


VB Code:
  1. Private Sub btnMbrListImport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnMbrListImport.Click
  2.  
  3.         Dim DSMbrList As System.Data.DataSet
  4.         Dim MyCommand As System.Data.OleDb.OleDbDataAdapter
  5.         Dim MyConnection As System.Data.OleDb.OleDbConnection
  6.  
  7.         MyConnection = New System.Data.OleDb.OleDbConnection( _
  8.             "provider = Microsoft.Jet.OLEDB.4.0; " & _
  9.             "data source = " & txtMbrList.Text & ";" & _
  10.             "userid=Admin;Password=")
  11.  
  12.         MyCommand = New System.Data.OleDb.OleDbDataAdapter( _
  13.         "select individual_id, member_nbr, participation_type" & _
  14.         "from db2inst1_membershipparticipant", MyConnection)
  15.  
  16.         DSMbrList = New System.Data.DataSet
  17.  
  18.         MyCommand.Fill(DSMbrList) 'This is the line that the error highlights
  19.         MyConnection.Close()
  20.  
  21.     End Sub

I'm sure I'm just missing something easy.

Thanks,
Brad