Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How can run reports in report.exe files from main exe fi
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00856845
Message ID:
00856886
Views:
31
what you have to do is to call your reports.exe from your main.exe with the name of the report you want to run like this
do reports.exe with "mySpecificeport.frx"
then, in the reports.exe project you have to make a program and set it to main program wich recieves the report name as parameter something like this
*:Main program of reports.exe project
LParameter lcSentReportName

if !empty(lcSentReportName) then 
   *:run the report
   report form &lcSentReportName
endif
return
.......
DO WHILE .T.
      ME.Work()
ENDDO
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform