Ver Mensaje Individual
  #7  
Antiguo 08-07-2013
Avatar de nlsgarcia
[nlsgarcia] nlsgarcia is offline
Miembro Premium
 
Registrado: feb 2007
Ubicación: Caracas, Venezuela
Posts: 2.206
Reputación: 21
nlsgarcia Tiene un aura espectacularnlsgarcia Tiene un aura espectacular
feliz-58,

Cita:
Empezado por feliz-58
...¿Me puedes ayudar?...
Te comento:

1- Haz Doble Click al formulario (Archivo DFM) que tiene el control TBitBtn.

2- En el IDE de Delphi (El Delphi que tienes configurado por Default) aparecerá el código fuente del formulario, ejemplo:
Código Delphi [-]
 
object Form1: TForm1
  Left = 228
  Top = 122
  Caption = 'Form1'
  ClientHeight = 442
  ClientWidth = 680
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object BitBtn1: TBitBtn
    Left = 312
    Top = 232
    Width = 75
    Height = 25
    Caption = 'BitBtn1'
    DoubleBuffered = True
    ParentDoubleBuffered = False
    TabOrder = 0
  end
end

3- Remueve la propiedad DoubleBuffered y ParentDoubleBuffered del componente TBitBtn.

4- Salva el formulario.

5- Lo anterior también lo puedes realizar con un editor de texto o llamando el formulario desde el IDE de Delphi.

Espero sea útil

Nelson.
Responder Con Cita