Telling your program about modifications

Telling your program about modifications

Question:
An ordinary Stringgrid with 5 columns and 7 rowsThe user wants to add 1 or 2 more rows. So farI know how to write the code! But where do I putthe code so it knows that there are 1 or 2 or evenmore new rows added? Where do I store the new infoin the programm that now there should be e.g. 7rows instead, when it is reopened(in Create?)

Answer:
The easiest way to implement a component “remembering” what it contains is to use streams to write and read a persistent copy of the component to and from the disk. Here’s an example:

//This writes a component to diskprocedure TForm1.FormClose(Sender: TObject; var                            Action: TCloseAction);var  strm : TFileStream;begin  strm := TFileStream.Create('SGrid.DAT',           fmCreate);  strm.WriteComponent(StringGrid1);  strm.Free;end;//This reads a component from diskprocedure TForm1.FormCreate(Sender: TObject);var  strm : TFileStream;begin  if FileExists('SGrid.DAT') then begin    strm := TFileStream.Create('SGrid.DAT',              fmOpenRead);    strm.ReadComponent(StringGrid1);        strm.Free;    end;end;

The key procedures above are the Write- and ReadComponent procedures. They enable any component to write itself to a persistent state.Another way of doing this is to use the registry, but that’s a far more complicated method, and for simple apps, I usually don’t recommend doing it that way.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several