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

Accessing PROPERTY

Status
Not open for further replies.

runemaster99

Technical User
Joined
Jul 26, 2006
Messages
2
Location
US
I have a VB .Net program that has:

Public Property DecryptedText() As String
Get
DecryptedText = Trim(prpDecryptedText)
End Get
Set(ByVal Value As String)
prpDecryptedText = Trim(Value)
End Set
End Property

I have also put the .Net COM wrapper around this.

I have a Fujitsu Windows COBOL (v8) and trying to address this property-
I can load and access the METHODs, but not the property.

I have tried:

MOVE ws-OriginalText
to DecryptedText of SecurityMod

and
INVOKE SecurityMod "set_DecryptedText"
USING OriginalText

but both give compiler errors-
does anyone know how to access COM PROPERTY in version 8 (non .Net)?

thanks in advance.
 
You might try setting the property 'SET DecryptedText of SecurityMod to ws-originaltext'
 
thanks- I have tried that last night- still did not work. I have sent the project to Fujitsu

thanks again.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top