|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How 2 refer to controls by a string variable name instead of indexitem index? A form contains 7 rich textbox controls labeled rtb1-rtb7. In VB6 I could use the following code to loop through each one but with .NET I'm having trouble doing something just as efficient. Is there not a way to refer to the control by its name or do I have to go find its index number in order to point to it? All help appreciated. For K = 1 To 7 strWhichRTB = "rtb" & K With Me(strWhichRTB) .Text = "whatever" End With Next K Hi,
check this link: http://dotnet.mvps.org/dotnet/faqs/?id=controlbynameindex&lang=en Greetz Peter -- Show quoteHide quoteProgramming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. (Rich Cook) "GY2" <2muchspam@wherever.com> schreef in bericht news:u9MGjliNGHA.3732@TK2MSFTNGP10.phx.gbl... > How do I refer to controls by a string variable name instead of by integer > item index? > > A form contains 7 rich textbox controls labeled rtb1-rtb7. In VB6 I could > use the following code to loop through each one but with .NET I'm having > trouble doing something just as efficient. > > Is there not a way to refer to the control by its name or do I have to go > find its index number in order to point to it? > > All help appreciated. > > > For K = 1 To 7 > strWhichRTB = "rtb" & K > With Me(strWhichRTB) > .Text = "whatever" > End With > Next K > > > Thanks a lot. This shows several ways to do it and I will probably go with
an array. Even so none of these methods are as clean as the old VB 6 way in my opinion. Show quoteHide quote "Peter Proost" <pproost@nospam.hotmail.com> wrote in message news:e$aB6piNGHA.740@TK2MSFTNGP12.phx.gbl... > Hi, > > check this link: > > http://dotnet.mvps.org/dotnet/faqs/?id=controlbynameindex&lang=en > > Greetz Peter > > -- > Programming today is a race between software engineers striving to build > bigger and better idiot-proof programs, and the Universe trying to produce > bigger and better idiots. So far, the Universe is winning. (Rich Cook) > > "GY2" <2muchspam@wherever.com> schreef in bericht > news:u9MGjliNGHA.3732@TK2MSFTNGP10.phx.gbl... >> How do I refer to controls by a string variable name instead of by >> integer >> item index? >> >> A form contains 7 rich textbox controls labeled rtb1-rtb7. In VB6 I could >> use the following code to loop through each one but with .NET I'm having >> trouble doing something just as efficient. >> >> Is there not a way to refer to the control by its name or do I have to go >> find its index number in order to point to it? >> >> All help appreciated. >> >> >> For K = 1 To 7 >> strWhichRTB = "rtb" & K >> With Me(strWhichRTB) >> .Text = "whatever" >> End With >> Next K >> >> >> > >
Best data structure?
empty GUID from string in VB2005 Changing CheckedState or Checked-value without raising ItemChecked-event Opacity Installing published application fails Create object through classname How to change "database and User" into CR9 Webservice MyApplication has encountered a problem... when not Administrator! Unable to open file What is the difference between VB.NET and ASP.NET?? |
|||||||||||||||||||||||