A
asd987
Hi,
I have a problem to print the correct data to a file.
I have two tables:
1. "names" with the records
- "id" (autonumber / primary key)
- "description" (text)
2. "things" with the records
- "date" (date)
- "object" (memo)
- "name" (this refers isong lookup to table "names" the record "id")
I do:
print #1, rstfile2!date
print #1, rstfile2!object
print #1, rstfile2!name
As expected I get a number on the third print-command. I tried several
things to get the "description" of the "id" printed but didn't succeed.
Even when I do a
Select Case rstfile1!id
Case rstfile2!name
Print #1, rstfile1!description
End Select
while looping rstfile2 it doesn't work. Above that I think it could be done
much more easy than using the Select Case and looping-story. But how?
Thanks,
Sjoerd
I have a problem to print the correct data to a file.
I have two tables:
1. "names" with the records
- "id" (autonumber / primary key)
- "description" (text)
2. "things" with the records
- "date" (date)
- "object" (memo)
- "name" (this refers isong lookup to table "names" the record "id")
I do:
print #1, rstfile2!date
print #1, rstfile2!object
print #1, rstfile2!name
As expected I get a number on the third print-command. I tried several
things to get the "description" of the "id" printed but didn't succeed.
Even when I do a
Select Case rstfile1!id
Case rstfile2!name
Print #1, rstfile1!description
End Select
while looping rstfile2 it doesn't work. Above that I think it could be done
much more easy than using the Select Case and looping-story. But how?
Thanks,
Sjoerd