FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour To Antonio: (solved)
Posts: 723
Joined: Tue Sep 04, 2007 08:45 AM
To Antonio: (solved)
Posted: Fri May 17, 2013 05:03 AM
Antonio:

How can I accomplish the same as:
Code (fw): Select all Collapse
COLUMN TITLE 'Name', 'ID No' DATA Name, Id_no                     SIZE 15

using:
Code (fw): Select all Collapse
oReport:Say( 5, Name, , 1 )


I'm trying to list one field below the other as the COLUMN command ... does. Thank you.
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: To Antonio:
Posted: Fri May 17, 2013 07:57 AM
Try this:

Code (fw): Select all Collapse
oReport:Say( 5, Name, , 1 )
oReport:StartLine()
oReport:EndLine()
oReport:Say( 5, Name, , 1 )


EMG
Posts: 723
Joined: Tue Sep 04, 2007 08:45 AM
Re: To Antonio: (solved)
Posted: Thu May 23, 2013 07:40 AM

Enrico:

Thank you.
oReport:Startline()
oReport:Say( 5, Name, , 1 )
oReport:EndLine()

Continue the discussion