Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Creating reports only with code during runtime
Message
 
À
04/02/2003 06:32:21
Metin Emre
Ozcom Bilgisayar Ltd.
Istanbul, Turquie
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de rapports & Rapports
Divers
Thread ID:
00748791
Message ID:
00748814
Vues:
21
That can certainly be done, but a lot of work.

You could build a designer, similar to VFP query designer to gather the report parameters. Then using the TEXTMERGE, create report during runtime as HTML. VFP is works fantastic in this regard.

I stopped using the report writer a long time ago in favor of creating HTML reports on fly. For example:
SET TEXTMERGE ON NOSHOW
SET TEXTMERGE TO C:\TEST2.HTM
\<html>
\<head>
\<title>
\</title>
\</head>
\<body>
SELECT Employess
SCAN
  \Employee Name:  <<Employees.name>>
  \<br>
ENDSCAN
\</body>
\</html>
SET TEXTMERGE OFF
SET TEXTMERGE TO
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform