I am trying to understand as much as possible when writing code so I was hoping someone might be able to explain to me exactly what this is saying:
Code:
Private Sub Form_Load()
If Version <> Forms![Version]![Version subform].Form![Version2] Then
Dim stAppName As String
stAppName = "O:\WWP Shared\Databases\Install_files\Inventory_mgr.bat"
Call Shell(stAppName, 1)
DoCmd.Quit
End If
End Sub