Multiple Forms in Delphi Part 3 - Form Events

preview_player
Показать описание
This video discuss the different events that trigger whenever a form is created or started and when a form is closed. Know the sequence of these events is important so you know when you can add code to the different events in order for them to trigger at the right time.

MultiForm Video Series

#MrLongEducation #Programming #MultipleForms
Рекомендации по теме
Комментарии
Автор

I like your video. They provide step by step on how one can create the forms.

altondewa
Автор

Thank you for doing these videos. I've forgotten most of the things I knew about Pascal / Borland Delphi since I last used it in the early 90s. These really make it easy and quick to get going again and help my kids with their assignments.

tahaan
Автор

How do i share integer variables between forms?

Anonymous-zndw
Автор

@Mr Long Education-IT & CAT do you know how to use onDestroy in a if statement i tried this procedure TForm4.Button1Click(Sender: TObject);
var
Label21: Tlabel;
Button1: Boolean;
i: integer;
onDestroy: Boolean;
begin
//
Form1.ProgressBar1.Visible := True;
Radar1 := TComboEdit(Sender);
if onDestroy then begin
Form1.ProgressBar1.Visible := False;
end;
end; but that didnt work

linuxuser