Du brauchst ein Array[1..26, 1..2] of String.
Du hast ja pro Buchstabe (26) nur 2 (nicht 26) Strings: Buchstabe und Zahl.
Du kannst dieses Array im Quelltext als Konstante deklarieren:
Delphi-Quellcode:
const
TestArray: array[1..26,1..2] of String = (('A','1'), ('B', '2'), ('C', '3'), ...);
Eine Array-Variable kannst du dynamisch (z.B. per Buttonklick o.ä.) nicht über diese Syntax füllen.
Da muss dann ne Schleife o.ä. her.
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."