Assuming you would want to do this with the click of a button, place the Command button on your form. In that button's OnClick event, use this code (borrowed from another forum:
Code:
Dim strBatchName as String
strBatchName = "C:\SomeFile.bat"
Shell strBatchName
Assuming you would want to do this with the click of a button, place the Command button on your form. In that button's OnClick event, use this code (borrowed from another forum:
Code:
Dim strBatchName as String
strBatchName = "C:\SomeFile.bat"
Shell strBatchName