Hello
We have done an application with Teechart v6, but now we have changed to Teechart 8.01 and when we attempt to compile the program there’s an error because it’s impossible to find the files GIFImage.hpp.
We’d like to know if the names of these files have changed in the new version or there are other files that include these ones.
Teechart 8.01 problems with GIFImage.hpp and NMFTP.hpp
Hi Jorge,
which BCB version are you using ? In case that you were using
Delphi2007 would be because includes a new unit GIFImg which is the same as GifImage unit, so the installers for D2007 and up don't include it.
which BCB version are you using ? In case that you were using
Delphi2007 would be because includes a new unit GIFImg which is the same as GifImage unit, so the installers for D2007 and up don't include it.
Pep Jorge
http://support.steema.com
http://support.steema.com
Hello Pep
Thank you for the last message, I've already solved the problem with GIFImage, but now I have another one.
We have this error:
E2015 Ambiguity between 'pmNone' and 'Forms::pmNone'
in the line
HPLX->Chart1->AllowPanning = pmNone;
We have been checking the help and we don’t know why there’s an error in this line, because pmNone is one of the values of the AllowPanning property, and on top of that with the last version (now we are using C++ builder 2007) we didn’t have this error.
Thank you for the last message, I've already solved the problem with GIFImage, but now I have another one.
We have this error:
E2015 Ambiguity between 'pmNone' and 'Forms::pmNone'
in the line
HPLX->Chart1->AllowPanning = pmNone;
We have been checking the help and we don’t know why there’s an error in this line, because pmNone is one of the values of the AllowPanning property, and on top of that with the last version (now we are using C++ builder 2007) we didn’t have this error.
Hi Jorge,
ok, I'm glad to hear you've solved it.
About your other problem, yes, it's a known issue, I think D2007 includes a new definition which uses the same syntax.
A solution could be to do this :
Chart1->AllowPanning = TPanningMode(0); // pmNone
ok, I'm glad to hear you've solved it.
About your other problem, yes, it's a known issue, I think D2007 includes a new definition which uses the same syntax.
A solution could be to do this :
Chart1->AllowPanning = TPanningMode(0); // pmNone
Pep Jorge
http://support.steema.com
http://support.steema.com