I want a function to return an array but I get a compiler error: 'Cannot assign to an array' The code is this:
Private Function función1()
Dim resultado(1) As Integer
resultado = función2(1,1) 'Se produce el error: no se puede asignar a una matriz'
End Function
Private Function función2(Referencia, Cantidad) As Integer()
Dim resultado(1) As Integer
resultado(0) = referencia * 2
resultado(1) = cantidad * 4
función2 = resultado
End Function
I am using access 2007