Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'**********************************************************************
' Visual Basic ActiveX Script
'************************************************************************
Function Main()
'Create Variables to hold the objects
Dim pkg
Dim conTextFile
' Set the pkg object to this dts package
set pkg = DTSGlobalVariables.Parent
'set the contextfile object to the text file connection
set conTextFile = pkg.Connections("Text File (Source)")
'set the filename as the datasource to the text file connection object
conTextFile.DataSource = DTSGlobalVariables("gv_EMPFileName").Value
Main = DTSTaskExecResult_Success
End Function
SELECT * FROM #PkgResult