How to get rid of "Ice.Lib.Framework.EpiTextBox.Enable" is obsolete warning in C# editor

Thanks everyone. Using all your responses, not only have I resolved it but I’ve learned a few new things. I’m listing them here for future users.

This warning/error can be shut off/ignored by putting just after your ‘using’ and before ‘public class Script’. Thanks to hasokeric for that tip.

#pragma warning disable 0618, 0162

I found that the All Code checkbox allowed me to see the read only code so I could identify which two were the culprits based on the line numbers of the warnings.
image

josecgomez guided to the Custom XML Editor.
image

I couldn’t find the Enabled property in the XML View, but could use Hally’s ‘Custom Properties’ tab to find the Enabled properties for the 2 textboxes, select them, and press delete.

Thanks for the support community!

2 Likes