Hi
I have this code.
how can it makes an text field for each item and so put each in a diferente text field?Code:string[] cores; cores = new string[3]; cores[0] = "vermelho"; cores[1] = "verde"; cores[2] = "azul"; foreach (string cor in cores) { MessageBox.Show (cor); }
thanks




Reply With Quote