runemaster99
Technical User
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.
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.