I'm using Allen Browne's Concatenate Function to concatenate the many phone number records of one person into one field of a record.
i.e.
John Smith | 02038483956
John Smith | 07593999493
Jim Jones | 07540029938
James Williams | 02079348395
James Williams | 07948394903
James Williams | 08003489358
This function, "ConcatRelated()" is used on the query behind a form, like ConcatRelated(.......) AS Phone
It produces these results:
John Smith | 02038483956, 07593999493
Jim Jones | 07540029938
James Williams | 02079348395, 07948394903, 08003489358
...
I also have a KeyPress event on the form that traps the ESC key and sets focus to the searchbox of the form. However, when the ESC key is pressed, it produces the following error:
Any ideas how to fix this?
i.e.
John Smith | 02038483956
John Smith | 07593999493
Jim Jones | 07540029938
James Williams | 02079348395
James Williams | 07948394903
James Williams | 08003489358
This function, "ConcatRelated()" is used on the query behind a form, like ConcatRelated(.......) AS Phone
It produces these results:
John Smith | 02038483956, 07593999493
Jim Jones | 07540029938
James Williams | 02079348395, 07948394903, 08003489358
...
I also have a KeyPress event on the form that traps the ESC key and sets focus to the searchbox of the form. However, when the ESC key is pressed, it produces the following error:
ConcatRelated()
Error 3059: Operation canceled by user.
Any ideas how to fix this?