Page 1 of 1

btnget con tget

PostPosted: Tue Jan 05, 2010 9:57 pm
by Francisco Horta
Con las modificaciones hechas a la clase tget agregando el ACTION , se puede seguir usando btnget con tget?
salu2
paco

Re: btnget con tget

PostPosted: Wed Jan 06, 2010 12:15 pm
by Patricio Avalos Aguirre
Hola

No se puede usar ya que al usar la btnget te saldrian además el boton (..)

deberas modificar la clase tget y btnget para compatibilizarlas..

Re: btnget con tget

PostPosted: Thu Jan 07, 2010 7:16 am
by Francisco Horta
Patricio,
no son nada bueno retocando clases no les entiendo mucho, pero intentare a ver si me sale
salu2
paco

Re: btnget con tget

PostPosted: Thu Jan 07, 2010 1:36 pm
by Patricio Avalos Aguirre
hola

en la clase tGet
Code: Select all  Expand view

CLASS TGet FROM TControl
..
..
DATA   lBtnGet INIT .f.
..
..
ENDCLASS


Code: Select all  Expand view

METHOD CreateButton() CLASS TGet

   local oThis := Self
..
..
   if ValType( ::bAction ) == "B" .and. Upper( ::ClassName() ) == "TGET" .and. !::lBtnGet

..
..
 


en la CLASE tBtnGet
Code: Select all  Expand view

METHOD New(..

  ..
  ..
  ::lBtnGet   := .t.

return ( Self )


Code: Select all  Expand view
METHOD redefine(..

  ..
  ..
  ::lBtnGet   := .t.

return ( Self )

 

Re: btnget con tget

PostPosted: Mon Jan 11, 2010 2:07 pm
by Francisco Horta
Gracias Patricio, hare pruebas
saludos
paco

Re: btnget con tget

PostPosted: Sat Jan 23, 2010 7:58 pm
by Francisco Horta
Patricio, con los cambios si que funciono
saludos
paco

Re: btnget con tget

PostPosted: Sun May 02, 2010 2:48 am
by carlos vargas
Gracias por la info, funciono al 100%.