Search found 100 matches: mousewheel

Return to advanced search

Re: xHarbour to Harbour

__clsModMsg( oXBrowse:ClassH, "MouseWheel", @XBr_MWhl() ) This option works I use the function FW_MakeYourBitmap( nTop, nLeft, |hdc, w, h| PaintOverlay(hDC, w, img) }) . When compiling under HARBOUR, I get the error of the PaintOverlay() ...
by Natter
Sat May 28, 2022 4:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour to Harbour
Replies: 21
Views: 1256

Re: xHarbour to Harbour

Please try this:

__clsModMsg( TXBrowse():ClassH, "MouseWheel", @XBr_MWhl() )

or

__clsModMsg( oXBrowse:ClassH, "MouseWheel", @XBr_MWhl() )
by Antonio Linares
Fri May 27, 2022 4:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour to Harbour
Replies: 21
Views: 1256

Re: xHarbour to Harbour

Override Method MouseWheel In Class TXBrowse With XBr_MWhl
Override Method Copy In Class TGet With Cpy_

here - METHOD error
................................................................

atail(a_sp[len(a_sp),2]):=aclone(Str_Arr(dim[st,2,zz], chr(166)))

here - () error
by Natter
Fri May 27, 2022 1:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour to Harbour
Replies: 21
Views: 1256

Xbrowse Error

... 9595 ) Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:FONTSIZE( 9573 ) Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:MOUSEWHEEL( 5488 ) Called from: => TWINDOW:HANDLEEVENT( 0 ) Called from: .\source\classes\CONTROL.PRG => TCONTROL:HANDLEEVENT( 1855 ) Called from: ...
by mauri.menabue
Wed Mar 30, 2022 9:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Error
Replies: 13
Views: 876

Re: galería de imágenes

...  METHOD GoUp()   METHOD GoDown()   METHOD ThumbPos( nPos )   METHOD MouseWheel()   METHOD VSetPos() INLINE ::oWnd:oVScroll:SetPos( -::nOffSet )   METHOD GoTop()  ...
by nageswaragunupudi
Wed Jan 06, 2021 8:52 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: galería de imágenes
Replies: 52
Views: 17066

Página infinita ( o imagen infinita )

... por pulir 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 ...
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: Show and scroll with Meta-file

I tested the mousewheel but there I noticed problems with zoom / unzoom
( it works only sometimes )

Please test again.
It works always.
Make sure the mouse pointer is inside the actual image area.
by nageswaragunupudi
Sat Jul 20, 2019 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show and scroll with Meta-file
Replies: 12
Views: 1020

Re: Show and scroll with Meta-file

... ( format JPG ) is showing transparent areas on the left upper corner http://www.pflegeplus.com/IMAGES/Ximage1.jpg I tested the mousewheel but there I noticed problems with zoom / unzoom ( it works only sometimes ) moving the image works. regards Uwe :D
by ukoenig
Sat Jul 20, 2019 8:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show and scroll with Meta-file
Replies: 12
Views: 1020

Re: XIMage Compatibility with Image

... then I wish Know if it is possible save the image files into different formats and wich, thanks Can I disable mousewheel (zoom) it the document is not an image file but only an Icon of document ?
by Silvio.Falconi
Mon Jan 08, 2018 5:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XIMage Compatibility with Image
Replies: 13
Views: 2011

Re: How to Disable TXIMAGE:MouseWheel to resize image?

Dear Navarro, Thanks once again for your help. Dear Dutch Add at method MouseWheel of class TXImage METHOD MouseWheel( nKeys, nDelta, nXPos, nYPos ) CLASS TXImage   local aPoint := { nYPos, nXPos }   if !Empty( ::bMouseWheel ) .and. ...
by dutch
Sun Sep 17, 2017 4:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Disable TXIMAGE:MouseWheel to resize image? *Solved*
Replies: 6
Views: 1022

Re: How to Disable TXIMAGE:MouseWheel to resize image?

Dear Mr.Rao,

Thank you so much. I would be better, if you can make TIMAGE or BITMAP to support IMAGE from FIELD.
by dutch
Sun Sep 17, 2017 4:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Disable TXIMAGE:MouseWheel to resize image? *Solved*
Replies: 6
Views: 1022

Re: How to Disable TXIMAGE:MouseWheel to resize image?

By default, the user can pan, zoom and rotate the image with mouse or by touch.
FWH 17.08 onwards you can disable this by setting oImage:nUserControl := 0
So please wait for a day or two.
by nageswaragunupudi
Sun Sep 17, 2017 3:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Disable TXIMAGE:MouseWheel to resize image? *Solved*
Replies: 6
Views: 1022

Re: How to Disable TXIMAGE:MouseWheel to resize image?

Dear Mr.Rao, I used BITMAP for many year but when I move BMP file to MySQL field (Mediumblob). I saw the TIMAGE has support it. Which class that does support image from field instead of TXIMAGE? I suggest you use TImage instead of TXImage. TXImage is intentionally made for giving user full control a...
by dutch
Sun Sep 17, 2017 1:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Disable TXIMAGE:MouseWheel to resize image? *Solved*
Replies: 6
Views: 1022

Re: How to Disable TXIMAGE:MouseWheel to resize image?

I suggest you use TImage instead of TXImage.
TXImage is intentionally made for giving user full control and therefore till now we did not provide for restricting any user actions.
by nageswaragunupudi
Sat Sep 16, 2017 8:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Disable TXIMAGE:MouseWheel to resize image? *Solved*
Replies: 6
Views: 1022

Re: How to Disable TXIMAGE:MouseWheel to resize image?

Dear Dutch Add at method MouseWheel of class TXImage METHOD MouseWheel( nKeys, nDelta, nXPos, nYPos ) CLASS TXImage   local aPoint := { nYPos, nXPos }   if !Empty( ::bMouseWheel ) .and. ValType( ...
by cnavarro
Sat Sep 16, 2017 7:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Disable TXIMAGE:MouseWheel to resize image? *Solved*
Replies: 6
Views: 1022
Next

Return to advanced search

cron