Ok, sorry, your right, in C++ there will be a syntax error. Because C++ Builder, as opposed to Delphi, does not recognize so called "default" indexed properties. So, you have to write:
ElTimerPool1->Items->Items[0]->Enabled = true;
This is similar to all other VCL collections, for example Lines in TMemo:
Comments