I'm testing the Demos/Ide project, just compiling, starting it and playing with designing in Form2.
I have just noticed that if I put code between the begin..end; lines in Form2, it doesn't execute. like this
{$FORM TForm2, Unit2.sfm}
uses
Classes, Graphics, Controls, Forms, Dialogs, DB, ADODB;
begin
showmessage('here');
end;
Running the project does not display the dialog with 'here'. However, if I put the same line in Form1's begin..end, it does execute (as does the creation and display of Form2). Is this WAD?
(If I put the showmessage() call in eg a button event in Form2, it executes.)