Search found 78 matches: nlparam

Return to advanced search

Re: New FTDN July/Julio (FWH 23.07)

... 21.04, ahora solucionado. https://forums.fivetechsupport.com/viewtopic.php?f=3&t=43494 * Nuevo: Nueva función EnumWindows( bEnumWindow [,nLParam] ). Enumera todas las ventanas de nivel superior de la pantalla pasando el manejador de cada ventana, a su vez a un bloque de código donde se ...
by Antonio Linares
Sat Jul 29, 2023 9:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1084

New FTDN July/Julio (FWH 23.07)

... crashing since version 2104 now fixed. https://forums.fivetechsupport.com/viewtopic.php?f=3&t=43494 * New: function EnumWindows( bEnumWindow [,nLParam] ). Enumerates all top-level windows on the screen by passing the handle to each window, in turn, to a codeblock where the handle of each window ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1084

Re: calendar not run ( DBLCLICK)

METHOD HandleEvent( nMsg, nWParam, nLParam ) CLASS TCalendar

// TODO: Verify others messages

if nMsg==WM_LBUTTONUP
::Super:HandleEvent( nMsg, nWParam, nLParam )
endif
return nil



wich is the message for doubleclick ? ( wm_ ?)
by Silvio.Falconi
Sun May 21, 2023 8:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: calendar not run ( DBLCLICK)
Replies: 20
Views: 1953

Re: how to get "Userdef" EVENT for ACTION

... HandleEvent() method and add support for such event CLASS TMyWindow FROM TWindow   CLASSDATA lRegistered   METHOD HandleEvent( nMsg, nWParam, nLParam )   METHOD Notify( nIdCtrl, nPtrNMHDR ) // Common controls notificationsENDCLASSMETHOD HandleEvent( nMsg, nWParam, nLParam ) ...
by Jimmy
Thu Mar 30, 2023 6:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get "Userdef" EVENT for ACTION
Replies: 5
Views: 407

Re: how to get WM_POWERBROADCAST under Fivewin ?

hi Antonio,
Antonio Linares wrote:You have to inherit a new class from TWindow and redefine the Method HandleEvent( nMsg, nWParam, nLParam )

Ok, thx i will try it
by Jimmy
Sat Feb 04, 2023 8:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get WM_POWERBROADCAST under Fivewin ?
Replies: 7
Views: 523

Re: how to get WM_POWERBROADCAST under Fivewin ?

