Jump to content
Fivewin Brasil

visualização de imagens grandes


supi

Recommended Posts

Ola Supi

REDEFINE Image oImage2 ID 513 OF oFld:aDialogs[5] FILENAME f_Foto2 SCROLL ;

ON Left Click (AjustaZoom(oImage2,"A")) ; //"A" AUMENTAR

ON Right Click (AjustaZoom(oImage2,"R")) //"R" DIMINUIR(AjustaZoom(oImage2,"S")) // Tamanho maximo

*************************************//***************************************

FUNCTION AjustaZoom(oBmp,cAccion)

*************************************//***************************************

LOCAL nZoom := oBmp:Zoom()

DO CASE

Case cAccion == "S"

oBmp:lStretch := !oBmp:lStretch

oBmp:ScrollAdjust()

oBmp:Refresh( .T. )

Case cAccion == "R"

IF nZoom*10 > 1

oBmp:lStretch := .T.

nZoom:=nZoom-(0.10)

oBmp:Zoom(nZoom)

oBmp:Refresh()

oBmp:ScrollAdjust()

ENDIF

Case cAccion == "A"

oBmp:lStretch := .f.

nZoom:=nZoom+0.10

oBmp:Zoom(nZoom)

oBmp:Refresh()

oBmp:ScrollAdjust()

ENDCASE

RETURN NIL

Marcelo Ferro

Fwh25/xHarbour 99.3/SqlLib /xMate/WS

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...