Topic: Delphi IDE Wizard bug
SmartInspect -> Instrument Unit.. Wizard having issues with type clause in the middle of the code (see below), it will stop processing source code after type:
var
Form6: TForm6;
implementation
{$R *.dfm}
procedure TForm6.FormClick(Sender: TObject);
begin
SiMain.EnterMethod(lvDebug, Self, 'FormClick');
// empty
SiMain.LeaveMethod(lvDebug, Self, 'FormClick');
end;
[color=red]type
TMyForm = class(TForm);[/color]
procedure TForm6.FormCreate(Sender: TObject);
begin
// empty
end;