thanks, i got it. the reason is simple. if you have a line like : If Temp => &H07F0 Then Temp = &H07F0 the => is wrong. It should be >=.
The compiler itself does not mind and accepts both >= and => but the parser used for the IDE is more strict and does not accept it. The result is that the code can not be parsed correctly, and then other code like subs are not recognized.
↧