Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Bullet list in VFP Report
Message
De
03/02/2016 14:17:33
 
 
À
30/01/2016 03:36:27
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de rapports & Rapports
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows 10
Divers
Thread ID:
01630437
Message ID:
01630724
Vues:
91
Hi Koen!
report is very old question in my case (as word,excel...).dont use them there is a while.

this is a small code demo how to answer your question.
the code below creates a report for a given cursor where there is a small bullet at the first field.the bullet is chr(149)
char.
after preview the report can modify it in first field (black bullet).rightclick to access properties.
can change the fontname,fontbold, forecolor (red for ex.)---see the photo attached.
can filter with any valid condtions.
CLOSE TABLES all
set safe off
sele cust_id,company,contact ,maxordamt from home(1)+"samples\data\customer" into cursor ycurs Readwrite
Alter Table ycurs Add Column bul c(3)

*make bul field  at the first field 
sele bul,cust_id,company,contact,maxordamt from ycurs into cursor zcurs readwrite
use in select("ycurs")

sele zcurs
scan for  maxordamt<=9000
repl bul with spac(2)+chr(149)
endscan
*brow

CREATE REPORT yrepo FROM (ALIAS())
REPORT FORM yrepo PREVIEW 
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform