When using ODBC connectivity you can specify a DefaultDir. But with OLEDB you can't use the DefaultDir setting, is there an OLEDB equivalent?

VB Code:
  1. ' CONNECTION STRING FOR THE DATABASE
  2. '    AccessConnect = "DRIVER={Microsoft Access Driver (*.mdb)};" & _
  3. '                    "DBQ=Westfield.MDB;" & _
  4. '                    "DefaultDir=" & App.Path & ";"
  5.  
  6. AccessConnect = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
  7.                  "Data Source=Westfield.mdb;"