Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I needs some help with this scenario. I have moved all my code from the app into multiple .qvs files for ease with change.
I need help with loading all the files and running them in order . so when the code inside load1 is complete the code in the next file ,load2 starts and so on.
the codes are long and there is a lot files. how could this be called?
Thanks
The script will run in the order you Include the script files. The script below will run in 1 before 2 before 3.
$(Include=lib://QvsFiles/Load1.qvs);
$(Include=lib://QvsFiles/Load2.qvs)
$(Include=lib://QvsFiles/Load3.qvs)
The script will run in the order you Include the script files. The script below will run in 1 before 2 before 3.
$(Include=lib://QvsFiles/Load1.qvs);
$(Include=lib://QvsFiles/Load2.qvs)
$(Include=lib://QvsFiles/Load3.qvs)
yes and it worked. thanks a lot @Vegar