Search found 41 matches: oeditget

Return to advanced search

Re: Error xbrowse PostMessage( ::oEditGet:hWnd, ...

Excelente, Mr Rao !!!

Eso era lo que buscaba, muchas gracias.
by albeiroval
Tue Sep 01, 2020 4:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FIXED !! Error xbrowse PostMessage( ::oEditGet:hWnd, ...
Replies: 2
Views: 513

Re: Error xbrowse PostMessage( ::oEditGet:hWnd, ...

It does not seem to be possible to use PopupBrowse with oEditGet of xbrowse. You may try something like this: #include "fivewin.ch"function XbrPopupBrowse()   local oDlg, oBrw, oEditGet   USE CUSTOMER   DEFINE ...
by nageswaragunupudi
Tue Sep 01, 2020 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FIXED !! Error xbrowse PostMessage( ::oEditGet:hWnd, ...
Replies: 2
Views: 513

FIXED !! Error xbrowse PostMessage( ::oEditGet:hWnd, ...

...    {"D0001", "Cola Cola Ligth"} }                            o:Edit( k )    PopupBrowse( aValue, o:oEditGet, Nil, 2 )    if o:oEditGet != Nil       o:oEditGet:End()    endif    Return Nil  Pero me genera el siguiente error, cuando presiono ...
by albeiroval
Mon Aug 31, 2020 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FIXED !! Error xbrowse PostMessage( ::oEditGet:hWnd, ...
Replies: 2
Views: 513

Re: New FTDN June 2020 (FWH 20.06)

... bPastBof y bPastEof Mira el nuevo ejemplo Balance.prg para comprobar el uso avanzado de bPastBof y bPastEof, * XBrowse: - En algún raro caso, oEditGet en la función EditGetKeyDown toma el valor nulo y provoca un error en tiempo de ejecución. Solucionado. viewtopic.php?f=3&t=38925 - Nueva ...
by Antonio Linares
Sat Jul 11, 2020 5:26 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2020 (FWH 20.06)
Replies: 1
Views: 1340

New FTDN June 2020 (FWH 20.06)

... * XBrowse: New DATA bPastBof See new example BALANCE.PRG to check advanced use of bPastBof and bPastEof * XBrowse: - In some rare cases, oEditGet in the function EditGetKeyDown is becoming nil and resulting in runtime error. fixed http://forums.fivetechsupport.com/viewtopic.php?f=3&t=38925 ...
by Antonio Linares
Thu Jul 09, 2020 9:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2020 (FWH 20.06)
Replies: 1
Views: 1340

Re: random problem in xBrowse Problem BASE/1004 There is no meth

The above error means that oCol:oEditGet is NIL when the function is called. But this is how this function is used   ::oEditGet:bKeyDown   := { | nKey | EditGetkeyDown( Self, nKey ) }  Logically the function ...
by nageswaragunupudi
Thu May 07, 2020 10:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: random problem in xBrowse Problem BASE/1004 There is no meth
Replies: 3
Views: 476

Re: Nuevo bug: IsKindOf

... problema está en bKeyDown de xBrowse. El error se produce en source\xbrowse.prg static function EditGetkeyDown( Self, nKey ) local lMultiGet := ::oEditGet:IsKindOf( "TMULTIGET" ) No en el nGet = AScan. Tengo una función que llamo en oBrowse:bKeyDown :={ | nKey | myfunction() ...
by MOISES
Wed Jan 22, 2020 9:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo bug: IsKindOf
Replies: 6
Views: 839

Re: Nuevo bug: IsKindOf

El problema está en source\xbrowse.prg

static function EditGetkeyDown( Self, nKey )

local lMultiGet := ::oEditGet:IsKindOf( "TMULTIGET" )
by MOISES
Mon Jan 20, 2020 5:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo bug: IsKindOf
Replies: 6
Views: 839

Re: SelectAll en xBrowse

oCol:bOnPreEdit := {|| oCol:oEditGet:SelectAll()}
by cmsoft
Sat Feb 23, 2019 1:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SelectAll en xBrowse
Replies: 2
Views: 427

Re: xBrowse Cell Edit

You need to modify xbrowse.prg. In the METHOD Edit() CLASS TXBrwColumn, search for "::oEditGet:SelectAll()" and comment out that line. I wonder what many programmers would prefer. The present default behavior of xbrowse or the new behavior preferred by you? ...
by nageswaragunupudi
Tue Sep 05, 2017 2:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Cell Edit
Replies: 8
Views: 1692

Re: How to init a "M" var?

... // "M" m1:=test20>a2 ? m1 // "C" In xbrowse--- xcolumn-- method edit() , if ValType( uValue ) $ 'CM' ... ::oEditGet := TMultiGet():New(.." The uvalue must be "M" , I should fund other way to solve this. TKS! Shuming Wang
by ShumingWang
Fri Jun 09, 2017 1:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to init a "M" var?
Replies: 3
Views: 570

xBrowse: grabar dato al salir de celda con el mouse

... lDirectAssign ) CLASS TXBrwColumn, de la siguiente forma:       case ::nEditType == EDIT_GET .or. ::nEditType >= EDIT_DATE         if ::oEditGet != nil            ::oEditGet:Assign()//<--- Aniadir esta linea. Resuelve el problema de salir de la edicion con el mouse. si se ...
by RSalazarU
Thu Aug 04, 2016 3:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse: grabar dato al salir de celda con el mouse
Replies: 3
Views: 560

Re: xBrowse intermittent "message not found: NIL:NLASTKEY error

... of different programmers. I understand. When I looked at the source I don't understand how the error could have happened because before it reach oEditGet:nLastkey it already passed oCol:oEditGet != nil It's a long time bug that I couldn't duplicate how it occur Yes. You are right. Same reason ...
by nageswaragunupudi
Thu May 12, 2016 5:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse intermittent "message not found: NIL:NLASTKEY error
Replies: 5
Views: 710

Re: xBrowse intermittent "message not found: NIL:NLASTKEY error

... that would be halpful I understand. When I looked at the source I don't understand how the error could have happened because before it reach oEditGet:nLastkey it already passed oCol:oEditGet != nil It's a long time bug that I couldn't duplicate how it occur
by hua
Thu May 12, 2016 4:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse intermittent "message not found: NIL:NLASTKEY error
Replies: 5
Views: 710
Next

Return to advanced search