Hello everyone, i need some help. I am using Snap 7 (.net.cs) to communicate with a SIMATIC S7-300. I am writing a string and some other data into a DB. The other data (chars, reals, bytes) are all showing in the db after I send them. But the string stays empty. Also I don't receive any error. This is a simplified version of my Code: byte[] byteArray = new byte[13]; S7.SetCharsAt(byteArray, 0, "A"); string exampleString = "Zzzzzzzzzz"; S7.SetStringAt(byteArray, 1, 10, exampleString); S7Partner partner...