【发布时间】:2018-11-22 02:52:49
【问题描述】:
假设每个语句有 2 个,有 2 个不相关的表 第一个是
for each table-1
disp table-1.col1
table-1.col2.
end.
for each table-2
disp table-2.col1
table-2.col2.
end.
它像这样显示给我
table-1.col1 table-1.col2
table-1.col1 table-1.col2
table-1.col1 table-1.col2
table-2.col1 table-2.col2
table-2.col1 table-2.col2
table-2.col1 table-2.col2
我希望它像这样显示
---------- Table 1 --------- ---------- Table 2 --------
|table-1.col1 table-1.col2 | |table-2.col1 table-2.col2|
|table-1.col1 table-1.col2 | |table-2.col1 table-2.col2|
|table-1.col1 table-1.col2 | |table-2.col1 table-2.col2|
怎么做?
【问题讨论】:
标签: openedge progress-4gl