Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How can run reports in report.exe files from main exe fi
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00856845
Message ID:
00856886
Vues:
30
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform