Question Can show the (horizital and vertical) Line on QAD Report?

qadvietnam

Member
Hi all

I do develop report on QAD Application.
I want to show to show the (horizital and vertical) Line on Report
Could anyone pls help us?

My Env:
Linux RH4Ent
Progress 10.0B05
MFG/PRO eB2.1 SP5
QAD 2007.1

Thanks
 

jchellap

Member
I used "fill" statements to get the line like ------.

E.g. display fill("-",50) format "x(50)". and I am not sure about vertical lines.
 

jchellap

Member
QAD version - QAD Enterprise Applications 2012 - Standard Edition eb2.1
Unix - HP-UX B.11.31 U
Progress version - OpenEdge Release 10.2B02
 

qadvietnam

Member
QAD version - QAD Enterprise Applications 2012 - Standard Edition eb2.1
Unix - HP-UX B.11.31 U
Progress version - OpenEdge Release 10.2B02
Hi,
How about vertical line? Have you already test?
Could you show the same report that you did for viewing?

Thanks,
QAD Vietnam
 

jchellap

Member
{mfdtitle.i}
{mfselbpr.i "printer" 132}
DISPLAY "Part Number" space(8) "Description1" space (13) "Description2" SKIP.
DISPLay FILL("-",65) FORMAT "X(65)".
for each pt_mstr where pt_part begins "a" no-lock:
disp pt_part pt_desc1 pt_desc2 with no-labels no-box.
end.
{mfrpexit.i}
{mfrtrail.i}.

I created a small routine for you. But now, I am doubting that you need something else. Is this what you need?

Sorry, I do not know about the vertical lines.
 
Top