Ich glaub, ich verstehe, was himitsu meint:
Delphi-Quellcode:
unit Unit1;
interface
uses {...};
type
TForm1 =
class(TForm)
{ ... }
end;
implementation
{$R Unit1.dfm} // <- here you go... Normalerweise steht da {$R *.dfm}.
end.
Zudem kannst du ja auch ein TForm ohne
DFM-Datei erzeugen, weshalb du dann die Komponenten selbst via Code justieren musst. Aber da gibts doch ein nettes Tool in GExperts soweit ich weiß. (
DFM-to-Code oder sowas...)
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)