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 Chriss Miller 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: ptrj
  • Content: Threads
  • Order by date
  1. ptrj

    jar files

    Hello, I made a program in cobol that i can run in the background, and that fix some things with a database and txt files. But now is the problem this: I have to make a button in my java program, that calls my cobol program. I heard that i have to make a jar file of my cobol program. Thats no...
  2. ptrj

    occurs if statement

    hellow I have a question about the if statement if you have a table: so i have this: 01 WoordTemp occurs 10 pic x(30). 01 WoordReal occurs 10 pic x(30). move "testing" to WoordTemp(1) move "testing" to WoordReal(2) if WoordTemp(1) = WoordReal(2) display "hellow world!" end-if why can't i do...
  3. ptrj

    creating a new mdb table

    hello, I want to create a table in cobol, can someone tell me what's wrong?... 000100 IDENTIFICATION DIVISION. 000200 PROGRAM-ID. cvsMaakTabel. ENVIRONMENT DIVISION. DATA DIVISION. working-storage section. 01 einde pic 9 value 0. 01 verder pic x...
  4. ptrj

    writing to a mdb table

    Hello, this is just a simple test code, but it doesnt work.. What's worong? 000100 IDENTIFICATION DIVISION. 000200 PROGRAM-ID. cvsSchrijf. ENVIRONMENT DIVISION. DATA DIVISION. file section. working-storage section. 01 einde pic 9 value 0...

Part and Inventory Search

Back
Top