Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
DISPLAY NEXT 10 TO PRINT NOCONSOLE?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00532710
Message ID:
00532750
Vues:
9
>You know how you can go to the command window and USE a table and DISPLAY NEXT 10 RECORDS TO PRINT NOCONSOLE.
>
>My question is -
>Is there a way I can print out multiple records and have them line up in columns like a spreadsheet, making it easier to read and follow the data instead of scattered in the field order they are listed in?
>
>TIA!
You can play with FONT command, I believe. But better just create a report. You can create it on the fly by this way:
********************************************************************
*  Description.......: TableMaint.PrintM
*  Calling Samples...: 
*  Parameter List....: 
*  Created by........:  
*  Modified by.......: Nadya Nosonovsky 06/06/2000 12:51:08 PM
********************************************************************
local lcReportName, lcSafety
lcReportName='Reports\TableMaint'
lcSafety=set('safety')
set safety off
select TableMstr
create report (m.lcReportName) from alias() column
dodefault()
if m.lcSafety='ON'
	set safety on
endif
If it's not broken, fix it until it is.


My Blog
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform