Search found 127 matches: lreadonly

Return to advanced search

New FTDN April 2024 (FWH 24.04)

... etc. Fixed * TArrayData class ( source\classes\tarrdata.prg ) Bug fixes: relating to use of PValue() in xHarbour * TEdit control: New DATA lReadOnly: lReadOnly can be toggled during runtime also. * function RoundBox() new 11th parameter nPenStyle, default PS_SOLID Syntax: RoundBox( hDC, ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 0
Views: 45

Re: SetMultiSelectCol() on line

... yes allready saw it compile this test without :SetMultiSelectCol() you'll see this error Error description: Error BASE/1005 No exported variable: LREADONLY Args: [ 1] = U [ 2] = L .T. Stack Calls =========== Called from: xbmulsel.prg => _LREADONLY( 0 ) Called from: xbmulsel.prg => (b)MAIN( ...
by Silvio.Falconi
Tue Apr 23, 2024 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 188

Re: incremental search on Xbrowse

Hi Rao,
yes,
this is default in my Std management of table,

::oBrw:SetMultiSelectCol( )

I rarely disable it using the property :

::oBrw:oMultiSelCol:lReadOnly := .T.

TIA
by mauri.menabue
Wed Mar 27, 2024 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2012

Re: Como revertir ::nStyle = nOr( ::nStyle, ES_READONLY )

You can use the above code to Toggle ReadOnly status during runtime. This code is tested.

From the next version, we have provided DATA lReadOnly. We can toggle this at runtime with oEdit:lReadOnly := .T. or .F..
by nageswaragunupudi
Tue Mar 26, 2024 4:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como revertir ::nStyle = nOr( ::nStyle, ES_READONLY )
Replies: 5
Views: 1086

Control EDIT y readonly.

Hola a todos, Estoy usando un control EDIT y necesito poder bloquear su edición y según el caso permitir su edición. ¿Cómo lo hago? La Data lReadonly veo que no existe en este control para modificarla en tiempo de ejecución. Si que puedo deshabilitar el control con Disable(), pero entonces el ...
by FiveWiDi
Sun Mar 24, 2024 11:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Control EDIT y readonly.
Replies: 5
Views: 1011

Re: xbrowse No existe el metodo: LREADONLY

Estimado Antonio. Estimado Albeiro, Se ve bien, buen trabajo! Si siguen apareciendo GPFs esporadicamente mi consejo es que depures ese módulo en C++ desde Visual Studio: el debugger de Visual Studio te indicará el lugar exacto en donde se producen. Muchas Gracias por revisar el codigo. Cuando te ref...
by albeiroval
Mon Mar 04, 2024 7:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472

Re: xbrowse No existe el metodo: LREADONLY

Estimado Albeiro,

Se ve bien, buen trabajo!

Si siguen apareciendo GPFs esporadicamente mi consejo es que depures ese módulo en C++ desde Visual Studio:
el debugger de Visual Studio te indicará el lugar exacto en donde se producen.
by Antonio Linares
Mon Mar 04, 2024 6:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472

Re: xbrowse No existe el metodo: LREADONLY

Hola Antonio. Estimado Albeiro, Prueba a comentar estas dos líneas para solucionar los GPFs: // if ( userList.m_ArrayUsers ) // hb_xfree( userList.m_ArrayUsers ); No se ve que llames a hb_xgrab() en tu código, luego esa llamada a hb_xfree() está de más. Voy a hacer lo que me cometas. Igual voy a pos...
by albeiroval
Mon Mar 04, 2024 3:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472

Re: xbrowse No existe el metodo: LREADONLY

Estimado Albeiro,

Prueba a comentar estas dos líneas para solucionar los GPFs:
// if ( userList.m_ArrayUsers )
// hb_xfree( userList.m_ArrayUsers );

No se ve que llames a hb_xgrab() en tu código, luego esa llamada a hb_xfree() está de más.
by Antonio Linares
Mon Mar 04, 2024 5:19 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472

Re: xbrowse No existe el metodo: LREADONLY

Mr Rao. It is difficult for us to support modified classes. Please try your sample with xbrowse as released by FWH without any modifications and see if you get any error. If you still get error, then please provide a small sample which we can test at our end. I stopped using my modified xbrowse clas...
by albeiroval
Sun Mar 03, 2024 7:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472

Re: xbrowse No existe el metodo: LREADONLY

Hola Jesus. estas modificando aArray, pero como está definido como variable local y no lo devuelves a la función que lo llama, es posible que te dé un error. Como vez estoy pasando el parametro oBrw a la funcion y le asigno el valor del array en SetArray por lo tanto no es necesario devolver el arr...
by JoseAlvarez
Sun Mar 03, 2024 8:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472

Re: xbrowse No existe el metodo: LREADONLY

It is difficult for us to support modified classes.
Please try your sample with xbrowse as released by FWH without any modifications and see if you get any error.
If you still get error, then please provide a small sample which we can test at our end.
by nageswaragunupudi
Sun Mar 03, 2024 3:19 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472

Re: xbrowse No existe el metodo: LREADONLY

Hi Mr. Rao. Are you sure you are using XBrowse without any modifications? Yes, I use a modified xBrowse method to use incremental seek with Tdolphin, here is the code I use // EXTENSIONES DE CLASS#include "FiveWin.ch"#include "hbclass.ch"#include "reportexcel.ch"#ifndef...
by albeiroval
Sat Mar 02, 2024 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472

Re: xbrowse No existe el metodo: LREADONLY

Both TXbrowe and TXBrwColumn classes do have the DATA lReadOnly. This error: Called from:  => LREADONLY( 0 )Called from: .\source\classes\XBROWSE.PRG => TXBRWCOLUMN:VALUE( 13576 ) indicates that the object is NIL. Are you sure ...
by nageswaragunupudi
Sat Mar 02, 2024 2:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472

Re: xbrowse No existe el metodo: LREADONLY

Karina. REDEFINE BTNBMP oBtn[3] ID 302 OF oDlg; 2007; CENTER; NOROUND; PROMPT "Salir"; GRADIENT BtnGradRed() oBtn[3]:bAction = <|| lExit := .T. oDlg:End() SysRefresh() hb_gcAll(.T.) Return Nil > Albeiroval, intenta asi por favor: #Define aPubGrad {| lInvert | If( lInvert, ;...
by karinha
Sat Mar 02, 2024 1:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse No existe el metodo: LREADONLY
Replies: 16
Views: 472
Next

Return to advanced search