This compiles but is it legal? Does PB know how to do all this?
TYPE FuncVarType ' TYPE to store the variables
Pr1 AS SINGLE
Pn1 AS SINGLE
Pr2 AS SINGLE
i as long
j as long
END TYPE
GLOBAL NewVars AS FuncVarType, OldVars AS FuncVarType, BigVars AS FuncVarType
TYPE WrapperType
NewVars AS FuncVarType
OldVars AS FuncVarType
BigVars AS FuncVarType
END TYPE
GLOBAL WrapperArray() AS WrapperType ' Array to store the TYPE
------------------
Kind Regards
Mike
TYPE FuncVarType ' TYPE to store the variables
Pr1 AS SINGLE
Pn1 AS SINGLE
Pr2 AS SINGLE
i as long
j as long
END TYPE
GLOBAL NewVars AS FuncVarType, OldVars AS FuncVarType, BigVars AS FuncVarType
TYPE WrapperType
NewVars AS FuncVarType
OldVars AS FuncVarType
BigVars AS FuncVarType
END TYPE
GLOBAL WrapperArray() AS WrapperType ' Array to store the TYPE
------------------
Kind Regards
Mike
Comment