Topic: CheckBox In Checked

Hello, good day to everyone!

I hope you can guide me, I have a project in MVD, where:
data entry Date, Name and waiting to be consulted, since the person is consulted
checked in checkbox and press consulted button and the information is moved from one table grid to another
My question is this
Is there a way that the checkbox is permanently selected?

Attached photo with example

Thank you very much for your time and support.

Best regards!

Post's attachments

Attachment icon Capture5.JPG 40.91 kb, 75 downloads since 2022-06-09 

Re: CheckBox In Checked

Hi,


  for i := 0 to Form1.TableGrid1.RowCount-1 do
    begin
     Form1.TableGrid1.Cell[0,i].AsBoolean := true;
    end;

Re: CheckBox In Checked

Hi

Thank you very much for your time and support