Ver Mensaje Individual
  #3  
Antiguo 09-07-2007
Avatar de Neftali [Germán.Estévez]
Neftali [Germán.Estévez] Neftali [Germán.Estévez] is offline
[becario]
 
Registrado: jul 2004
Ubicación: Barcelona - Espańa
Posts: 19.440
Reputación: 10
Neftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en brutoNeftali [Germán.Estévez] Es un diamante en bruto
Además revisa el ejemplo que hay en este hilo. Muestra cómo puedes guardar un form completo, incluyendo todos los componentes que tenga dentro de la forma:

Código:
object Form1: TForm1
  Left = 130
  Top = 56
  Width = 553
  Height = 481
  ActiveControl = Button3
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  Visible = True
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 312
    Top = 40
    Width = 79
    Height = 13
    Caption = 'Esto es un LAbel'
  end
  object Memo1: TMemo
    Left = 0
    Top = 192
    Width = 545
    Height = 262
    Align = alBottom
    ScrollBars = ssBoth
    TabOrder = 0
  end
  object Button1: TButton
    Left = 288
    Top = 8
    Width = 75
    Height = 25
    Caption = 'Button1'
    TabOrder = 1
  end
  object Button2: TButton
    Left = 96
    Top = 8
    Width = 113
    Height = 25
    Caption = 'Button To String'
    TabOrder = 2
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 96
    Top = 40
    Width = 113
    Height = 25
    Caption = 'Form To String'
    TabOrder = 3
    OnClick = Button3Click
  end
  object Button4: TButton
    Left = 96
    Top = 72
    Width = 113
    Height = 25
    Caption = 'Memo to String'
    TabOrder = 4
    OnClick = Button4Click
  end
  object CheckBox1: TCheckBox
    Left = 288
    Top = 80
    Width = 97
    Height = 17
    Caption = 'CheckBox1'
    TabOrder = 5
  end
end
__________________
Germán Estévez => Web/Blog
Guía de estilo, Guía alternativa
Utiliza TAG's en tus mensajes.
Contactar con el Clubdelphi

P.D: Más tiempo dedicado a la pregunta=Mejores respuestas.
Responder Con Cita