0
Hello. I need to create a View where I will use a parameter whose value will be provided at runtime (Delphi). Could someone give me an example? Grateful.
0
Hello. I need to create a View where I will use a parameter whose value will be provided at runtime (Delphi). Could someone give me an example? Grateful.
0
I don’t quite understand what you want but I will treat it as a simple project of Delphi, but basically to create a component at runtime is simple.
pnlTitle := TPanel.Create(frmPrincipal); // ou nil
pnlTitle.Parent := frmPrincipal; //pode ser o formulário ou um outro componente onde o painel estará dentro;
pnlTitle.Top := 0;
pnlTitle.Width := 184;
pnlTitle.Left := 0;
pnlTitle.Height := 23;
that’s it?
Browser other questions tagged firebird
You are not signed in. Login or sign up in order to post.