What are the features of the System.ImageList.hpp file?

Asked 2 years ago, Updated 2 years ago, 35 views

* I have posted the same question on Stack teratail.
https://teratail.com/questions/336788

We installed C++ Builder 2009 on Windows 10 to add functionality to the old project file.
The components to be added are to install the entire list of folders in the project called "component", but Windows 10 failed to install several installation errors, downloading the latest versions of each, but failed to set them up.

So we thought of a configuration similar to the development environment at the time and installed it on Windows XP in a virtual environment.
You can install all the components you want to add, and you have specified the library path in your preferences.
In this state, there was no error loading the project, but when I built it, there was an error in the following places:

#include<System.ImageList.hpp>

The file <System.ImageList.hpp> with this error was not found when searching.

You may still need components to add, but this file

is named <System.ImageList.hpp> What are the components?
Also, please let me know if you know where to get it.
Thank you for your cooperation.

c++

2022-09-30 17:39

1 Answers

The failed file contains a component that manages a collection of images of the same size, called TImageList.
The file name has changed because the version is different, but the official help is as follows:

Vcl.Controls.TImageList-RAD Studio API Documentation

I think this was a standard installation, so maybe the installation is not going well or the library path is not set properly.

Additional
I checked and found that there are 4 updates released in C++ Builder 2009.
Currently, the ISO image that registered users can download seems to have applied the above update, but if you installed it from the DVD at the time of purchase, the update may not have been applied.If the update is missing, the update may fix it.

The link on the page is broken, so I can't check the correction list, but it seems that it is possible to download the update.
The link to the release notes is as follows:

Delphi and C++ Builder 2009 Update 1 Release Notes
Release Notes: Delphi 2009 and C++ Builder 2009 Update 2
Release Notes: Delphi 2009 and C++ Builder 2009 Update 3, Update 4

Below is the link to the update download page.
You may not be able to download the download without registration as a product user.

Update 1 for RAD Studio 2009, Delphi 2009 and C++ Builder 2009
Update2 for RAD Studio 2009, Delphi 2009, and C++ Builder 2009
RAD Studio 2009 Update 3, Update 4 & Boost Update


2022-09-30 17:39

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.