04-11-2023, 05:17 PM
Petr
your original declaracion
passes a and b by reference or in C-speak as pointers, you need to specify Byval otherwise it's passed as reference
your original declaracion
Code: (Select All)
Function calc_plus% (a As Integer, b As Integer)
passes a and b by reference or in C-speak as pointers, you need to specify Byval otherwise it's passed as reference