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

Threaded View

  1. #2
    Join Date
    Jan 2010
    Posts
    1,133

    Re: is the a C# equivalent to TextBox(i).Text =

    Collection element access?
    TextBox[i].Text = "whatever";

    The same syntax is used to declare an array.
    TextBox[] textBoxArray = new TextBox[count];
    Last edited by TheGreatCthulhu; July 10th, 2011 at 06:51 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