im making a function that should fill in an array of string
ive declared it as such:
Code:
function func (byref reminders() as string)
and i used it like this:
Code:
dim rem() as string
func(rem)
but the compiler says:
"type mismatch: array or user defined type expected"
what am i doing wrong here?