Oct 9, 2007 #1 avodavtyan Programmer Joined Sep 7, 2007 Messages 3 It's very interesting. is anyone know how I can go to next line in cobol (like c++ "\n").
Oct 9, 2007 #2 PHV MIS Joined Nov 8, 2002 Messages 53,708 Location FR In your manual check the BEFORE (or AFTER) keyword of the WRITE statement. Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
In your manual check the BEFORE (or AFTER) keyword of the WRITE statement. Hope This Helps, PH. FAQ219-2884 FAQ181-2886
Oct 10, 2007 Thread starter #3 avodavtyan Programmer Joined Sep 7, 2007 Messages 3 Thanks, but I need to go to new line in TextBox class in netCobol there is no need for WRITE statement. Upvote 0 Downvote
Thanks, but I need to go to new line in TextBox class in netCobol there is no need for WRITE statement.
Oct 17, 2007 #4 etom Programmer Joined Jul 2, 2003 Messages 82 Location US Try embedding a x'0D0A' in your text string. Something like the following: STRING LIST-TIME, X'0D0A', LIST-CALL, X'0D0A', LIST-NAME, ' ', LIST-CONTACT X'0D0A', LIST-DESC, ' ', List-Icon DELIMITED BY SIZE INTO CALL-STRING This works in Fujitsu Cobol. Upvote 0 Downvote
Try embedding a x'0D0A' in your text string. Something like the following: STRING LIST-TIME, X'0D0A', LIST-CALL, X'0D0A', LIST-NAME, ' ', LIST-CONTACT X'0D0A', LIST-DESC, ' ', List-Icon DELIMITED BY SIZE INTO CALL-STRING This works in Fujitsu Cobol.