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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ICL DTS and COBOL - using COM

Status
Not open for further replies.

tonyc1

Programmer
Jan 10, 2002
16
GB
Anyone know about ICL DTS software?
I am trying to access DTS using COM in COBOL
Also is it possible to make a dll (not made in cobol) into a lib file that can be linked in Cobol?
 
Hi Tony

If you are using Powercobol, you can link a dll file into the project, loading and declaring a .lib resource for the dll you want to use.

If you haven't the .lib to call the dll, you can refer to it putting on the COBOL85.CBR file an ENTRY with the name you will use in your applications then the complete pathname of the dll file.

Ex.
[ENTRY]
myDll=C:\mypc\mylibrary.DLL

Hope in this help.

Gianni
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top