Search found 26 matches: apoint

Return to advanced search

Re: UrlLnk with Popup menu

Antonio Linares wrote:Have you tried this ?

ACTIVATE POPUP oMenu WINDOW oPanel AT aPoint[1], aPoint[2]


Yes of course
Probabile i made an error because before i saw a menu on down, far from panel but then It Is not showed anywhere
by Silvio.Falconi
Sat Feb 24, 2024 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UrlLnk with Popup menu
Replies: 4
Views: 247

Re: UrlLnk with Popup menu

Have you tried this ?

ACTIVATE POPUP oMenu WINDOW oPanel AT aPoint[1], aPoint[2]
by Antonio Linares
Fri Feb 23, 2024 7:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UrlLnk with Popup menu
Replies: 4
Views: 247

UrlLnk with Popup menu

... oPanel4:AddLink( "testlink", bClick, ".\bitmaps\mail.bmp",oFontSmall,CLR_BLACK,CLR_WHITE ) tried with Function AddMenu() local aPoint := AdjustWnd( oPanel, oPanel:nTop-100, oPanel:nLeft ) MENU oMenu POPUP --- ACTIVATE POPUP oMenu WINDOW oWnd AT aPoint[1], aPoint[2]
by Silvio.Falconi
Fri Feb 23, 2024 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UrlLnk with Popup menu
Replies: 4
Views: 247

set a dialog on a position

... of the msgitem og Msgbar oApp:oMsgItem1:bAction := { |oBtn| ::ConteggioTotali(oApp:oWndMain:oMsgBar) } Function ConteggioTotali(obtn) Local aPoint := AdjustWnd( oBtn, -27*2, 15*2 ) DEFINE DIALOG oDlgConteggio size 400,250 TRANSPARENT; TITLE "Conteggio elementi" ACTIVATE DIALOG ...
by Silvio.Falconi
Tue Apr 27, 2021 11:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: set a dialog on a position
Replies: 3
Views: 518

Re: New FTDN May 2018 (FWH 18.05)

... even knowing the source window. Now, bDropOver is evaluated with two more additional paramters. Eval( ::bDropOver, uDropInfo, nRow, nCol, nFlags, aPoint, oSourceWnd ) aPoint is { nRow, nCol } relative to the destination window. oSourceWnd is the window where the drag began. * EASY REPORT RUNTIME: ...
by Antonio Linares
Sun Jul 22, 2018 5:01 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May 2018 (FWH 18.05)
Replies: 1
Views: 2757

New FTDN May 2018 (FWH 18.05)

... even knowing the source window. Now, bDropOver is evaluated with two more additional paramters. Eval( ::bDropOver, uDropInfo, nRow, nCol, nFlags, aPoint, oSourceWnd ) aPoint is { nRow, nCol } relative to the destination window. oSourceWnd is the window where the drag began. * EASY REPORT RUNTIME: ...
by Antonio Linares
Sat Jul 14, 2018 4:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May 2018 (FWH 18.05)
Replies: 1
Views: 2757

Re: Problem on Drag 'n' drop with 17.11

