and thanks ahead of time for any help!
I have compiled a program (which I did not write) and it works just fine on Mac's but when I try to execute the program on Win
Try adding the following flags during compilation to get more information printed out:
/traceback /check:all
check will do runtime error checking, traceback will tell the compiler to generate extra information when a severe error occurs at runtime.
check
traceback