Search found 44 matches: bmoved

Return to advanced search

Re: Printer class question - RESOLVED

... object classes, so that is the question and each Item action are in ElementActions function so there's no any class for the graphic items oItems:bMoved := {|| SetItemSize( i, nArea, cAreaIni ), MsgBarItem( i, nArea, cAreaIni,,, .T. ) } oItems:bResized := {|| SetItemSize( i, nArea, cAreaIni ), ...
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: Fast Report´s future

... object classes, so that is the question and each Item action are in ElementActions function so there's no any class for the graphic items oItems:bMoved := {|| SetItemSize( i, nArea, cAreaIni ), MsgBarItem( i, nArea, cAreaIni,,, .T. ) } oItems:bResized := {|| SetItemSize( i, nArea, cAreaIni ), ...
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: Combobox scroll (function PopupBrowse())

Antonio, he probado con oGet:oWnd:bMoved = { || oGet:Cargo := nil, oDlg:End() } tal cual me sugeriste, si bien cierra el combo al picar sobre la barra de título no funciona al seleccionar con el ratón y deja de funcionar la rueda del mismo. ...
by horacio
Tue Dec 22, 2015 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Combobox scroll (function PopupBrowse())
Replies: 19
Views: 4800

Re: Combobox scroll (function PopupBrowse())

Horacio,

Prueba a cambiar esa línea por esta:

oGet:oWnd:bMoved = { || oGet:Cargo := nil, oDlg:End() }
by Antonio Linares
Mon Dec 21, 2015 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Combobox scroll (function PopupBrowse())
Replies: 19
Views: 4800

Re: dragging of a button

... Button, the array = nNewPos[1] oBtn[1]:bDrag := { | x,y,flags | nNewPos[1] := BTN_MOVE(oBtn[1], x, y, oBtn[1]:nWidth, oBtn[1]:nHeight) } oBtn[1]:bMoved := { || IIF( nNewPos[1][1] = .T., oBtn[1]:Move( nNewPos[1][2], nNewPos[1][3], , , .T. ), NIL ) } ON INIT MAKE_AREA(oDlg) // only needed to find ...
by ukoenig
Sun Feb 15, 2015 8:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dragging of a button
Replies: 7
Views: 1838

Re: Incremental Search

We used a listbox and set the bMoved of the parent to destroy the listbox which is triggered with the parent dialog is moved. When it is redrawn it references from the Get field it is displaying options for and therefore redraws it in the ...
by byron.hopp
Tue May 06, 2014 6:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Incremental Search
Replies: 27
Views: 5193

Re: detectar perdida del foco de un get

Puedes detectar el click izquierdo en el dialogo con oDlg:bLClicked y cuando lo mueve con oDlg:bMoved
Esto no te servirá para cuando hace click en el titulo, pero a lo mejor te da una idea.
Saludos
by cmsoft
Wed Apr 23, 2014 3:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: detectar perdida del foco de un get
Replies: 3
Views: 547

Re: "Snap" for Clipper

...      WINDOW.PRG      426  3493  3494 BMMOVED                WINDOW.PRG      426  3522  3523 BMOUSEWHEEL            WINDOW.PRG      425   716   716 BMOVED                  WINDOW.PRG      424   489   691   691  1210 BN_CLICKED              WINDOW.PRG     1398 BPAGEDOWN              WINDOW.PRG   ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6540

After object MOVE wrong position-return-values ?

... inside a dialog. I want to move the SAYS, to find the best textcolors in relation to the gradient. The return-values are wrong. My test : oSay1:bMoved := {|| ( nTxtTop1 := oSay1:nTop, nTxtLeft1 := oSay1:nLeft ) } oSay2:bMoved := {|| ( nTxtTop2 := oSay2:nTop, nTxtLeft2 := oSay1:nLef2 ) } oSay3:bMoved ...
by ukoenig
Mon Apr 29, 2013 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: After object MOVE wrong position-return-values ?
Replies: 1
Views: 566

Re: Possible to keep TTITLE / DIALOG transp. on Wnd-resize ?

... http://www.pflegeplus.com/pictures/TT7.jpg Add these lines to the dialog to connect to the window on a defined position WndMain():bMoved := {|| WndMain():CoorsUpdate(), ; oDlg:Move( WndMain():nTop + 10, WndMain():nLeft + 10, oDlg:nWidth, oDlg:nHeight, .f. ) } WndMain():bResized ...
by ukoenig
Wed Mar 20, 2013 5:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible to keep TTITLE / DIALOG transp. on Wnd-resize ?
Replies: 9
Views: 2574

Re: mouse - dialog

Hello Uwe, thank you for your help. But oDlg:bMoved := { || oDlg:CoorsUpdate() } does not pass focus. I found for me the solution in using a NOMODAL dialog. Moving the mouse to the right screenboarder opens. If mouse cursor is not over the dialog ...
by Otto
Thu Nov 15, 2012 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: mouse - dialog
Replies: 2
Views: 625

Re: Message-Paint Rel. 1.1a ( DOWNLOAD )

A little Update, to center a Message on a moved Dialog as well. ( The change is also included in the full Download ) added : oDlg:bMoved := {|| oDlg:CoorsUpdate(), ; aRect[1] := oDlg:nTop, aRect[2] := oDlg:nLeft, ; aRect[3] := oDlg:nHeight, aRect[4] := oDlg:nWidth } Download ( 0.8 MB only ...
by ukoenig
Fri Jul 20, 2012 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Message-Paint Update 3.1 ( DOWNLOAD )
Replies: 8
Views: 1996

Re: Window question

... Then part of the window resize and move blocks I can tell if I need to save window information and when the coordinates need to be updated. ::oWnd:bMoved := { | nRow, nCol | ::lSaveWindow := .t. } ::oWnd:bResized := { | nSizeType, nWidth, nHeight | ::lSaveWindow := .t., ::lWndNeedCoord := .t., ...
by Gale FORd
Wed Jun 08, 2011 7:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Window question
Replies: 8
Views: 1783

Re: Need help with Dialogs

Reinaldo, you try to define function to move the dialog to specific position and assign it to bmoved block of dialog ACTIVATE DIALOG <oDlg> ; [ <center: CENTER, CENTERED> ] ; [ <NonModal: NOWAIT, NOMODAL> ] ; [ WHEN <uWhen> ] ; [ VALID <uValid> ...
by Marcelo Via Giglio
Thu May 26, 2011 3:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need help with Dialogs
Replies: 9
Views: 1640

Re: Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?

Well, I tried doing it with oDlg:bResized and oDlg:bMoved but neither will allow passing of any but the built-in parameters and neither passes self either, so I don't think it can be done.

James
by James Bott
Tue Aug 17, 2010 1:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?
Replies: 17
Views: 5602
Next

Return to advanced search