Search found 112 matches: bmmoved

Return to advanced search

Re: Recortar foto tomada con la camara web

... COLOR CLR_YELLOW WIDTH 3 ... oImg:bLClicked = { | nRow, nCol | If( nX1 == nil, ( nX1 := nRow, nY1 := nCol ), ( nX1 := nil, nX2 := nil ) ) } oImg:bMMoved = { | nRow, nCol, hDC | If( nX1 != nil,; ( oImg:Refresh(), SysRefresh(), WndBoxClr( hDC := oImg:GetDC(), nX1, nY1, nX2 := nRow, nY2 := nCol, ...
by Antonio Linares
Tue May 23, 2023 4:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Recortar foto tomada con la camara web
Replies: 7
Views: 475

Re: REDIMENSIONAR VENTANA MDI STYLE POPUP [SOLUCIONADO]

Me contesto yo mismo. oWnd:bLClicked = { | nRow, nCol | ...... } // activa la acción al pulsar boton izquierdo oWnd:bMMoved = { | nRow, nCol | ...... } // controla movimiento del raton oWnd:bLButtonUp = { | nRow, nCol | ........ } // al soltar o dejar de pulsar boton izquierdo Saludos ...
by karinha
Thu Mar 30, 2023 10:47 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: REDIMENSIONAR VENTANA MDI STYLE POPUP [SOLUCIONADO]
Replies: 5
Views: 490

Re: REDIMENSIONAR VENTANA MDI STYLE POPUP [SOLUCIONADO]

Me contesto yo mismo. oWnd:bLClicked = { | nRow, nCol | ...... } // activa la acción al pulsar boton izquierdo oWnd:bMMoved = { | nRow, nCol | ...... } // controla movimiento del raton oWnd:bLButtonUp = { | nRow, nCol | ........ } // al soltar o dejar de pulsar boton izquierdo Saludos ...
by JESUS MARIN
Thu Mar 30, 2023 4:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: REDIMENSIONAR VENTANA MDI STYLE POPUP [SOLUCIONADO]
Replies: 5
Views: 490

Re: Detect any activity of a window?

Dear Hakan,

You could use oWindow:bMMoved to check if the mouse was moved over the window
by Antonio Linares
Wed Dec 14, 2022 2:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Detect any activity of a window?
Replies: 4
Views: 347

signatur.prg How can I know if the user has signed or not?

... ( oSig:SaveToBmp( cFile ), oDlg:End() ) oSig:lWantClick := .T. oSig:bLButtonUp := { | x, y, z | DoDraw( hDC, y+1, x+1, lPaint := .F. ) } oSig:bMMoved := { | x, y, z | DoDraw( hDC, y, x , lPaint ) } oSig:bLClicked := { | x, y, z | DoDraw( hDC, y, x, lPaint := .T. ) } ACTIVATE DIALOG oDlg CENTER ...
by MGA
Fri Nov 11, 2022 3:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: signatur.prg How can I know if the user has signed or not?
Replies: 5
Views: 395

Re: Background color of the GET

Please try this:

SetGetColorFocus( CLR_RED )

oGet:bMMoved := { || oGet:SetFocus() }
by Antonio Linares
Tue Nov 09, 2021 11:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Background color of the GET
Replies: 3
Views: 322

Re: Printer class question - RESOLVED

... i, nArea, cAreaIni,,, .T. ) } oItems:bResized := {|| SetItemSize( i, nArea, cAreaIni ), MsgBarItem( i, nArea, cAreaIni,,, .T. ) } oItems:bMMoved := {| nRow, nCol, nFlags | MsgBarItem( i, nArea, cAreaIni, nRow, nCol ) } oItems:bRClicked := {| nRow, nCol, nFlags | oItems:SetFocus(), ; ItemPopupMenu( ...
by Silvio.Falconi
Sat Oct 24, 2020 10:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printer class question - RESOLVED
Replies: 41
Views: 3194

Re: Como realizar un proceso al pasar el mouse sobre un boton?

Erick,

oBtn:bMMoved = { | nRow, nCol, nFlags | MsgBeep() }
by Antonio Linares
Mon Oct 05, 2020 4:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como realizar un proceso al pasar el mouse sobre un boton?
Replies: 1
Views: 414

Re: Fast Report´s future

... i, nArea, cAreaIni,,, .T. ) } oItems:bResized := {|| SetItemSize( i, nArea, cAreaIni ), MsgBarItem( i, nArea, cAreaIni,,, .T. ) } oItems:bMMoved := {| nRow, nCol, nFlags | MsgBarItem( i, nArea, cAreaIni, nRow, nCol ) } oItems:bRClicked := {| nRow, nCol, nFlags | oItems:SetFocus(), ; ItemPopupMenu( ...
by Silvio.Falconi
Wed May 13, 2020 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fast Report´s future
Replies: 56
Views: 5919

Re: 3 problems with touch.prg from the fwh/samples

... you sample works but you have no hover bitmap. Also you have to move the mouse more than 2 cm away till MsgInfo is executed. If we add oImgBack:bMMoved = { || If( oImgBack:cBmpFile != "..\bitmaps\metro\Metro-Back-48hover.bmp",; ( oImgBack:LoadImage( nil, "..\bitmaps\metro\Metro-Back-48hover.bmp" ...
by Otto
Fri Nov 09, 2018 11:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 problems with touch.prg from the fwh/samples
Replies: 18
Views: 3782

Re: 3 problems with touch.prg from the fwh/samples

Dear Antonio,

I changed bMove to bMMoved as bMove errors out.
I can’t test with msgbeep as I work remote.
Therefor I use:

oImgBack:bMLeave = { || msginfo(1) }

I do not see the msg.
I use the original touch.prg of FiveTech.
Thank you and best regards
Otto
by Otto
Mon Oct 29, 2018 8:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 problems with touch.prg from the fwh/samples
Replies: 18
Views: 3782

Re: 3 problems with touch.prg from the fwh/samples

... Thank you in Advance Otto @ 20, 20 IMAGE oImgBack FILENAME "..\bitmaps\metro\back-black-48.png" OF oDlg ; PIXEL NOBORDER oImgBack:bMMoved = { || If( oImgBack:cBmpFile != "..\bitmaps\metro\Metro-Back-48hover.bmp",; ( oImgBack:LoadImage( nil, "..\bitmaps\metro\Metro-Back-48hover.bmp" ...
by Otto
Sun Oct 28, 2018 5:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 problems with touch.prg from the fwh/samples
Replies: 18
Views: 3782

Re: Nuevo FWH 18.01

... If the button is active when the mouse is over the text color is BLUE and when the mouse is away the text color is black. You may not need to use bMMoved block
by nageswaragunupudi
Mon Mar 05, 2018 2:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 24.02
Replies: 23
Views: 27422

help for a value

... ; ON CLICK ( nvalue := Val( SubStr( img_name, RAt( '_', img_name ) + 1 ) ), myfunction ()) &img_name:lTransparent := .T. &img_name:bMMoved :={ || ( nvalue := Val( SubStr( img_name, RAt( '_', img_name ) + 1 ) ), myfunction () ) } &img_name:bMLeave :={ || ( nvalu e := Val( SubStr( ...
by Silvio.Falconi
Fri Jan 26, 2018 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help for a value
Replies: 3
Views: 638

Re: crop an Image

I made
oImage:bLButtonUp := { | x, y, z, k | RectDotted( oImage:getDc(), x, y, z, k )}
oImage:bMMoved := { | x, y, z, k | RectDotted( oImage:getDc(), x, y, z, k )}
oImage:bLClicked := { | x, y, z, k | RectDotted( oImage:getDc(), x, y, z, k )}

but it not run
by Silvio.Falconi
Tue Oct 31, 2017 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: crop an Image
Replies: 28
Views: 4210
Next

Return to advanced search