Ok, I have the following SQL Query in both Access and VB... In access, it pulls two records, just as it should, but in VB when I do a recordset.recordcount, it gives me "-1" and only opens one recordset into my datareport.

VB Code:
  1. SELECT Company.Name, Company.Address, Company.City,
  2. Company.State, Company.Zip, Company.Telephone, [Units.Number], Units.Price, Units.CustomerNumber,
  3. Customers.Name, Customers.Address, Customers.City,
  4. Customers.State, Customers.Zip, Customers.Telephone,
  5. Customers.Balance, Customers.LastPayment FROM (Company INNER JOIN Units ON Company.Number = Units.Company) INNER
  6. JOIN Customers ON (Units.CustomerNumber =
  7. Customers.Number) AND (Company.Number =
  8. Customers.Company)

Like I said, It will work in Access, but vb doesn't want to do it...
oh, btw... I'm invoking it by DB.Execute

Thanx,
squirrelly1