
OpenProcess(&H100000, True, pID). What pID is?
My Access code opens report for printing:
DoCmd.OpenReport a, acViewNormal
I need to wait until this process ends. I open process and here is
the problem...
I try to use this:
OpenProcess(&H100000, True, pID)
I don't know what pID is in my case.
I have working pease of code in VB6 where:
pID = Shell("c:\test.bat", 0)
Thanks