citkid
Goto Top

textbox als array in VB.NET?

Hallo,
bin noch Anfänger im Umgang mit VB.NET.

In Visual Basic ist z. B. die Verwendung einer Textbox in einer Dimension zulässig. So kann man ganz einfach die Position mal eben verschieben:

for i=0 to 9
textbox1(i).left = 120
next i

Dabei ist es mir egal ob das nun eine Textbox, eine Schaltfläche o. ä. ist.
Aber wie löst man das in VB.net?

Ich hoffe nicht so:

textbox0.left = 120
textbox1.left = 120
textbox2.left = 120
...

Content-ID: 89810

Url: https://administrator.de/contentid/89810

Ausgedruckt am: 22.11.2024 um 20:11 Uhr

bastla
bastla 14.06.2008 um 12:51:13 Uhr
Goto Top
citkid
citkid 15.06.2008 um 09:03:33 Uhr
Goto Top
Genau das habe ich gesucht.

Danke
citkid