Hi everyone, As the subject line says, the object of the question would be. I'd like to make an constant array of a given record type and initialize it upon it's creation. Type TestRecord Is Record Enabled: Boolean; Name: String(60); Value: Integer; End Record; Constant TestArray(1..5): TestRecord = ( (True, "Test1", 1),: (False, "Test2", 2),: (False, "Test3", 4),: (False, "Test4", 8),: (True, "Test5", 16) ); Or something similar to that. Is that possible? and How? Thank you all :-). -- "To err is human. To really screw up, you need C++!" St�phane Richard "Ada World" Webmaster http://www.adaworld.com