[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Editor Widget in Down Frame

Status
Not open for further replies.
B

bfraser4070

Guest
Matt - Thanks for responding. Here is a brief program. This is a QAD .NetUI installation. It may be a problem with there methodology/technology. In Character mode it seems to work ok. In Desktop mode in QAD is does not. Thanks, Bob define variable yn as logical. def temp-table edidata field err_compl as logical field err_level as character field err_message as character . create edidata. assign err_compl = no err_level = "Error" err_message = "Record 1 - Is this is a lnong line that I hope will wrap as needed. If this does not wrap then the data is not long enough. Please make it longer at least 150 chars.". . create edidata. assign err_compl = no err_level = "Error" err_message = "Record 2 - Is this is a lnong line that I hope will wrap as needed. If this does not wrap then the data is not long enough. Please make it longer at least 150 chars.". . create edidata. assign err_compl = no err_level = "Error" err_message = "Record 3 - Is this is a lnong line that I hope will wrap as needed. If this does not wrap then the data is not long enough. Please make it longer at least 150 chars.". . create edidata. assign err_compl = no err_level = "Error" err_message = "Record 4 - Is this is a lnong line that I hope will wrap as needed. If this does not wrap then the data is not long enough. Please make it longer at least 150 chars.". . define frame b err_compl label "Solved" err_level label "Level" view-as editor inner-chars 8 inner-lines 1 max-chars 8 err_message label "Message" view-as editor size 130 by 2 with down size 160 by 50 at column 1 row 7 frame b. for each edidata: display err_compl err_level err_message with frame b. down 1 with frame b. end. message "Update the variable." update yn.

Continue reading...
 
Status
Not open for further replies.
Top