Como transformar .DFM pra .PAS ?

Delphi

15/09/2005

Olá amigos, alguém conhece algum sistema que transforme .DFM pra .PAS, ou seja, que transforme o codigo no arquivo DFM pro correspondente .PAS, exemplo:

  object Label1: TLabel
    Left = 126
    Top = 180
    Width = 32
    Height = 13
    Caption = ´Label1´
  end


para
var
 Label1: TLabel;
begin
 Label1 := TLabel.Create(Application);
 Label1.Left := 126;
etc..


desde já agradeço

[]s


Titanius

Titanius

Curtidas 0
POSTAR