Aug 12, 2004 #1 minckle Programmer Joined Mar 17, 2004 Messages 142 Location 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 Joined Mar 11, 2003 Messages 4,231 Location 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 Joined Mar 11, 2003 Messages 4,231 Location BE and it is "array of TButton" -------------------------------------- What You See Is What You Get Upvote 0 Downvote