Can anyone direct me to some sample code on how to run a DTS package from a Visual STudio 2005 VB.net application pass parameters to the DTS package ? I know the objects exist with
Imports Microsoft.SqlServer.Dts
but I have yet to figure out the correct property settings.
I also tried DTS run with
x = "DTSRun.exe /S" & """SERVER""" & " /N" & """PACKAGE NAME """ & " /AgvCountry_Code=" & """US"""
with no luck.
Thanks for any guidance.