Search found 15 matches: nkeys

Return to advanced search

Página infinita ( o imagen infinita )

... y mucho código que limpiar y optimizar, pero ya es funcional 100%. Solo he tenido que incluir una DATA en la clase BITMAP y el METHOD MouseWheel( nKeys, nDelta, nXPos, nYPos ) CLASS TBitmap , que no estaba en mi versión 6.12 (gracias de nuevo Antonio si me lees) Creo que lo mejor sería convertirlo ...
by JESUS MARIN
Mon Dec 16, 2019 5:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Página infinita ( o imagen infinita )
Replies: 13
Views: 1710

Re: Disable Mouse Wheel on combobox controls

... wheel. In order to re-direct the mousewheel event to the dialog my combo-box scroll method looks like below. This works great. METHOD ComboWheel( nKeys, nDelta, nXPos, nYPos) CLASS TDComboBox LOCAL RETVAL, X LOCAL ODLG := SELF:OWND RETVAL := EVAL( ODLG:BMOUSEWHEEL, nKeys, nDelta, nXPos, nYPos ...
by don lowenstein
Tue Apr 07, 2015 8:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disable Mouse Wheel on combobox controls
Replies: 5
Views: 716

xBrowse ASC / VKey -viewer ( DOWNLOAD ) Upd. 3.2

... I created a xBrowse-solution. The different CHR's are seperated in groups and displayed inside a extra browser. I noticed, serching for a value, nKeys < 100 must be edit with a 0 like 063 Maybe You like it : Download : http://www.pflegeplus.com/fw_downloads/Ascview.zip http://www.pflegeplus.com/pictures/Ascview.jpg ...
by ukoenig
Fri May 24, 2013 12:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ASC / VKey -viewer ( DOWNLOAD ) Upd. 3.2
Replies: 11
Views: 5502

Re: xbrowse:keychar() lost some 2bytes nkeys on no modal dialog

Here is How to install Chinese word diaplay and input module in XP :
viewtopic.php?f=19&t=22705
by ShumingWang
Thu Oct 20, 2011 3:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse:keychar() lost some 2bytes nkeys on no modal dialog
Replies: 1
Views: 454

xbrowse:keychar() lost some 2bytes nkeys on no modal dialog

Hi, //1 Only for test lost 2 bytes word input. METHOD KeyChar( nKey, nFlags ) CLASS TXBrowse ... do case ... case nKey == VK_ESCAPE memowrit("aaa.txt",::ckeychar ) ::ckeychar:="" // a temparary data 'ckeychar' add to xbrowse class ... otherwise ::cKeyChar += Chr( nKey ) ... We op...
by ShumingWang
Sun Oct 09, 2011 3:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse:keychar() lost some 2bytes nkeys on no modal dialog
Replies: 1
Views: 454

Re: Contar registros

... Syntax ORDKEYCOUNT([<cOrder> | <nPosition>], [<cIndexFile>]) --> nKeys Arguments <cOrder> | <nPosition> is the name of the order or a number representing its position in the order list. Using the order ...
by Carlos Mora
Tue Jul 19, 2011 9:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Contar registros
Replies: 4
Views: 1111

Re: preview alpha 2

... ) METHOD HScroll( nType, lPage, nSteps ) METHOD SetOrg1( nX, nY ) METHOD SetOrg2( nX, nY ) METHOD CheckKey( nKey, nFlags ) METHOD CheckMouseWheel( nKeys, nDelta, nXPos, nYPos ) METHOD SetFactor( nValue ) METHOD PrintPage() METHOD PrintPrv( oDlg, nOption, nPageIni, nPageEnd ) // Esteban METHOD CambiaPrinter() ...
by dobfivewin
Thu Jan 14, 2010 10:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: preview alpha 2
Replies: 2
Views: 2033

Re: GetPrintDC()

