D
D
dandropov952018-07-13 13:07:54
Delphi
dandropov95, 2018-07-13 13:07:54

What can the DrawGrid component display at the same time?

Please provide correct answers. There is an assumption that only drawings ...
5b4879e3b5056806988876.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
Mercury13, 2018-07-13
@Mercury13

This component allows you to display everything that can be drawn programmatically: pictures, texts, lists, formulas, and so on. The form is not only drawing, but also the placement of an object with its window handle, so that disappears. "Calculations" is too general a term, but if you can figure out how to draw a diagram/formula of calculations, then you are welcome. And the rest rolls.

K
Konstantin Tsvetkov, 2018-07-13
@tsklab

The form... is dropped.
A form can be "embedded" using Parent .
For example (FilmDatailFM "embeddable" form):
...
    tsDatail: TTabSheet;
...
procedure TMainFM.tsDatailShow(Sender: TObject);
begin
  if FilmDatailFM = nil then begin
    FilmDatailFM := TFilmDatailFM.Create( Application );
    FilmDatailFM.Parent := tsDatail;
  end;
  FilmDatailFM.Show;
end;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question