CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Threaded View

  1. #1
    Join Date
    Sep 2009
    Posts
    15

    creating textfields

    Hi
    I have this code.


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

    thanks
    Last edited by HanneSThEGreaT; April 5th, 2011 at 01:29 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured