Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
2k views

Standard way to remove spaces from input in cobol?

I'm just learning COBOL; I'm writing a program that simply echos back user input. I have defined a variable as: User-Input PIC X(30). Later when I ACCEPT User-Input, then DISPLAY User-Input " plus ...
4
votes
2answers
843 views

Windows GUI Programming with OpenCOBOL?

I'm completely new to COBOL, but I'd like to take a look at the different options for GUI programming on Windows. I don't really like Tcl/Tk, though. Is there some resource for developing a Windows ...
2
votes
1answer
93 views

mix cobol with c++/C

I tried to mix COBOL code with C++, but i not have success :( I see this topic in IBM forum: ...
1
vote
2answers
229 views

Simple program to calculate the area of triangle

I wonder, what do is wrong with my code because when I compile it the error in the following lines: hello.cob: In paragraph 'DADOS': hello.cob:25: Error: syntax error, unexpected '(', expecting WORD ...
1
vote
1answer
368 views

Dynamic READ …RECORD INVALID KEY not working properly in COBOL. How to fix it?

A Cobol program with file-control like so: SELECT D-FLAT-FILE ASSIGN TO DFLAT-FILE ORGANIZATION IS INDEXED ACCESS MODE IS SEQUENTIAL FILE STATUS IS RECORD-STAT RECORD KEY ...
0
votes
1answer
119 views

Are there any major differences between OpenCobol and NetExpress Microfocus Cobol?

I am taking a course in COBOL this semester and just got the syllabus, which requires the NetExpress Microfocus COBOL compiler. I'd rather use OpenCobol though, so I can stay on Linux or OS X. Are ...
0
votes
3answers
466 views

How do I prevent a Cobol program from going into an infinite loop if no match found on 2 flat files?

A Cobol program reads a record from a first flat file and compares it to the first record on a second flat file. However, because the first record from the first flat file does not match any records ...
0
votes
1answer
187 views

OpenCOBOL Complex ODO (OCCURS DEPENDING ON)

I am new to COBOL(and OpenCOBOL) and my question is about "complex-odo" (OCCURS...DEPENDING ON) in OpenCOBOL. I used 1.0 on following code ...... 01 W-PTDO-PROC-TBL. 05 W-PTDO-PROC-ENTRY ...