Subject. Swears at ')' expected but ',' found in line
ArrayBox : array of array of string = ( ( 'бла', /*тут курсор при компиляции*/ 'бла1' ), // 10 элементов ( /*почти те же самые строки*/ ), // 6 элементов ( /**/ ) // 8 элементов ); Subject. Swears at ')' expected but ',' found in line
ArrayBox : array of array of string = ( ( 'бла', /*тут курсор при компиляции*/ 'бла1' ), // 10 элементов ( /*почти те же самые строки*/ ), // 6 элементов ( /**/ ) // 8 элементов ); Dynamic arrays cannot be this way; you must first set the size of the array (SetLength). Then you can fill in the values. This can be done in the Initialization section.
Source: https://ru.stackoverflow.com/questions/637048/
All Articles