Forum Discussion
tristaanogre
15 years agoEsteemed Contributor
It's not that TestComplete is not finding the file. TestComplete is just reporting what the script shell is telling you.
I just did a quick check and I should have caught this sooner.
You're using the & symbol for string concatenation. You should be using the + symbol.
Replace your line of code with
and see if that works.
I just did a quick check and I should have caught this sooner.
You're using the & symbol for string concatenation. You should be using the + symbol.
Replace your line of code with
Call ShellObj.Run(ComandoCriarTabela + "1.LGComponentes\SQLServer\1.sql -o " + DirLog + "1.txt", 1, true)
and see if that works.