Search found 32 matches
- Tue Oct 04, 2011 5:37 pm
- Forum: R&R ReportWorks Users
- Topic: Amyuni PDF Driver
- Replies: 2
- Views: 2355
==> RE: Amyuni PDF Driver
It sounds like you created your report with the PDF Printer assigned to it. You can open the report, select a printer other than the pdf printer and save it. ____You can also overwrite the printer in your control file, if you use one. Change the ri_printer with ?, which allows the user to use whatev...
- Tue Oct 04, 2011 5:37 pm
- Forum: R&R ReportWorks Users
- Topic: Is R&R the right tool for supporting multiple clients?
- Replies: 2
- Views: 2655
=> RE: Is R&R the right tool for supporting multiple clients?
As long as you have some type of a link in the databases for the customers name, you can easily do this. Well, maybe not easily, but I do it all the time.____Anyway, say I have a customer databases and in that database I use a four position unique code for each customer along with their full company...
- Sat May 07, 2011 1:16 pm
- Forum: R&R ReportWorks Users
- Topic: Moving text for an export
- Replies: 4
- Views: 4477
===> RE: Moving text for an export
If the number field is multiple lengths; 1234.567 and 123.456 then you could do the following;____Pad the front end with as many characters that you may need then add the field to it left trim like; new_field = space(9-len(ltrim(str(<fieldname>,12,2))))+ltrim(str(<fieldname,12,3))____the new_field w...
- Tue Mar 01, 2011 10:41 am
- Forum: R&R ReportWorks Users
- Topic: Calling R&R reports from Delphi
- Replies: 7
- Views: 6675
=> RE: Calling R&R reports from Delphi
I am trying to get the code snippet you posted to work, but am getting an error on the chooseReport. ____GetErrorInfo is reporting an error code of 76 (L) and the error message is eight little squares. ____If the error code 76 corresponds to getErrorInfo code ^L^, I believe that is an error has to d...
- Mon Feb 22, 2010 10:30 pm
- Forum: R&R ReportWorks Users
- Topic: Suppress printing from preview
- Replies: 2
- Views: 2507
=> RE: Suppress printing from preview
Oops, I sent you the wrong response! Do you use a program to call the printing up? If not, then you are stuck with whatever it gives you.____Tom Freitas
- Mon Feb 22, 2010 10:30 pm
- Forum: R&R ReportWorks Users
- Topic: Focus changes while printing
- Replies: 5
- Views: 6795
=> RE: Focus changes while printing
You did not say what program you are using to call the R&R ReportWriter! I use a database program and sometimes I have it call up the dialog of Screen/Print/Export or I might have it simply display or print the report. Displaying is the best since this allows the user to print one page or all pa...
- Thu Feb 18, 2010 10:30 pm
- Forum: R&R ReportWorks Users
- Topic: Focus changes while printing
- Replies: 5
- Views: 6795
=> RE: Focus changes while printing
You did not say what your program is programed in! I program in a dBase programming language and the only way that I can keep the dialog box on top, is to force my program page to be the top modal or top page on the screen. Of course this may not make any since to you if you do not program in a dBas...
- Fri Dec 04, 2009 3:34 pm
- Forum: R&R ReportWorks Users
- Topic: Why the Garbage
- Replies: 1
- Views: 1806
Why the Garbage
It makes one wonder how safe this site is with all the garbage that is being posted! Does anyone monitor this site so that this stuff is removed.____One of these days you might get hit with thousands of posting all at once and this site would then be shut down....____This makes me very nervous and I...
- Mon Oct 05, 2009 12:09 pm
- Forum: R&R ReportWorks Users
- Topic: In the list - Filter
- Replies: 2
- Views: 2285
=> RE: In the list - Filter
You can also use substring such as substr(field_name,1,2) = "TM" or substr(field_name,1,3) = "TMF"____Since it looks like you want only part of the string to be in the filter, the substring would be best. Of course you could use a substring in a CASE filter as well.____Tom Freitas
- Mon Aug 17, 2009 11:46 am
- Forum: R&R ReportWorks Users
- Topic: Passing data from application
- Replies: 9
- Views: 5971
===> RE: Passing data from application
Kathleen,____I have started to use your suggested method. I can now access the db in the report, however, as the db will always have 11 records and they are all needed to be displayed in the Summary section....: How do I control R&R to skip through each of the 11 records and display the contents...