Hi,
I have a script component and under input columns, I checked one of the fields I want to use inside the script. It's under the Input 0 in the hierarchical tree inside the inputs and outputs.
How do i use this inside the script?
cherriesh
dear friend,
Look at this example:
Code Snippet
Public Overrides Sub Input0_ProcessInputRow(ByVal Row As Input0Buffer)
...
Dim strLogin As String
strLogin = Row.LoginName
...
End Sub
LoginName is the input column!
Helped?
regards!
No comments:
Post a Comment