GlenGodbold
Programmer
The problem: users have main database for updating. Occasionally they need to select one or two records to extract data into Word. I want to give them a grid with a checkbox and the 'name' of the record so they can select the records they want. As more than one user might be selecting records at the same time, I'm creating a separate mini table for each user which just contains the logical field and the name field by using sys(3) to create a name and copying the relevant data into it, then using it with
mnewtable=sys(3)
copy fields check, name to &mnewtable
use &mnewtable alias newalias
I can't figure out how to populate a grid with the new table; neither newalias or even &newalias works as a record source. I know I'm missing something really obvious, but can anyone help
Thanks
mnewtable=sys(3)
copy fields check, name to &mnewtable
use &mnewtable alias newalias
I can't figure out how to populate a grid with the new table; neither newalias or even &newalias works as a record source. I know I'm missing something really obvious, but can anyone help
Thanks