Ver Mensaje Individual
  #7  
Antiguo 07-02-2010
FlacoNet FlacoNet is offline
Miembro
 
Registrado: jun 2003
Posts: 38
Reputación: 0
FlacoNet Va por buen camino
Thumbs up Resuelto

romfrost13 diste en el blanco.
Comento lo que hice para que quede documentado.

El codigo dfm del form que heredaba de Tform era el siguiente:
Tform->TF_ABMGRILLA1

Código:
object F_ABMGrilla1: TF_ABMGrilla1
  Left = 429
  Top = 215
  Width = 577
  Height = 368
  Caption = 'Administrador de TABLA'
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 13
  object b_BarraEstado: TStatusBar
    Left = 0
    Top = 319
...
lo que hice fue sustituir object por inherited como sigue:
Tform -> TF_ABM -> TF_ABMGRILLA1
Código:
inherited F_ABMGrilla1: TF_ABMGrilla1
  Left = 429
  Top = 215
  Width = 577
  Height = 368
  Caption = 'Administrador de TABLA'
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 13
  object b_BarraEstado: TStatusBar
    Left = 0
    Top = 319
...
y ahora sensillamente agrego un componente en TF_ABM y se propaga perfectamente en TF_ABMGRILLA1

Muchas gracias a todos,

Esteban

Última edición por FlacoNet fecha: 07-02-2010 a las 14:49:58. Razón: para que se entienda mejor el ejemplo final
Responder Con Cita