Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unconfortable file structure list 1

Status
Not open for further replies.

SitesMasstec

Programmer
Sep 26, 2010
523
Brasil
Hello Colleagues!

I have a free VFP 9 table and I want a list of its fields, in the format bellow (like I did 3 years ago, opening file in FoxPro 2.x and in a dot matrix printer):
ListaArq1_wgbydn.jpg


Now, I print in a Windows printer diretly from VFP 9, the same table, and the result for printing is unconfortable:

ListaArq2_piv6t2.jpg


The commands in both cases are:
USE RECEITAS
LIST STRUCTURE TO PRINTER/TO FILE

Is it possible to list the structure of a table with one field in each line (like it is in the first case I presented?


Thank you,
SitesMasstec
 
This is down to the width of your display setting.

Code:
SET MEMOWIDTH TO 8190
DISP STRU TO FILE C:\TEST.TXT NOCONSOLE
MODI COMM C:\TEST.TXT


Regards

Griff
Keep [Smile]ing

There are 10 kinds of people in the world, those who understand binary and those who don't.

I'm trying to cut down on the use of shrieks (exclamation marks), I'm told they are !good for you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top