2

如何在屏幕上显示长字段。

对于每个客户:显示备注。结尾。

备注字段有 300 个字符要显示。display 语句给出了字段太长而无法显示的错误。

我已经尝试过表单和框架定义。使用宽度选项这不起作用。现在我尝试使用 300 x 2 的大小,但它显示了 80 个字符和滚动条以查看其余部分。

如何在不滚动等情况下在屏幕上完全显示该字段?

Tkx

4

2 回答 2

4

我假设“备注”字段是自由格式的文本,并且自动换行是可以的。

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.
于 2012-12-24T15:15:21.860 回答
3
   Display Remarks view-as editor size 78 by 15.

其中 78 是宽度,15 是行数。

如果您只想显示而无法更新:

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.
于 2013-09-17T11:09:47.143 回答