Search found 9 matches
- Fri Jan 31, 2003 12:05 pm
- Forum: R&R ReportWorks Users
- Topic: Win 2k Cannot Open Control File
- Replies: 5
- Views: 2864
Win 2k Cannot Open Control File
I am trying to run rrwrun ver 9.0 on Windows 2000.____It works on most machines using 2000, but on one I keep getting the error Cannot Open Control File. ____Any suggestions?
- Mon Aug 05, 2002 1:15 pm
- Forum: R&R ReportWorks Users
- Topic: Win 2000 and RR 9 Control File
- Replies: 3
- Views: 2347
==> RE: Win 2000 and RR 9 Control File
The error I receive with the rrwrun and control file is:____Cannot open control file__
- Thu Aug 01, 2002 11:56 am
- Forum: R&R ReportWorks Users
- Topic: Win 2000 and RR 9 Control File
- Replies: 3
- Views: 2347
Win 2000 and RR 9 Control File
I am running R&R 9.0 through an application I wrote in Visual Foxpro.__The application runs R&R correctly on Win 95 & 98 machines in both the ocx mode and rrwrun.____However we just had a machine converted over to Win 2000 and I cannot run the report.____The OCX error is:__OLE Error Code...
- Thu Jul 11, 2002 2:17 am
- Forum: R&R ReportWorks Users
- Topic: choose tray....
- Replies: 22
- Views: 12884
=============> RE: choose tray....
I solved the problem by creating multiple copies of the printer in the print manager.____I saved one as plain paper (tray 1)__I saved another as form (tray 2)__I saved another as legal (tray 3) etc.____I opened each report and save the respective report with each printer I needed. ____The way I used...
- Mon Nov 05, 2001 10:40 am
- Forum: R&R ReportWorks Users
- Topic: SSAN -first digit is zero
- Replies: 2
- Views: 2190
=> RE: SSAN -first digit is zero
if the field is numeric ____if(field<100000000,"0"+str(field,8,0))____if the field is a character (assuming the field length is 9 characters)____if(left(field,1)=" ","0"+substr(field,2,8),field)____Hope that helps.____
- Fri Nov 02, 2001 3:48 pm
- Forum: R&R ReportWorks Users
- Topic: Zero Fill Numeric Field w/Decimal
- Replies: 4
- Views: 2703
==> RE: Zero Fill Numeric Field w/D
A calculated field with expression:____IIF(num<0,__"-" replicate("0",11-len(ltrim(str(abs(num),12,2))))-ltrim(str(abs(num),12,2))__,__replicate("0",12-len(ltrim(str(abs(num),12,2))))-ltrim(str(abs(num),12,2)))____might be one way to get there.____Kathleen__R&R Support
- Fri Nov 02, 2001 3:44 pm
- Forum: R&R ReportWorks Users
- Topic: Zero Fill Numeric Field w/Decimal
- Replies: 4
- Views: 2703
=> RE: Zero Fill Numeric Field w/D
Sorry about that, the last post converted my formula to smileys____replace fielda with iif(numer<0,"-","0") right("00000000000" ltrim(str(abs(numer),11,2)),11) all
- Fri Nov 02, 2001 3:40 pm
- Forum: R&R ReportWorks Users
- Topic: Zero Fill Numeric Field w/Decimal
- Replies: 4
- Views: 2703
=> RE: Zero Fill Numeric
create field with calculation below where numer is the field name____iif(numer<0,"-","0") right("00000000000" ltrim(str(abs(numer),11,2)),11)
- Mon Oct 01, 2001 12:59 pm
- Forum: R&R ReportWorks Users
- Topic: Visual Fox Pro & R&R Sample code.
- Replies: 3
- Views: 2709
Visual Fox Pro & R&R Sample code.
I^m using R&R to run reports and currently use runtime with the__!run /w command but I^m interested in running through ole automation. ____Can anyone give me a sample of the code needed to run.____Thanks