Hello,

I have the below code that I am trying to get to call a SSIS package to run. It does not do anything. I have changed the SSIS package to run in 32 bit mode as well and that didn't do anything. Do I need to have a certain reference for using a shell command?

Private Sub CommandButton21_Click()

Dim command As String

command = "dtexec /f ""C:\Users\malbre1\Desktop\Package.dtsx"""

Call Shell(command, 0)

End Sub
I got this code from http://sqlage.blogspot.com/2013/07/s...-by-using.html

Thanks,
Mike