Search found 79 matches: moveto

Return to advanced search

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

... INIT ( hDC := GetDC( oSig:hWnd ) ) ; VALID ( ReleaseDC( oSig:hWnd, hDC ), .T. ) return nil static function DoDraw( hDc, x, y, lPaint ) if ! lPaint MoveTo( hDC, x, y ) else LineTo( hDc, x, y ) endIf return nil
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: oPopUp in class btnbmp

... + If( ::oWnd:l3D, 3, 1 ) + ::nWide_P + 1 Line 1062 //if nCol >= ::nWidth() - 13 if nCol >= ::nWidth() - ::nWide_P Line 2079 //MoveTo( hDC, nWidth - 12 + If( ::lPressed, 1, 0 ), 1 ) //LineTo( hDC, nWidth - 12 + If( ::lPressed, 1, 0 ), nHeight - 1 ) MoveTo( hDC, nWidth - ::nWide_P ...
by Silvio.Falconi
Mon Oct 17, 2022 7:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oPopUp in class btnbmp
Replies: 15
Views: 758

Re: oPopUp in class btnbmp

... + If( ::oWnd:l3D, 3, 1 ) + ::nWide_P + 1 Line 1062 //if nCol >= ::nWidth() - 13 if nCol >= ::nWidth() - ::nWide_P Line 2079 //MoveTo( hDC, nWidth - 12 + If( ::lPressed, 1, 0 ), 1 ) //LineTo( hDC, nWidth - 12 + If( ::lPressed, 1, 0 ), nHeight - 1 ) MoveTo( hDC, nWidth - ::nWide_P ...
by Maurizio
Mon Oct 17, 2022 6:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oPopUp in class btnbmp
Replies: 15
Views: 758

Re: New FTDN May/Mayo 2019 (FWH 19.05)

