Page 1 of 1

Passing Parameters (runtime) RRV11

Posted: Thu Jun 30, 2005 5:32 pm
by auspac
[updated:LAST EDITED ON Jun-30-05 AT 06:15 PM (EST)]I am using R&R Reportworks Version 11__I have the following code in Access 2000__--------__WR = "c: r" & WRepCat & "" & WReport & ".rsw"__Report1.ReportName = WR__Report1.Destination = PDest__Report1.Destination = 1__Report1.Action = 1__---------__In the report in am printing i have a field sortorder (character 10)__I wish to pass clieta+category+feature __to this report which has a calculated field called sortorder, which is used as the fields to sort on. Ie. I am not prompting the user.__I cannot put this info into a table, as the system is multi-user.____?? How do i pass this parameter to the report in the above code. ??____Must be very simple,!!! I just cannot find the info.____Regards Karen____

=> Passing Parameters (runtime) RRV11

Posted: Fri Jul 01, 2005 8:16 am
by kfleming
One alternative is to set____Report1.SortFields(0)=clieta__Report1.SortFields(1)=category__Report1.SortFields(2)=feature ____Kathleen__R&R Support

==> RE: Passing Parameters (runtime)

Posted: Fri Jul 01, 2005 7:08 pm
by auspac
Kathleen,__Thanks for your help.____Regards Karen