By using expertatexcel.com you agree to our cookie policy, We and our partners operate globally and use cookies, for multiple purposes

expertatexcel.com

 


Install Software in VBA

We had a case where the software didn't run if the user didn't have ODBC Drivers installed


Sub InstallSoftware()

Dim oShell As Object

Set oShell = CreateObject("WScript.Shell")

oShell.Run sFile, 6, True 'was P:\username\mysql-connector-odbc-3.51.12-win32.msi

Set oShell = Nothing

End Sub