hi, i have a vb 6.0 applications, and i have module with a function where i send an array of textboxes as a parameter:
Code:
Public Function someFunc(txt as Variant) as Integer
txt.text="this is an example"
end Function
[code]
but when i get to the line "txt.Text" i get this error:
"Object does not support Method"
i only get the error at my clients computer, i have never gotten it myself, and its only sometimes, sometimes they just restart the application and the error is gone, does anybody have any idea of what it is?
i tried to send it byRef but it didnt work..
thank you very much
Eli