Article ID: 137316
Article Last Modified on 2/12/2000
SET CONSOLE OFFIf you want to see the information scroll on the screen, set the _Screen.Fontname property to a non-proportional (mono-spaced) font, such as Courier.
CLOSE ALL
SET SAFETY OFF
SET CONSOLE ON
USE C:\VFP\SAMPLES\DATA\customer.dbf
SET ALTERNATE TO test
SET ALTERNATE ON
GOTO TOP
DO WHILE !EOF()
? ALLTRIM(cust_id)+" "+ALLTRIM(company)+" "+ALLTRIM(contact)
SKIP
ENDDO
SET ALTERNATE OFF
CLOSE ALTERNATE
CLOSE DATABASES
SET SAFETY ON
_SCREEN.FontName="Arial"
oldfont=_SCREEN.FontName && This establishes the name
_SCREEN.FontName="Courier" && of the current font and then
&& sets the font to Courier.
_SCREEN.FontName=oldfont && This sets the font back to
&& the original setting.
Additional query words: VFoxWin
Keywords: KB137316