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!

Displaying the contents of pointers in cobol... 1

Status
Not open for further replies.

XPPROGRAMMER

Programmer
Nov 15, 2004
44
US
Hello,

how do I display the content of a data-pointer and pointer
items in cobol? Case in point:

01 data-pointer typedef pointer.
01 LPTSTR typedef usage data-pointer.
01 Array is typedef.
03 CBsize UINT.
03 Uflags UINT.
03 lpsztext1 pointer.
03 uId UINT.
03 ToolRect RECT.
03 hinst HINSTANCE.
03 lpsztext2 LPTSTR.

if lpsztext1 and lpsztext2 have received a text string,
can I use the redefine clause?

thanks for the help.
 
In your manual take a look at SET ADDRESS OF

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top