I'm trying to set the backColor of a text box like this:
txtCompanyName.BackColor = Drawing.Color.WhiteSmoke;
It doesn't like it because it wants me to add System in front like:
txtCompanyName.BackColor = System.Drawing.Color.WhiteSmoke;
Now that works, but it irritates me that I have to type System. I'm referencing System at the top of my code with using System; Shouldn't that do the trick so I don't have to type System in front of drawing, not sure why I still have to type System, anybody know?