I've loaded three library file dynamically using below code. I've overridden few function of A.vbs in B.vbs. So, i want to change the priority order from "A.vbs->B.vbs->C.vbs" to "B.vbs->A.vbs->C.vbs ."
How do i change the priority position of the library file (B.vbs) after executing below code. it's easy to do ExecuteFile "C:\B.vbs" before "C:\A.vbs" but i need to change the position of library based on user specified input position.
ExecuteFile "C:\A.vbs"
ExecuteFile "C:\B.vbs"
ExecuteFile "C:\C.vbs"
-Shreshtha