Dear Jimmy, You have to inherit a new class from TWindow and redefine the Method HandleEvent( nMsg, nWParam, nLParam ) CLASS TMyWindow FROM TWindow   CLASSDATA lRegistered      METHOD HandleEvent( nMsg, nWParam, nLParam ) ENDCLASSMETHOD HandleEvent( ...
by Antonio Linares
Sat Feb 04, 2023 7:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get WM_POWERBROADCAST under Fivewin ?
Replies: 7
Views: 523

Re: ENTER for TGrid From TControl

...  // ::nOption := nOption         //  use last from LVN_ITEMCHANGED         EVAL( ::bClick, ::nOption, Self )      ENDIF   ENDIF instead of nLParam i have to use nPtrNMHDR
by Jimmy
Thu Oct 20, 2022 3:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ENTER for TGrid From TControl
Replies: 2
Views: 226

ENTER for TGrid From TControl

... nIdCtrl, nPtrNMHDR ) CLASS TGridLOCAL nCode   := GetNMHDRCode( nPtrNMHDR )LOCAL nWParam := GetWParam(    nPtrNMHDR )LOCAL nLParam := GetLParam(    nPtrNMHDR )   CASE nCode == LVN_KEYDOWN      if GETGRIDVKEY(nLParam) = 13 but it crash here :( HB_FUNC ( ...
by Jimmy
Wed Oct 19, 2022 5:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ENTER for TGrid From TControl
Replies: 2
Views: 226

Re: Beep on ALT-key

Enrico, I will remember that we changed for a similar case
METHOD HandleEvent( nMsg, nWParam, nLParam ) CLASS TControl
case nMsg == WM_SYSCOMMAND
return ::SysCommand( nWParam, nLoWord( nLParam ), nHiWord( nLParam ) )
Best regards,
Otto
by Otto
Mon Oct 19, 2020 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Beep on ALT-key
Replies: 14
Views: 1381

Re: Paste values into Password Protected Get Objects

... PASSWORD IS SHOWN IF PASTED CLASS TPGet FROM TGET DATA CTRL_V AS CHARACTER METHOD KeyChar( nKey, nFlags ) METHOD HandleEvent( nMsg, nWParam, nLParam ) ENDCLASS ********************* METHOD KeyChar( nKey, nFlags ) CLASS TPGet SELF:CTRL_V := 'N' IF NKEY = K_CTRL_V //** NKEY=22 Ctrl-V PASTE ...
by don lowenstein
Tue Oct 15, 2019 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Paste values into Password Protected Get Objects
Replies: 6
Views: 1192

Re: How to Create Easy Report Designer Files ?

... reference 'NMSG' .\source\ereport.prg(5318) Warning W0001 Ambiguous reference 'SELF' .\source\ereport.prg(5318) Warning W0001 Ambiguous reference 'NLPARAM' .\source\ereport.prg(5318) Warning W0001 Ambiguous reference 'NLPARAM' .\source\ereport.prg(5318) Warning W0001 Ambiguous reference 'NWPARAM' ...
by Otto
Sun Jan 06, 2019 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Create Easy Report Designer Files ?
Replies: 35
Views: 7101

Re: How to Create Easy Report Designer Files ?

... reference 'NMSG' .\source\ereport.prg(5318) Warning W0001 Ambiguous reference 'SELF' .\source\ereport.prg(5318) Warning W0001 Ambiguous reference 'NLPARAM' .\source\ereport.prg(5318) Warning W0001 Ambiguous reference 'NLPARAM' .\source\ereport.prg(5318) Warning W0001 Ambiguous reference 'NWPARAM' ...
by Otto
Sat Jan 05, 2019 11:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Create Easy Report Designer Files ?
Replies: 35
Views: 7101

Re: Clase TTABLE insertar Registros en Tablas SQL Lexico XBASE

... Replace(cField,uValue) METHOD Commit(cWhere) METHOD AppendBlank() INLINE ::lAppend:=.T. METHOD InsertInto() METHOD HandleEvent(nMsg, nWParam, nLParam ) EXTERN ; WndHandleEvent( Self, nMsg, nWParam, nLParam ) METHOD End() ENDCLASS METHOD New( cSql,lLoad, oDataBase) CLASS Ttable DEFAULT lLoad:=.T. ...
by Compuin
Mon Nov 12, 2018 8:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TTABLE insertar Registros en Tablas SQL Lexico XBASE
Replies: 15
Views: 3693

Re: Error en la clase ssay

... ) Called from: .\_a_say_dinamico.prg => MAIN( 37 ) Luego entonces cambie el return de los metodos Return ::Super:HandleEvent ( nMsg, nWParam, nLParam ) y Return ::Super:Destroy () y ya FUNCIONA Gracias
by J. Ernesto
Mon Apr 02, 2018 10:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en la clase ssay Cambie el return y Funciona OK
Replies: 4
Views: 680

EN_UPDATE never called on TEdit

Hello, developing a program, I see that the that the bUpdate of TEdit is never called, I found the problem on METHOD Command( nWParam, nLParam ) CLASS TDialog: METHOD Command( nWParam, nLParam ) CLASS TDialog   local oWnd, nNotifyCode, nID, hWndCtl, oCtrl   nNotifyCode ...
by AntoninoP
Tue Dec 12, 2017 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EN_UPDATE never called on TEdit
Replies: 9
Views: 2277
Next

Return to advanced search