Page 2 of 2

Re: Error en archivo de recursos

Posted: Fri Apr 26, 2013 7:53 pm
by srvet_claudio
Something similar happened to me, apparently there are conflicts in the compiler when using certain words. When I was developing Time Picker control, I defined a constant with beginning the word "Time" in a header file and gave me a compile error in the build library:
# translate TIMELONG24H => "HH:mm:ss"
If I change to:
# translate _TIMELONG24H => "HH:mm:ss"
worked well.
The compiler indicates an error in the source file ErrorSys.prg that used the function Time() of Harbour.
I do not know why!