In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.

Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.

Context menu browser

Xailer professional forum in English
Responder
Maarten Roos
Mensajes: 126
Registrado: Lun Mar 29, 2010 10:24 am

Context menu browser

Mensaje por Maarten Roos »

Did I mess up something, or did this happen with latest update?


Maarten Roos
Mensajes: 126
Registrado: Lun Mar 29, 2010 10:24 am

Context menu browser

Mensaje por Maarten Roos »

Found it.
BrwCol.prg
METHOD Create( oParent, lRefresh ) CLASS XBrwColumn
IF ::lCreated
RETURN Self
ENDIF
Super:Create( oParent )
::nWidth := MulDiv( ::nWidth, Application:nScale, 100 )
IF ! ::EventAssigned( "OnHeaderRClick" )
::OnHeaderRClick := {| o, nFlags , x, y | ::SetColumns( x, y ) }
ENDIF
IF ::oParent != Nil .AND. Empty( ::nIndex )
::oParent:AddCol( Self, lRefresh )
ENDIF
::OnCreate()
RETURN Self
Parameters of the onHeaderClick didn't match. Added the nFlags.
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9253
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

Context menu browser

Mensaje por ignacio »

Maarten Roos escribió el mar, 28 junio 2011 10:45Found it.
BrwCol.prg
METHOD Create( oParent, lRefresh ) CLASS XBrwColumn
IF ::lCreated
RETURN Self
ENDIF
Super:Create( oParent )
::nWidth := MulDiv( ::nWidth, Application:nScale, 100 )
IF ! ::EventAssigned( "OnHeaderRClick" )
::OnHeaderRClick := {| o, nFlags , x, y | ::SetColumns( x, y ) }
ENDIF
IF ::oParent != Nil .AND. Empty( ::nIndex )
::oParent:AddCol( Self, lRefresh )
ENDIF
::OnCreate()
RETURN Self
Parameters of the onHeaderClick didn't match. Added the nFlags.
Glad you found it. Sorry for the delay. It will be included on next autoupdate release.
Regards,
Ignacio Ortiz de Zúñiga
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Responder