... cTableName ) o oTable := ORM_Table():New( oConnection, cTableName ) Métodos: Navegación: First(), Last(), Next(), Prev(), Move(n), MoveTo( n ) Otros: Select( aFields ) Where( Field, [cOperator], Value ) OrderBy( field ) Get( [field ) XBrowse( [fieldlist] ) Edit() Sum(field), Max(field), ...
by Antonio Linares
Fri Jun 07, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3158

New FTDN May/Mayo 2019 (FWH 19.05)

... cTableName ) or oTable := ORM_Table():New( oConnection, cTableName ) Methods: Navigation: First(), Last(), Next(), Prev(), Move(n), MoveTo( n ) Others: Select( aFields ) Where( Field, [cOperator], Value ) OrderBy( field ) Get( [field ) XBrowse( [fieldlist] ) Edit() Sum(field), Max(field), ...
by Antonio Linares
Mon Jun 03, 2019 12:54 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3158

Re: Insertar linea en ticket (RESULETO)

... entre los PRG a compilar. METHOD CmLine( nTop, nLeft, nBottom, nRight, oPen ) INLINE ; (::Cmtr2Pix(@nTop, @nLeft), ::Cmtr2Pix(@nBottom, @nRight),; MoveTo( ::hDCOut, nLeft, nTop ),; LineTo( ::hDCOut, nRight, nBottom,If( oPen != nil, oPen:hPen, 0 ) )) ...y listo. En tu PRG simplemente colocas el ...
by Loren
Fri Dec 28, 2018 8:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar linea en ticket
Replies: 4
Views: 812

Re: A problem with GETCURSORPOS() and widescreen-monitor ?

... hPen := CREATEPEN( PS_SOLID, 1.5, CLR_HRED ) local hOldPen local nTop, nLeft local nWidth, nHeight nTop := 5 nLeft := 5 nWidth := 90 nHeight := 90 MOVETO( hDC, nLeft-1, nTop-1) LINETO( hDC, nLeft + nWidth+1, nTop-1 ) LINETO( hDC, nLeft + nWidth+1, nTop+nHeight+1 ) LINETO( hDC, nLeft -1, nTop+nHeight+1 ...
by ukoenig
Sat Nov 18, 2017 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem with GETCURSORPOS() and widescreen-monitor ?
Replies: 24
Views: 4895

Re: Ayuda DLL

Antonio buenos dias, gracias por la ayuda Agrego la VM.LIB (xharbour), y me manda estos errorres :( :( Proyecto: Kept5, Entorno: BorlandDLL: [1]:Harbour.Exe Source\Tseguro.prg /m /n /es2 /ki /iP:\32bits\xharbour\include;P:\32bits\FWH\INCLUDE /i /oObj\Tseguro.c xHarbour Compiler build 1.2.1 (SimpLex)...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6329

Re: OT Routing routine

Antonio, This is not done with yWorks, but with a routine I wrote myself :D :D . It is done with LineTo() MoveTo(), ellipse(),.... functions :) Because I want some more complex(bigger) drawings, I was considering using yWorks. Here are some examples on the yWorks-site. http://www.yworks.com/products/yfiles/gallery ...
by Marc Vanzegbroeck
Thu Dec 15, 2016 8:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT Routing routine
Replies: 11
Views: 1865

HELP FOR SHOW A LINE ON A DIALOG

... DrawLine( x, y ) Local hdc:= oDlgMain:GetDc() Local hPen := CreatePen( 0, 1, CLR_BLUE ) Local hOldPen := SelectObject( oDlgMain:hDc, hPen ) MoveTo( oDlgMain:hDC, x, y) LineTo( oDlgMain:hDC, x, y ) SelectObject( oDlgMain:hDc, hOldPen ) DeleteObject( hPen ) oDlgMain:ReleaseDc() return nil ...
by Silvio.Falconi
Tue Dec 01, 2015 9:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HELP FOR SHOW A LINE ON A DIALOG
Replies: 3
Views: 757

Re: FYI Tablet App

... and oDlg:bLClicked . Best regards, Otto static function DoDraw( hDc, x, y, lPaint, lReset, oPen ) if ! lPaint .or. ( lReset != nil .and. lReset ) MoveTo( hDC, x, y ) else LineTo( hDc, x, y, oPen:hPen ) endIf sysrefresh() return nil
by Otto
Wed May 13, 2015 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FYI Tablet App
Replies: 14
Views: 4982

Re: Two METRO questions about MENU and saving button-pos

... of MetroPanel's MoveBtn() method. We need to make this modification to the metropanel class. 1. Add new DATA bOnMoveBtn 2. At the end of METHOD MoveTo() add these lines if ::bOnMoveBtn != nil Eval( ::bOnMoveBtn, Self, oDragBtn ) endif 3) Your function : func OnMoveBtn( oMetro, oDragBtn ) if ...
by nageswaragunupudi
Fri Feb 27, 2015 2:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Two METRO questions about MENU and saving button-pos
Replies: 3
Views: 718

Re: problema con SetFont

... 1, aClrDias[ A][ 3]) //Oscuro nrgb(160,160, 75) // Se carga el lapices y se dibuja borde superior.. hOldPen := SelectObject( hDC, hPen1 ) MoveTo(hDc , aXY[ A][ 2] - 1, aXY[ A][ 3] ) LineTo(hDc, aXY[ A][ 2] - 1, aXY[ A][ 1] - 1 ) LineTo(hDc, aXY[ A][ 4] , aXY[ A][ 1] - 1 ) // Se destruyen ...
by MOISES
Mon Feb 23, 2015 1:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema con SetFont
Replies: 17
Views: 4733

Re: Drawing on a TImage and save (revamped) :-)

... aPoints[2][2], hOldPen aPoints[1] := { 100, 200 } // Start x, y aPoints[2] := { 100, 400 } // End x, y hOldPen := SelectObject( hMemDC, hPen ) MoveTo( hMemDC, aPoints[ 1, 2 ], aPoints[ 1, 1 ] ) LineTo( hMemDC, aPoints[ 2, 2 ], aPoints[ 2, 1 ] ) hOldPen := SelectObject( hMemDC, hPen ) SelectObject( ...
by ukoenig
Sun Apr 06, 2014 12:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drawing on a TImage and save (revamped) :-) [Solved]
Replies: 41
Views: 8372

aiuto su apertura finestra window

... PAINT Drawlinee() ; ON INIT Drawnumeri() la funzione Drawlinee disegna sullo schermo una griglia usando dei cicli for next usando le funzioni fw: MoveTo( oWnd1:hDC, riga, colonna ) LineTo( oWnd1:hDC, rigafinale, colonnafinale) la funzione drawnumeri scrive nei quadrati della griglia delle cose ...
by damianodec
Thu Feb 20, 2014 9:48 pm
 
Forum: All products support
Topic: aiuto su apertura finestra window
Replies: 2
Views: 787
Next

Return to advanced search