Friday, March 9, 2012

how to use input column inside script component

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!

|||thanks a lot!!!

No comments:

Post a Comment