Progress display long field (frame/form)
如何在屏幕上显示长字段。
对于每个客户:
显示备注。
结束。
备注字段有 300 个字符要显示。 display 语句给出了一个错误,即字段太长而无法显示。
我已经尝试过表单和框架定义。使用宽度选项这不起作用。
现在我尝试使用 300 x 2 的大小,但它显示了 80 个字符和滚动条以查看其余部分。
如何在不滚动等情况下在屏幕上完全显示该字段?
Tkx
我假设"备注"字段是自由格式的文本,并且自动换行是可以的。
1 2 3 4 5 6 | define variable remarks as character no-undo. remarks ="This is a lot of text. Hopefully enough to prove the point. I don't really have much to say but I am kind of curious why all the down votes? It seems like a reasonable enough question to ask.". display remarks view-as editor inner-chars 60 inner-lines 10. |
1 | Display Remarks view-as editor size 78 by 15. |
其中 78 是宽度,15 是行数。
如果你只想显示而不能更新:
1 2 3 4 5 6 7 8 9 | def var remarks as char. form remarks view-as editor size 10 by 10 with frame f. remarks:read-only in frame f = true. update remarks with frame f. |