Topic: Send data from Form to FOrm without Grid

I have  form with some data - AutorName, BookName, boolean data and etc, all is read only. In this form I have EditButton that Show Another form, in wich I will Edit that data. Im trying some like this, but didnt work:

 procedure book_edit_OnClick  (Sender: string);
           begin

           editbook.Edit1 := book.edit1;

                    end;

Re: Send data from Form to FOrm without Grid

Okay, I solve the problem:

procedure book_edit_OnCLick(Sender: string; Action: string);
               begin
                editbook.Edit1.Text :=  book.Edit1.TExt;  
       
                editbook.Showmodal;
               end;