You mean an array I guess

:
Code:
Var Min_Max_Size[3] = 0,5,10;
// to acces the index, just use the following code snippet:
Min_Max_Size[0] = 0
Min_Max_Size[1] = 5
Min_Max_Size[2] = 10
// and apply the required index element inside your code
While programming, you'll see you need large amounts of quantities of the same variable to be used inside a function ar sort like.
Arrays offer the best way to handle such data in an efficient way with a minimum of coding
Here's more info about arrays, just search for Ronny Funks arrays tutorial at the bottom of the tutorial section. But the mind the old syntax, I believe it's from the good old days of A4/A5.
Cheers
Frazzle