SSIS variable display

  • I have been trying to write a script to display the value of a variable

    through a message box.

    I have used this code:

    MsgBox(Dts.Variables("StartDate").Value.ToString)

    But i am getting some exception raised.

  • Try

    Dts.Variables.Item("StartDate").Value.ToString()

    HTH

  • Did you figure it out?

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply