Is it possible to read/write the value of an address directly through the Pcommserver.exe?
Now, I have a C# program where I am doing something like
string plcDisabledBitAddress = "Y:$0031" + plc + ",22";
pmacDevice.GetResponseEx(0, "m8008->" + plcDisabledBitAddress, false, out answer, out status);
pmacDevice.GetResponseEx(0, "m8008", false, out response, out status);
return response == "0";
which is not optimal for a number of reasons, mainly because m8008 could be used by the user without my program knowing.