Have a look at this:
VB Code:
  1. [B][U]data.recordset.fields("Customer_Name")[/U][/B] = "Juan Lopez"
and now have a look at this:
VB Code:
  1. msgbox ([B][U]data1.recordset.fields("Customer_Name")[/U][/B])
You see the commonality? Now take a look at this:
VB Code:
  1. [B][U]currentRow("Customer_Name")[/U][/B] = "Juan Lopez"
How do you suppose you would display that field?