difference between Put and display command in progress

MDaanje

New Member
PUT statement: Sends the value of one or more expressions to an output destination other than the terminal.

DISPLAY statement: The same as PUT, but can also send the info to the terminal.

A main difference is the use of frames in DISPLAY and not in PUT.
 
hi MDaanje

My problem is I have a table with 3 records, if i use put it show 2 records on report and if i use display it show all 3 records on report. So what happen bt them?
 

mwm

New Member
You're probably missing the "SKIP" at the end of the "PUT".

You have to tell "PUT" exactly what you want it to do...
 

MDaanje

New Member
If you still haven't found the problem :eek:, maybe you can put some sample code in the thread. (TomBascom already suggested it)
 
Top