Link to home
Start Free TrialLog in
Avatar of Dranizz
Dranizz

asked on

Progress 4GL (I can give more points)

Thanks for clicking.

I'm trying to display a report on screen, but seems that when I display it on screen , the screen is reduce and I can't make it bigger, even with the mouse resize. What could I do?

Here is a bit of code with my frames.

      WITH FRAME qbf-report-1 DOWN COLUMN 1 WIDTH 200
      NO-ATTR-SPACE NO-VALIDATE NO-BOX USE-TEXT STREAM-IO NO-LABEL .

But the frame cant get bigger, why?
Avatar of rama_krishna580
rama_krishna580
Flag of United States of America image

Hi..

try putting all of the frame formatting (column-labels, width, etc) in the
display statement and get rid of the "DOWN" and the "FRAME qbf-report-1" since
the default frame for the FOR EACH block will automatically be a down frame.
You then can also remove the "DOWN WITH FRAME qbf-report-1." statement.

Past that - try removing some of the other FRAME qualifiers (i.e. "STREAM-IO")
one at a time to see if that fixes the problem.

Hope it helps...

R.K
ASKER CERTIFIED SOLUTION
Avatar of ADSaunders
ADSaunders

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Dranizz
Dranizz

ASKER

Thanks ADSaunders, thatMs exactly what I needed!