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!

Need Cobol Equivalent to this VBA script ??????

Status
Not open for further replies.

peteprog

Programmer
Mar 14, 2001
1
GB
Set PObject = CreateObject("PV.PVS")

I have managed to emulate the above VBA in cobol using the following

class-control.

PV32 is class "$ole$PV.PVS".
.....

01 PVSession object reference.
......
invoke PV32 "new" returning PVSession.

now I need to logon and need to code a cobol equivalent to

VBA Call PObject.Login("admin","admin")

Any suggestions - Regards - Cheers Peteprog
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top