type = Introspection.GetType(self)
methods = type.GetMethods
for i = 0 to Ubound(methods)
if methods(i).Name.lowercase = mname.Lowercase then
found=true
methods(i).Invoke (window1,params) *** type mismatch exception here ***
exit for i
end
next
I have been fighting this all afternoon. I’ve also been getting a nilobectexception on that line as well if I remove the params option.
Anyone have any ideas off the top of their head?
Thanks,
Phil