Hello,
I have an array arForm[1..15, 1..3]
I would like to find the position of an element in this array. (This array element is always in the 1st 'column' of my array.)
Suppose arForm[1,1] is 'Delphi'; arForm[2,1] is 'Inprise' and arForm[3,1] is 'Borland.
I want to be able to do something like IndexOf('Inprise') and get back 2 (from the above example)
Is this possible??
Clemens
I have an array arForm[1..15, 1..3]
I would like to find the position of an element in this array. (This array element is always in the 1st 'column' of my array.)
Suppose arForm[1,1] is 'Delphi'; arForm[2,1] is 'Inprise' and arForm[3,1] is 'Borland.
I want to be able to do something like IndexOf('Inprise') and get back 2 (from the above example)
Is this possible??
Clemens