Code: Select all
oGet : oBtn : cTooltip := 'este es un mensaje'
Code: Select all
Error description: Error BASE/1005 No existe la variable de instancia: CTOOLTIP
Args:
[ 1] = U
[ 2] = C este es un mensaje
Saludos
Code: Select all
oGet : oBtn : cTooltip := 'este es un mensaje'
Code: Select all
Error description: Error BASE/1005 No existe la variable de instancia: CTOOLTIP
Args:
[ 1] = U
[ 2] = C este es un mensaje
Code: Select all
METHOD MouseMove
.../...
// ::CheckToolTip( nRow, nCol ) // Sustituir por
// Add this
if ::oBtn != nil
if IsOverWnd( ::oBtn:hWnd, nRow, nCol )
if !Empty( ::oBtn:cToolTip )
::oBtn:CheckToolTip( nRow, nCol )
else
::CheckToolTip( nRow, nCol ) // Modify
endif
else
::CheckToolTip( nRow, nCol ) // Modify
endif
else
::CheckToolTip( nRow, nCol ) // Modify
endif
.../...
Code: Select all
.../...
@ 10, 10 GET oGet VAR cVar ACTION ( MsgInfo( "Hola" ) )
oGet:cTooltip := "TOOLTIP GET" //o tambien // { "FiveTech Soft Get ", "MyToolTip", 3,CLR_WHITE,CLR_HBLUE }
oGet:oBtn:cTooltip := "TOOLTIP BOTON" // o tambien //{ "FiveTech Soft Boton ", "MyToolTip", 3,CLR_WHITE,CLR_HBLUE }
.../...
Code: Select all
Error description: Error BASE/1005 No existe la variable de instancia: CTOOLTIP
Args:
[ 1] = U
[ 2] = C este es un mensaje
Code: Select all
Redefine Get oGet[ 3 ] Var oSelf : nDocumento Id 105 Of oFdr : aDialogs[ 1 ] Picture "99999999" Font oFont Action( MsgRun( 'Consultando afip, espere por favor ...',, { || aDatos := ConsultarDni( oSelf : nDocumento ) } ), oSelf : MuestraLosDatos( aDatos, oGet, oSelf, oCbx[ 1 ] ) ) Bitmap 'internet2'
oGet[ 3 ] : oBtn : cTooltip := 'este es un mensaje'