sanduro Member Licensed User Longtime User Apr 2, 2013 #1 I have a method in custom class. I need to call it in another method in the same class. Me.<method_name> neither this.<method_name> doesnt work. How to achieve it ? Juraj
I have a method in custom class. I need to call it in another method in the same class. Me.<method_name> neither this.<method_name> doesnt work. How to achieve it ? Juraj
sanduro Member Licensed User Longtime User Apr 2, 2013 #3 error anyway Sub setContext() end sub ...another method setContext() getting error Error description: Array expected. Occurred on line: 58 setContext() Word: ( Upvote 0
error anyway Sub setContext() end sub ...another method setContext() getting error Error description: Array expected. Occurred on line: 58 setContext() Word: (
agraham Expert Licensed User Longtime User Apr 2, 2013 #4 Don't add empty parentheses to Subs with no parameters. Upvote 0
sanduro Member Licensed User Longtime User Apr 2, 2013 #5 Thank you it works! I am coming from C-world. San Upvote 0