CODE:
-------------------------------------------
TYPE PlayerType
Names AS STRING * 12
G AS SINGLE
GS AS SINGLE
*******
*******
END TYPE
CALL A100NewRoster
CALL C100Search
SUB A100NewRoster
CLS
INPUT "Number of players: ", Players
DIM Player(1 TO Players) AS PlayerType
*******
*******
END SUB
SUB C100Search
********
********
END SUB
--------------------------------------------
How would i pass "DIM Player(1 TO Players) AS PlayerType" into SUB C100Search.
-------------------------------------------
TYPE PlayerType
Names AS STRING * 12
G AS SINGLE
GS AS SINGLE
*******
*******
END TYPE
CALL A100NewRoster
CALL C100Search
SUB A100NewRoster
CLS
INPUT "Number of players: ", Players
DIM Player(1 TO Players) AS PlayerType
*******
*******
END SUB
SUB C100Search
********
********
END SUB
--------------------------------------------
How would i pass "DIM Player(1 TO Players) AS PlayerType" into SUB C100Search.