C++

Adding headers to TListView programmatically

During today’s Delphi, C++Builder and RAD Studio 10 Seattle launch webinar, I got a question on how to add headers to TListView programmatically instead of using LiveBindings with a data source. Here is a quick code snippet showing how to programmatically add TListView headers. procedure TListViewHeaders.FormCreate(Sender: TObject); var Group, Item: Integer; begin for Group in [1..4]…
Read more
C++

C++ IDE code editor structure windows is blank on Windows 10 machine - workaround

Several developers reporting an issue where the C++Builder IDE code editor structure window was blank after they upgraded their Windows machine to Windows 10. The issue is reproducible on these scenarios: The user has a machine with a Windows version lower than Windows 10 (Windows 8.1, 8, 7,…) The user has RAD Studio installed (all versions are affected) The user upgrades to Windows 10 In…
Read more