I am building a program in VB.net which uses a program called Grapher (Golden Software) to make graphs.
On my computer (64 bit), it works perfectly, and the reference in my project is to Program Files (x86)\GoldenSoftware\...
However, in my colleague's computer (32 bit), it doesn't work. I think it is because of the way it is referenced in my project. On their computer, it is located in Program Files\GoldenSoftware\...
Is there a way I can:
- Change the reference path on runtime
- Add both references to my project and only use the one which exists
- Do something even better?
Thanks.