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 strongm 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
  • Order by date
  1. ptrj

    jar files

    I have found some information, but i have to import mfcobol.* in my java. But my compiler doesnt know it, and I have the latest java update.. Does someone know where I can download the package mfcobol? thx
  2. 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...
  3. 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...
  4. ptrj

    creating a new mdb table

    antother example from the internet: EXEC SQL create table haaaaaaaa ( firstname varchar(20), lastname varchar(20), description varchar(70) ) end-exec. this is 100% true exect...
  5. 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...
  6. ptrj

    writing to a mdb table

    Aah I know what the problem is: in the perform loop I did always the same values >> the record key dbkode was all the time the same value. Now i have made a teller field and it works
  7. ptrj

    writing to a mdb table

    ok stupid mistake, but it stell writes only one record. Maby he override every time the first record. but why can someone help me pls?
  8. ptrj

    writing to a mdb table

    sorry, i did not see read only, now it works but he would ony add 1 record. How can i fix this, so that he add the 3 records in his perform? code: 000100 IDENTIFICATION DIVISION. 000200 PROGRAM-ID. cvsSchrijf. ENVIRONMENT DIVISION. DATA DIVISION. file section...
  9. ptrj

    writing to a mdb table

    My OS is Windows xp pro nl, My cobol compiler is percobol I use office 2003 pro nl >> access 2003 I think read only would not help.. i have to read anybody with solutions or examples?
  10. 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