Remind me... In the past when I had to locate an image
on a report and the filename is something that changes based
on the record being printed, I used to define a VARBIT
variable outside the report, like this:
SET VAR vCommand = +
('SET VAR vSignature VARBIT = [' + cval('quotes') +
+ .xvName + 'Signature.JPG' + cval('quotes') + ']' )
&vCommand
I played around a little and didn't seem to find the right
way to do this using Report Variables only. Using 9.5,
32 bit. Is there anyway I can do this using report variables?
I know I can put this on the Before Generate eep but I
prefer variables because they're more "visible".
Karen