Activity for Augusto Manzano

  • Augusto Manzano Augusto Manzano posted a comment on discussion Open Discussion

    This would give the user the freedom to choose the language at any time without having to install the application more than once to have access to different languages.

  • Augusto Manzano Augusto Manzano posted a comment on discussion Open Discussion

    Hello. Thanks for contacting and responding. Taking advantage of the opportunity, it would be interesting to leave a configuration option that would allow the exchange of languages at any time.

  • Augusto Manzano Augusto Manzano modified a comment on discussion Open Discussion

    Hello, how to change the language in fmslogo after installation.

  • Augusto Manzano Augusto Manzano posted a comment on discussion Open Discussion

    how to change the language in fmslogo after installation

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Thx

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hello. Does GnuCOBOL support object-oriented programming? If so, where can I find information.

  • Augusto Manzano Augusto Manzano modified a comment on discussion Help getting started

    Hello, who can help. How to make GnuCOBOL something similar to the existing writing in Micro Focus COBOL? 03 line 01 column 47 pic x(20) using ws-name prompt character is "*" Thx

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hello, who can help. How to make GnuCOBOL something similar to the existing writing in Micro Focus COBOL? 03 line 01 column 47 pic x(20) using ws-name prompt character is "*" Thx

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hello, Vicent. Thank you very much for your time, assistance and clarification. It helped a lot. Here it is working.

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hi, thanks for the feedback. That's my question, too. I've been researching and looking for examples of use for days. And I can't find any information to clarify. I am learning COBOL on my own and sometimes I feel frustrated at not being able to see examples of using file access and manipulation techniques.

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hello again. I want to express my thanks to everyone for the help previously given to me. As you know, I am learning COBOL alone, reading books and manuals and taking some questions with you. Despite my efforts, there are times when I cannot resolve small details and I resort to some form of assistance. I am using the OpenCobolIDE 4.7.6 environment on Windows 10 with GnuCOBOL updated to version 3.1-rc1.0. The program to follow when in SEQUENTIAL mode reports success in recording the record in the...

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hi, Simon. Interesting!!!

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hello, Eugenio Di Lorenzo. Thank you for this guidance. I consulted the GnuCOBOL 2.0 manual and the INITIAL clause is included in PROGRAM-ID.

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    I will change this habit, even if it is not a bad thing. Thanks for the guidance and time dedicated to me. As I said, I'm new to COBOL, I'm still a long way from being a COBOLero, but with the help of friendly people to get there.

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hello, Simon Sobisch. There is no other reason. It is a personal custom that I have. I prefer to use local variables in any language I use or learn. But if this is not a good habit for COBOL I modify it and start using WORKING-STORAGE. I appreciate the guidance and note. In your experience, as I am new to COBOL, what better attitude?

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hello, Simon Sobisch. Thank you for your collaboration. Yes, I will do the update. At the moment, I still need to keep version 2.0 in use.

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hello Ralph. Thanks again. The program is not recursive. Local use is just a personal habit.

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    First of all thank you very much, Ralph Linkletter. So it is not possible to do this type of operation with SEQUENTIAL? Interesting!!! I may be mistaken, but this information is not very clear in the manuals.

  • Augusto Manzano Augusto Manzano posted a comment on discussion Help getting started

    Hello again. I'm having a problem that I'm not able to solve. I want to separate a data group by category. Reference: GnuCOBOL 2.0 with OpenCobolIDE 4.7.6. If the file contains the data: 88 - 150 - TICO 77 - 250 - BUD 99 - 300 - PAUL 88 - 350 - PETERSON 88 - 400 - JOSEPH 99 - 600 - BILL 88 - 650 - PETER 99 - 900 - AUDREY Should present: 77 - 250 - BUD 88 - 150 - TICO 88 - 350 - PETERSON 88 - 400 - JOSEPH 88 - 650 - PETER 99 - 300 - PAUL 99 - 600 - BILL 99 - 900 - AUDREY But it presents 88 - 400 -...

  • Augusto Manzano Augusto Manzano modified a comment on discussion GnuCOBOL

    Hello. László Erdős. I just finished testing the program and it is running perfectly. Thank you, my friend. Follows the base code of the factorial operation by tail IDENTIFICATION DIVISION. FUNCTION-ID. FATBASE. ENVIRONMENT DIVISION. CONFIGURATION SECTION. REPOSITORY. FUNCTION ALL INTRINSIC. DATA DIVISION. LOCAL-STORAGE SECTION. 77 LS-NUM PIC 99. 77 LS-PAR PIC 9(33). LINKAGE SECTION. 77 LK-NUM PIC 99. 77 LK-PAR PIC 9(33). 77 LK-FAT PIC 9(33). PROCEDURE DIVISION USING BY VALUE LK-NUM, LK-PAR RETURNING...

  • Augusto Manzano Augusto Manzano posted a comment on discussion GnuCOBOL

    Hello, Vincent. Thanks for indication. I have already downloaded the guides. They will certainly be very useful. Thank you.

  • Augusto Manzano Augusto Manzano posted a comment on discussion GnuCOBOL

    Hello. László Erdős. I just finished testing the program and it is running perfectly. Thank you, my friend. Follows the base code of the factorial operation by tail IDENTIFICATION DIVISION. FUNCTION-ID. FATBASE. ENVIRONMENT DIVISION. CONFIGURATION SECTION. REPOSITORY. FUNCTION ALL INTRINSIC. DATA DIVISION. LOCAL-STORAGE SECTION. 77 LS-NUM PIC 99. 77 LS-PAR PIC 9(33). LINKAGE SECTION. 77 LK-NUM PIC 99. 77 LK-PAR PIC 9(33). 77 LK-FAT PIC 9(33). PROCEDURE DIVISION USING BY VALUE LK-NUM, LK-PAR RETURNING...

  • Augusto Manzano Augusto Manzano posted a comment on discussion GnuCOBOL

    Hello. Thank you very much for your attention, dedication and time. I will implement the suggested changes and see how the program behaves. I decided to study COBOL on my own, in this period of COVID-19. And due to lack of affinity with some tricks of the language, one ends up going through some nightmares.

  • Augusto Manzano Augusto Manzano posted a comment on discussion GnuCOBOL

    Hello, Simon Sobisch, I'm still doing tests. As for the IF/THEN command, these are working properly. The problem is occurring with the COMPUTE commands. The lines with COMPUTE do not seem to be having the expected calculation effect. It seems that only the LS-NUM and LK-NUM variable have any value. The other variables are zeroed during processing. IF NUMVAL(LK-NUM) = 0 COMPUTE LK-FAT = NUMVAL(LK-PAR) ELSE COMPUTE LS-NUM = LK-NUM - 1 COMPUTE LS-PAR = LK-NUM * NUMVAL(LK-PAR) COMPUTE LK-FAT = NUMVAL(FATBASE(LS-NUM,...

  • Augusto Manzano Augusto Manzano posted a comment on discussion GnuCOBOL

    Hello, Simon Sobisch. Wow, you were very quick to respond, thank you. In the tests I performed if entering a value of 5 should result in 120, but it returns zero. 120 as a result of the factorial of 5. All the tests I am using use "-debug" and "-Wall" by default. The commented lines work, I just disabled to use the fatbase directly. As for “PIC 9 ANY NUMERIC”, now it's just a test. Then I make the correct adjustments. I spent today, now in Brazil it is 07:40 PM, trying to execute this program. I...

  • Augusto Manzano Augusto Manzano modified a comment on discussion GnuCOBOL

    Hello, I’m new to COBOL and GnuCOBOL (in Windows). I'm trying to write a recursive function with a tail, but the program does not return values it would be possible to help me. I wonder if what I want is possible in language? Follows function code IDENTIFICATION DIVISION. FUNCTION-ID. FATBASE. ENVIRONMENT DIVISION. CONFIGURATION SECTION. REPOSITORY. FUNCTION ALL INTRINSIC. DATA DIVISION. LOCAL-STORAGE SECTION. 77 LS-NUM PIC 9(2). 77 LS-PAR PIC 9(2). LINKAGE SECTION. 77 LK-NUM PIC 9(2). 77 LK-PAR...

  • Augusto Manzano Augusto Manzano posted a comment on discussion GnuCOBOL

    Hello, I’m new to COBOL and GnuCOBOL. I'm trying to write a recursive function with a tail, but the program does not return values it would be possible to help me. I wonder if what I want is possible in language? Follows function code IDENTIFICATION DIVISION. FUNCTION-ID. FATBASE. ENVIRONMENT DIVISION. CONFIGURATION SECTION. REPOSITORY. FUNCTION ALL INTRINSIC. DATA DIVISION. LOCAL-STORAGE SECTION. 77 LS-NUM PIC 9(2). 77 LS-PAR PIC 9(2). LINKAGE SECTION. 77 LK-NUM PIC 9(2). 77 LK-PAR PIC 9(2). 77...

1