hallo,
ich habe mir eine kleine tabelle erstellt und möchte nun über eine variable eine bestimmte zelle auslesen. die tabelle besteht aus einzelnen textfeldern.
mit folgendem code möchte ich eine zelle auslesen, klappt aber nicht so richtig:
Dim Feld(1 To 10, 1 To 7) As Variant
Dim i As Integer
Dim temp As Object
Public Property Get zellinhalt() As Variant
For i = 1 To 10
temp = „Text“ + Format(i + (i - 1) * 7) + „.text“
Feld(i, 1) = temp
Next i
zellinhalt = Feld
End Property