How is data saved
Posted: 2024-08-23 21:08:01
I added the following code to the end of the procedure TMainWindow.ThumbsViewerCellFocusedChange in main.pas:
if ((IdxItem >= 0) and (IdxItem < MovieList.Count)) then
LaunchProg(MovieList.Items[IdxItem].strFilePath);
I added the code so that the movie will be played when you click on the picture of the movie.
Everything worked fine until I started deleting entries in the catalog. How it remembers those entries is a mystery to me but it keeps the memories of the entries and becomes out of order.
Also, there is no way to change the background of the display page to black. The display page is owned by the app or something, according to google.
It says you can create your own page and let it be a child of the parent page or something but it sounds like alot of work and knowledge of delphi.
if ((IdxItem >= 0) and (IdxItem < MovieList.Count)) then
LaunchProg(MovieList.Items[IdxItem].strFilePath);
I added the code so that the movie will be played when you click on the picture of the movie.
Everything worked fine until I started deleting entries in the catalog. How it remembers those entries is a mystery to me but it keeps the memories of the entries and becomes out of order.
Also, there is no way to change the background of the display page to black. The display page is owned by the app or something, according to google.
It says you can create your own page and let it be a child of the parent page or something but it sounds like alot of work and knowledge of delphi.