
|
email this FAQ to a colleague
Q:
I am getting this error:
Microsoft VBScript compilation error '800a0414'
Cannot use parens when calling a Sub
/test/test.asp, line 17
myobj.movefile(fname, sfolder, tfolder)
---------------------------------------^
What is the problem?
A:
Use the same line and include a Call keyword. Like this:
Call myobj.movefile(fname, sfolder, tfolder)
- Cesar Labitan
|