I am working on a C# - Winforms application and attempting to set the background colour of a read-only text box like so...
txtMyBox.BackColor = Color.FromNam
Try this instead of FromName
FromName
txtMyBox.BackColor = Color.Red;