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 Mike Lewis 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: *

  1. rustym

    Pointers in Cobol

    Thanks, Betty. That was right on the mark. Did you have any thoughts on the '114 Attempt to access item beyond bounds of memory' warning? Am I doing something wrong which is not allowing me to call the function in the external DLL? Rusty
  2. rustym

    Animating in Micro Focus Cobol

    I'm trying to step into the following Cobol module, which has been compiled to INT code. There are calls in this module which are to an external DLL. Note the code at the top of Working Storage and at the top of the Procedure Division to allow loading this DLL into memory. I have a comment in...
  3. rustym

    Pointers in Cobol

    Thanks Tom and Jack, your responses helped a lot! Tom, after following your suggestion, things seem to work better. I have compiled each project to INT code. (Did I tell you that I'm using Micro Focus Net Express?) However, when I try to step through my trigger program to the called program, I...
  4. rustym

    Pointers in Cobol

    I am making a small driver program to call another program. I just realized that I need to use pointers. I have been using the following variables: 01 CALLED-PROGRAM-ID PIC X(08) VALUE 'ACMPW067'. 01 RET-VAL PIC 9(02) VALUE 00. 01 IO-AREA PIC X(3200) VALUE...
  5. rustym

    Switch from OBJ code to INT

    Is there a fast way to toggle a project from developing OBJ code to INT code so that I can animate? I have DLL projects that I set at the beginning to go through OBJ code. I can't seem to find a convenient way to change over to INT code. What I have been doing is to create a new project in...
  6. rustym

    Animating Net Express

    I have a DLL project that I'd like to animate through. This project includes 3 external LIBs which are linked in to create the DLL. It seems you can't animate with OBJ code? I could not figure out how to switch to INT, so I copied all the code to a new directory and made another project with INT...
  7. rustym

    Building Micro Focus Cobol DLLs

    I am bringing existing DLL projects into the Micro Focus Net Express (Cobol) environment from an older Micro Focus Cobol 2 environment. I have assembled the projects, and each seem to compile and build fine. However, there seems to be a difference between DLLs built with the old system and my...
  8. rustym

    Adding LBR files to Net Express DLL Projects

    Thanks for the reply Clive. I looked into this a bit and found this: 2.3.1.22 File Finder (Mffinder) Utility to search multiple directories for a specified file or files. Available in: Workbench V3.4, Workbench V4.0. Net Express: Not available. Use in future: The dir command in Windows 95...
  9. rustym

    Adding LBR files to Net Express DLL Projects

    I need to add a Micro Focus Net Express-supplied file, cobintfn.obj, to a DLL project I am working on. I think this OBJ is in the Run-Time Library file cobcli.lbr. I have added this LBR to my project pool, but when I try to add the LBR to the DLL I get an 'information message box' saying...
  10. rustym

    CALL-CONVENTION 3 IS WINAPI

    Thanks, Stephen. Right now I'm not sure what system it is written for, but I have to port it over to the system we are using. We will be making a distributed app, using Micro Focus Cobol, maintaining the front end of Easel! It will be accessing IMS on our MVS mainframe. The module I'm studying...
  11. rustym

    CALL-CONVENTION 3 IS WINAPI

    Would someone explain to me the syntax of the following paragraph? It is in the Identification Division of the program I'm studying, and must have something to do with setting up to make calls to the Win API... SPECIAL-NAMES. CALL-CONVENTION 3 IS WINAPI

Part and Inventory Search

Back
Top