passing JitPipeline value
Hi
I have a problem passing on particular field to a report rtm file.
The field is called BranchAddress but when it is put on to the report form
it prints nothing.
Anything I can check ?
Thanks
Andy
if aFieldName = 'BranchAddress' then
begin
if ComboBox1.Text = 'Oldham' then
Result := 'oldham address ??????????'
else if ComboBox1.Text = 'Bournemouth' then
Result := 'Bournemouth address ????????????????????' ;
end;
This discussion has been closed.
Comments
My fault the field was set to a date type.
HTH someone else anyway
Andy