1
vote
Delphi Component Saving
A small enhancement to Wouter's suggestion:
type
TSmall = record
fName: string[30];
fAge: integer;
fID_Number: string[30];
end;
TRec = record
ArraySmal …
2
votes
Added the {APPTYPE CONSOLE} directive and now my application runs very slowly. Moving the mouse makes it run faster.
If you want an application to return an "error" code there is no need to make it a console application. You only need to set the ExitCode, e.g.
ExitCode := 10;
in …
1
vote
Delphi MDI Application Next Window menu item
I don't think you need to do anything - it is implicit in MDI apps (created with the new MDI app wizard in Delphi 2006 anyway).
It also "just works" in an app the was originally created in …