... { |nRow, nCol, nKeyFlags| ; SetOrg1( nCol, nRow, nKeyFlags ) } oMeta1:bKeyDown := {|nKey,nFlags| CheckKey(nKey,nFlags)} oMeta1:bMouseWheel := { | nKeys, nDelta, nXPos, nYPos | ; CheckMouseWheel( nKeys, nDelta, nXPos, nYPos ) } #ifndef __XPP__ // XBPP bug. Warning: don't change this into #ifdef ...
by jbrita
Tue Nov 24, 2009 11:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: GetPrintDC()
Replies: 4
Views: 2708

Mousewheel and Wbrowse

... browse scrolls left or right instead This has been irritating me for a long time. The following seems to be the offending code: METHOD MouseWheel( nKeys, nDelta, nXPos, nYPos ) CLASS TWBrowse local aPos := { nYPos, nXPos } aPos := ScreenToClient( ::hWnd, aPos ) if aPos[ 1 ] > ::nHeight * 0.80 ...
by peterk
Wed Jul 22, 2009 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mousewheel and Wbrowse
Replies: 1
Views: 442

Darrell,

You have to modify fwh\source\classes\wbrowse.prg this way:

METHOD MouseWheel( nKeys, nDelta, nXPos, nYPos ) VIRTUAL

and comment its source code in the same PRG
by Antonio Linares
Mon Oct 27, 2008 8:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disable mouse wheel
Replies: 5
Views: 868

Darrell,

On what controls do you want to disable the mouse wheel support ?

You can disable it for any control, including this in the desired class:

METHOD MouseWheel( nKeys, nDelta, nXPos, nYPos ) VIRTUAL
by Antonio Linares
Mon Oct 27, 2008 8:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disable mouse wheel
Replies: 5
Views: 868

... ) METHOD LostFocus( hCtlFocus ) METHOD MButtonDown( nRow, nCol, nKeyFlags ) METHOD MouseMove( nRowPix, nColPix, nKeyFlags ) METHOD MouseWheel( nKeys, nDelta, nXPos, nYPos ) METHOD MoveColumn( nColPos, nNewPos ) METHOD nAtCol( nColPix, lActual ) METHOD nAtIcon( nRow, nCol ) METHOD nColCount() ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5483

... method in TGet. I think it should only work on Gets with spinner. Therefore I inserted the proof for lSpinner. Regards, Otto METHOD MouseWheel( nKeys, nDelta, nXPos, nYPos ) IF ::lSpinner=.t. If nDelta > 0 Self++ Else Self-- EndIf ENDIF Return Nil //---------------------------------------------------------//
by Otto
Fri May 30, 2008 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mouse wheel scrolling in get spinner?
Replies: 9
Views: 2180

... { |nRow, nCol, nKeyFlags| ; SetOrg1( nCol, nRow, nKeyFlags ) } oMeta1:bKeyDown := {|nKey,nFlags| CheckKey(nKey,nFlags)} oMeta1:bMouseWheel := { | nKeys, nDelta, nXPos, nYPos | ; CheckMouseWheel( nKeys, nDelta, nXPos, nYPos ) } #ifndef __XPP__ // XBPP bug. Warning: don't change this into #ifdef ...
by Manuel Valdenebro
Thu Feb 28, 2008 4:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: RPREVIEW modificada por Manuel Valdenebro ?
Replies: 8
Views: 3370

... ! EmptyAlias( ::cAlias ) .and. ; ! ::lIconView, ::DrawSelect(),) METHOD MouseMove( nRow, nCol, nKeyFlags ) #ifndef __CLIPPER__ METHOD MouseWheel( nKeys, nDelta, nXPos, nYPos ) #endif METHOD PageUp( nLines ) METHOD PageDown( nLines ) METHOD Paint() METHOD RecAdd() INLINE If( ::bAdd != nil, Eval( ...
by FWHISHOW
Wed Dec 12, 2007 4:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWBROWSE - bkeydown não aceita VK_UP?
Replies: 9
Views: 4191

Return to advanced search