Basically, I just want to make a progress meter that updates after all 4 of the following steps are done. I run a macro, then batch file, then 2 more macros. Since this process in total takes up to about 30 minutes, a progress bar would be great. I did a search and everything i found was timer related. Any thoughts or ideas? 
Code:
Private Sub Command120_Click()
DoCmd.RunMacro "Data Extraction"
Call ShellWait(Environ$("COMSPEC") & " /c x:\batfiles\getnewsourcefiles.bat", vbNormalFocus)
DoCmd.RunMacro "ImportData"
DoCmd.RunMacro "IntervalsUpdate"
End Sub