Transformar DFM para PAS, como?

Delphi

30/09/2005

Olá, alguém conhece algum programa, ou source, que eu possa transofrmar um DFM para PAS? tipo

[b:dc12faeb3f]DFM[/b:dc12faeb3f]
object Form1: TForm1
  Left = 192
  Top = 107
  Width = 696
  Height = 480
  Caption = ´Form1´
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = ´MS Sans Serif´
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 54
    Top = 42
    Width = 32
    Height = 13
    Caption = ´Label1´
  end
  object Button1: TButton
    Left = 120
    Top = 72
    Width = 75
    Height = 25
    Caption = ´Button1´
    TabOrder = 0
    OnClick = Button1Click
  end
  object DBGrid1: TDBGrid
    Left = 78
    Top = 150
    Width = 320
    Height = 120
    TabOrder = 1
    TitleFont.Charset = DEFAULT_CHARSET
    TitleFont.Color = clWindowText
    TitleFont.Height = -11
    TitleFont.Name = ´MS Sans Serif´
    TitleFont.Style = []
  end
  object BitBtn1: TBitBtn
    Left = 264
    Top = 54
    Width = 75
    Height = 25
    TabOrder = 2
    Kind = bkClose
  end
end


para

[b:dc12faeb3f]PAS[/b:dc12faeb3f]
var
  Form1: TForm
  Label1: TLabel;
begin
  Form1 := TForm.Create(Application);
  Label1 := TLabel.Create(Form1);

etc...



será que existe?


desde já agradeço


[b:dc12faeb3f][color=blue:dc12faeb3f]Tópico bloqueado pelo moderador Vinicius2K:[/color:dc12faeb3f][/b:dc12faeb3f] [b:dc12faeb3f][color=red:dc12faeb3f][list:dc12faeb3f][*:dc12faeb3f]Duplicidade: http://forum.clubedelphi.net/viewtopic.php?t=68086[/list:u:dc12faeb3f][/color:dc12faeb3f] Você pode devolver a visibilidade do seu tópico antigo utilizando o recurso de ´sobe´.[/b:dc12faeb3f]



Titanius

Titanius

Curtidas 0
POSTAR