Sequence of Form_Activate() and Form_Load() in VB6

vb6

Solution

From KB138819:

The `Form_Load` event fires when a form is first loaded into memory.

and

[...] the `Activate` event is called every time a form becomes the active window, as long as the focus has moved between forms in the application.

Problem

In what sequence are the Form_Load() and the Form_Activate() functions called in VB6? What does "Activate" mean in the context of forms?

Original source