Ver Mensaje Individual
  #8  
Antiguo 08-07-2013
feliz-58 feliz-58 is offline
Miembro
 
Registrado: sep 2012
Posts: 314
Reputación: 12
feliz-58 Va por buen camino
Cool

Cita:
Empezado por nlsgarcia Ver Mensaje
feliz-58,



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.
Excelente, pude resolverlo gracias
Responder Con Cita