Aug 12, 2004 #1 minckle Programmer Mar 17, 2004 142 GB Hi how do i return an Array from a function?? by usnig the following code i get the error below function Test: Array of TButtons; Error: Identifier expected but 'Array' found i want to run a function and get an array as the result
Hi how do i return an Array from a function?? by usnig the following code i get the error below function Test: Array of TButtons; Error: Identifier expected but 'Array' found i want to run a function and get an array as the result
Aug 12, 2004 #2 whosrdaddy Vendor Mar 11, 2003 4,231 BE Code: type TButtonArray = Array of TButtons; function test : TButtonArray; cheers -------------------------------------- What You See Is What You Get Upvote 0 Downvote
Code: type TButtonArray = Array of TButtons; function test : TButtonArray; cheers -------------------------------------- What You See Is What You Get
Aug 12, 2004 #3 whosrdaddy Vendor Mar 11, 2003 4,231 BE and it is "array of TButton" -------------------------------------- What You See Is What You Get Upvote 0 Downvote