Hi
I have 4 procedures in my vbscript code, i am calling them in the required order (like A,B,C,D etc...). But, before it completing the Procedure B, it started Procedure D and giving error stating that "path not found". Actually here, Procedure D is dependent on Procedure B completion, then only Procedure D will pass. how to overcome this problem, i tried with wscript.sleep and tried calling procedure D in the end of Procedure B, but it doesn't worked. Please help
ProcedureA(Build_Folder)
ProcedureB(Build_Folder)
call ProcedureC()
ProcedureD(Release_Folder)