Mr Antonio You made two points: 1) nMakeLong( aPoint[ 1 ], aPoint[ 2 ] ) makes more sense than nMakeLong( nRow, nCol ) and 2) The code in 15.07 used nMakeLong( aPoint[ 1 ], aPoint[ 2 ] ), where as subsequently it was changed to nMakeLong( nRow, ...
by nageswaragunupudi
Wed Dec 06, 2017 2:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem on Drag 'n' drop with 17.11
Replies: 1
Views: 541

Re: Canal5 Calendar

... ****************************************** METHOD Show( nRow, nCol, cPrompt, oWnd ) ****************************************** Local n Local aPoint := { nRow, nCol } Local aAux, nMaxLen Local nHeight Local nWidth Local nHScreen := GetSysMetrics( 1 ) Local nWScreen := GetSysMetrics( 0 ) Local ...
by Randal
Tue Feb 14, 2017 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Canal5 Calendar
Replies: 15
Views: 5697

Re: Colocar un Dialogo debajo de una casilla en Xbrowse

... - 1   nCol     := ::nDisplayCol - 2  Ahora tendrias que pasar esas coordenadas a valores de la pantalla completa: local aPoint := { nRow, nCol } aPoint = ClientToScreen( oBrowse:hWnd, aPoint ) Y desde la claúsula ON INIT de tu diálogo, posicionarlo en esas coordenadas: ...
by Antonio Linares
Sun Oct 18, 2015 6:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Colocar un Dialogo debajo de una casilla en Xbrowse
Replies: 2
Views: 578

Re: "Snap" for Clipper

...      445   617   618 APARENT1                WINDOW.PRG     4019  4022  4025  4028 APARENT2                WINDOW.PRG     4019  4023  4028 APOINT                  WINDOW.PRG     3534  3539  3540  3541  3541 APROPERTIES            WINDOW.PRG      465   469   742   747  1157  1911  1912  1913 ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6699

Re: Processing XML Data

... Files\Citrix\GoToMeeting\1133\g2mstart.exe 4 , C:\Program Files\Common Files\Intel\WirelessCommon\iFrmewrk.exe 5 , C:\Program Files\DellTPad\Apoint.exe 6 , C:\Program Files\EMS\SQL Studio for MySQL\Studio\myagent.exe 7 , C:\Program Files\EMS\SQL Studio for SQL Server\Studio\msagent.exe 8 ...
by cdmmaui
Wed Mar 13, 2013 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Processing XML Data
Replies: 10
Views: 5957

Re: xBrowse STAFF SCHEDULE with source code

... I nice work. I found a little bug. Just protect the Header-area for drop-over. In function < Dropover > do case case oBrwThis == oBrwRoster aPoint := ClientToClient( oBrwFrom:hWnd, oBrwThis:hWnd, { nRow, nCol } ) IF apoint[1] <= 45 apoint[1] := 50 ENDIF forces to use the first row in ...
by ukoenig
Mon Dec 17, 2012 9:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse STAFF SCHEDULE with source code
Replies: 3
Views: 1330

Re: Error with Treeview

I tried with :

ACTIVATE DIALOG oDlg CENTERED ;
ON PAINT (oDlg:Move(aPoint[1], aPoint[2],,,.t.), ;
__ChangeStyleWindow( oTree:hWnd, WS_VSCROLL, -16, .t. ))

but not run !! it not make error and not make the vertical scroll
by Eoeo
Thu Aug 23, 2012 6:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error with Treeview
Replies: 3
Views: 695

Re: TestTitl.prg Sample MDI

... ; BORDER NONE ; NOSYSMENU ; NOICONIZE ; NOCAPTION 2. capture the Brush-area from the Mainwindow. STATIC FUNCTION CHILDPAINT( hDC, oWnd ) local aPoint aPoint := ClientToScreen( WndMain():hWnd, { 0, 0 } ) aPoint := ScreenToClient( oWnd:hWnd, aPoint ) SetBrushOrgEx( hDC, aPoint[ 2 ], aPoint[ 1 ...
by ukoenig
Mon Feb 27, 2012 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TestTitl.prg Sample MDI
Replies: 20
Views: 11745

Re: Coordenadas/Posicion en pixeles de un renglon de xBrowse?

... mouse within the rectangle { nTop, nLeft, nBottom, nRight ) After deciding the x and y then the point needs to converted to screen coordinates: aPoint := ClientToScreen( oBrw:hWnd, { y, x } ) if aPoint[ 1 ] > 32768 aPoint[ 1 ] -= 65535 endif if aPoint[ 2 ] > 32768 aPoint[ 2 ] -= 65535 ...
by nageswaragunupudi
Thu May 26, 2011 1:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Coord/Posicion en pixeles de un renglon de xBrowse? (Ok)
Replies: 9
Views: 1591
Next

Return to advanced search