I have the following SQL:
select visits.*, visits.rowid, accounts.name
from vists,accounts
where visits.AccountNo = accounts.AccountNo
When the DBText for accounts.name is displayed for existing records, everything is ok.
When I insert a record, the DBText field is blank. What method can I use to display the value of accounts.Name after the user exits the visits.AccountNo DBEdit so that the user can see the name of the account they entered? The accounts file contains millions of records.
Thanks
select visits.*, visits.rowid, accounts.name
from vists,accounts
where visits.AccountNo = accounts.AccountNo
When the DBText for accounts.name is displayed for existing records, everything is ok.
When I insert a record, the DBText field is blank. What method can I use to display the value of accounts.Name after the user exits the visits.AccountNo DBEdit so that the user can see the name of the account they entered? The accounts file contains millions of records.
Thanks