A lot of my applications hold a variable called 'Point'.
For some reason PB9 seems to object to that, although Point isn't mentioned as a reserved word...
Did I miss something? (I get: "Duplicate name definition: POINT")
For some reason PB9 seems to object to that, although Point isn't mentioned as a reserved word...
Did I miss something? (I get: "Duplicate name definition: POINT")
Code:
#Compile Exe #Dim All Function PBMain() Local Point As Long End Function
Comment