Hi,
I'm trying to create a vb component to output strings, concatenating
various inputs which might be in the form of integers, strings etc.
However, I can't get any output for the simplest functionI can write.
If I comment out the assignment of the string to the output and
uncomment the integer, it works fine.
Is there something special I need to do to process strings?
Also, can I accept a stream list as an argument in a vb.net
component? By default it seems to process each indivdiual item of a
list in turn.
Thanks in advance,
Jon
Sub RunScript(ByVal X As Object, ByVal Y As Object, ByVal Z As
String)
''' <your code>
''A = 1 Commented Code
A = "JON"
''' </your code>
End Sub
End Class