On a network that has both 32 and 64 bit machines, I am having to edit the app.config files to deal with this:
<add key="ConnAccessDir" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files (x86)\SomeDir\SomeAccessDbDir\" />
which I have to manually change to this:
<add key="ConnAccessDir" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\SomeDir\SomeAccessDbDir\" />
on 32 bit machines.
Is there a way to do this with a conditional statement of some sort?
Thanks in advance for your help!
<add key="ConnAccessDir" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files (x86)\SomeDir\SomeAccessDbDir\" />
which I have to manually change to this:
<add key="ConnAccessDir" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\SomeDir\SomeAccessDbDir\" />
on 32 bit machines.
Is there a way to do this with a conditional statement of some sort?
Thanks in advance for your help!