Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: erba
  • Order by date
  1. erba

    Netcobol for windows and licensed controls.

    It seems the only way for the future is to go to VS and Microfocus or Fujitsu for .NET products. This means that we are locked to MS platform (at least for the developpement). I hope Mono will be really compatible with .NET so, for the deployement, we are not locked into a single platform. There...
  2. erba

    Netcobol for windows and licensed controls.

    Glenn, Can you give me more information about this ? Are you talking about Eclipse IDE? Maybe Mono? Do you know a good compiler cobol on both linux and windows and producing CLR? Have you tried it? I like cobol and I like its indexed files (normally I work with database like oracle but I use...
  3. erba

    Netcobol for windows and licensed controls.

    Thanks Frederico, you are always nice. what I would suggest is to crete a list of 3rd Party controls that work fine on fjv7 so all, on this forum, can take advantage of shared information. Fujitsu would do it, but they do not, so it will be usefull if we can share information from each other...
  4. erba

    Netcobol for windows and licensed controls.

    NetCobol is really very poor at controls. It would be very nice if those using 3rd party OCX controls (requiring licensing or not) working properly on netcobol will post that information on this forum. Thanks to all Erminio
  5. erba

    Fujitsu PowerCobol compiler error

    Dantar, bawstl is right. One of the last thing you did, get mad the precompiler. take a look at the .cob file generated by the precompiler (you can find it in the dll folders inside your project); Last lines are usually where it became mad; look for something wrong. bye. Erminio
  6. erba

    ProCobol 9.2 and Fujitsu PowerCobol

    Great, Frederico, it works !!! You are really one of the best guys in the forum. Thank you very, very much. Erminio.
  7. erba

    ProCobol 9.2 and Fujitsu PowerCobol

    Hi all, Have someone of you tried using Oracle Procobol 9.2 with Fujitsu PowerCobol version 7? I am getting errors on good cobol code that I have never seen with procobol 8.05. Example : IDENTIFICATION DIVISION. PROGRAM-ID. MAIN-FORM. ENVIRONMENT DIVISION. CONFIGURATION SECTION...
  8. erba

    Embedding SQL in Cobol

    Give a look and eventially try ProCobol from Oracle. You must have it from oracle installation. Look for a programm called procob.exe or procob??.exe or something similar. You do not need to use ODBC. Its manual contain all examples you need.
  9. erba

    When does COBOL send printout to the Windows spooler?

    Dimandja is correct; when you close the file the spooler start sending to printer. You do not need step c and d : only repeat step b. You also do not need to close the program. What release of fujitsu have you? I have 7 but I always print using PowerForm : this is good because I am not concerned...
  10. erba

    AcuODBC

    I do not know about vb, but with oracle I use double pipe sign : || example : ADO_Sql = "SELECT FIELD1||FIELD2 FROM TABLE" You can also extract these two filds separately and then concatenate them with cobol. Regards Erminio
  11. erba

    How to define a PIC 9(18) COMP field in a datable

    Frederico, You are correct, but if cphill7292 is in an intel machine, he or she need to use COMP-5 instead of COMP or better, use the precompiler directive comp5=yes. From Pro*cobol 8.05 Precompiler Getting Started : "To avoid potential inconsistencies when calling routines in the Oracle...
  12. erba

    How to define a PIC 9(18) COMP field in a datable

    I suppose you are using oracle precompiler. In this case there no problem whith "-" character, but I always use COMP-3 data with numbers because using COMP, COMP-5, or DISPLAY data I often had strange problems. So try and see ... Erminio
  13. erba

    cobol key map

    VT100 emulation handle only F1-F4 function keys. If you need F5-F12 function keys you need emulate VT200.
  14. erba

    Fujitsu gives 'INV-DELMTR' error on input

    Read the SELECT statement in reference manual. You have to declare the file as BINARY SEQUENTIAL.
  15. erba

    Defining The Tab Character As A Boolean Or Hexadecimal Literal

    Try reading the file as BINARY SEQUENTIAL. This will not translate the TAB character with spaces. When you find the CR+LF sequence, you know you get a new record. hi
  16. erba

    Strange error message at compile time

    This is an editor message, not a compiler message.
  17. erba

    Record locking using NFS Unix files

    Are you sure you have not inconsistency between decimal point and comma? If you use the DECIMAL-POINT IS COMMA clause and you try to send to oracle a value 50.66 it's likely you receive that error. (You must send 50,66)
  18. erba

    HELP WITH SIMPLE COBOL PROGRAM

    Well, try this (I posted only relevant paragraphs) : 000-PREPARE-EMPLOYEE-REPORT. OPEN INPUT EMPLOYEE-FILE OUTPUT EMPLOYEE-LIST. MOVE "NO " TO SW-EOF-SWITCH. PERFORM 100-PRINT-COL-LINES . ** the following two lines are changed ...
  19. erba

    HELP WITH SIMPLE COBOL PROGRAM

    Your program seem correct. Check content on file EMPLOYEE-FILE. Are there all data you expected ?
  20. erba

    SED Question

    Sorry for my mistake; I sent my answer before I finished it. Of course you can do the same work with all files you need. If they are in a limited number and you know them in advance, you can simply duplicate the command lines for each file. hi

Part and Inventory Search

Back
Top