I write a string that by format RGB and i want use this string for forcolor textbox? I cut this string to 4 string that values are like(ff,00,12,ff) in visual studio this code run but show error that
values not current format
textbox.ForeColor=
Color.FromArgb(Convert.ToInt32(a[0]),
Convert.ToInt32(a[1]),
Convert.ToInt32(a[2]),
Convert.ToInt32(a[3]));
please help me about this.