Undeclared compiler
-
I get this error when trying to compile my file:
'vsl' - undeclared identifier
'vtp' - undeclared identifierIt's for this part:
{
if (USE VIRTUAL STOPS) {
sl = vsl;
tp = vtp;
}What do I need to do to make it work?
-
Which project is this? I tested your newest 3 projects and they can be compiled.
-
I changed the name to CompileTest (easier to find).
It's when I have to add #property strict to the header. Then the error shows up. -
I fixed this
-
Great, like always. What did you do? Fix something in the main code or is it soemthing I have to look for next time?
-
I moved the definition of vsl and vtp up, before the loop. This is in a function called OrderCreate()