I'm trying to understand a system I currently working with. This following line calls a function from the component. There are 2 possibikities, but I don't know which one. Can anyone shed some light?
Thanks
This is the line in asp:
***
objGrantee.PartyName = trim(Request.form("txtGrantee"
.item
)
***
These are the 2 functions in the component:
***
Public Property Let PartyName(value As String)
If Not mflgEditing Then Err.Raise 383
If Len(value) > Len(mudtProps.PartyName) Then _
Err.Raise vbObjectError + 1001, "String value too long"
mudtProps.PartyName = UCase(Trim(value))
mflgDirty = True
End Property
Public Property Get PartyName() As String
PartyName = Trim(mudtProps.PartyName)
End Property
**
Again, thx for the help
Thanks
This is the line in asp:
***
objGrantee.PartyName = trim(Request.form("txtGrantee"
***
These are the 2 functions in the component:
***
Public Property Let PartyName(value As String)
If Not mflgEditing Then Err.Raise 383
If Len(value) > Len(mudtProps.PartyName) Then _
Err.Raise vbObjectError + 1001, "String value too long"
mudtProps.PartyName = UCase(Trim(value))
mflgDirty = True
End Property
Public Property Get PartyName() As String
PartyName = Trim(mudtProps.PartyName)
End Property
**
Again, thx for the help