Search found 44 matches: bmoved

Return to advanced search

Re: Invalid lvalue 'Numeric'

... "Accounting", oFont,,, !.F., Upper("TOP") ) oWnd:Activate( Upper("MAXIMIZED"), oWnd:bLClicked, oWnd:bRClicked, oWnd:bMoved, oWnd:bResized, oWnd:bPainted, oWnd:bKeyDown, oWnd:bInit,,,,,,,,,,, oWnd:bLButtonUp ) return nil ***************************************** The ...
by acwoo1
Mon Jul 05, 2010 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Invalid lvalue 'Numeric'
Replies: 3
Views: 947

Re: Ribbon Limit

I make a try and I have the same value :

oSprite is the bitmap

oSprite:bMoved := { | nRow, nCol | msginfo(oRbar:nheight,oSprite:nTop) }
by MdaSolution
Sat Jan 23, 2010 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2105

Re: Ribbon Limit

... RESOURCE cBitmap; PIXEL NOBORDER of oWnd oSprite:lTransparent = .T. oSprite:Move(oSprite:nTop,; oSprite:nLeft,; ,; ) oSprite:lDrag := .T. oSprite:bMoved := {|| oSprite:CoorsUpdate() ,; nBmpRow := oSprite:nTop ,; nBmpCol := oSprite:nLeft ; } and I wish move the bitmaps not over the ribbon
by MdaSolution
Fri Jan 22, 2010 7:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 2105

Re: erase an object

... ,; ) oSprite:HideDots() // not run !! I want no show the dots when I capture the object with the mouse oSprite:lDrag := .T. oSprite:bMoved := {|| oSprite:CoorsUpdate() ,; nBmpRow := oSprite:nTop ,; nBmpCol := oSprite:nLeft ; } oSprite:cargo := {cBitmap,nTipo } // ASSIGN THE CARGO ...
by Silvio
Sun Dec 13, 2009 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase an object
Replies: 5
Views: 735

Error on create a baction on a bitmap

... of oWnd oSprite:lTransparent = .T. oSprite:Move(oSprite:nTop,; oSprite:nLeft,; oSprite:nWidth(),; oSprite:nHeight()) oSprite:lDrag := .T. oSprite:bMoved := {|| oSprite:CoorsUpdate() ,; nBmpRow := oSprite:nTop ,; nBmpCol := oSprite:nLeft ; } oSprite:bAction := {|oSprite| Menu_azioni(oSprite) } ...
by Silvio
Wed Sep 30, 2009 5:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error on create a baction on a bitmap
Replies: 2
Views: 364

Re: Advice needed

... they appear by dragging the bottom window above the second window, is there a way to call a tile when the mouse button is released? I've tried the bMoved option but, this is called as soon as the window is moved not when the mouse button is released. Any ideas? Thanks Pete
by PeterHarmes
Mon Jun 29, 2009 2:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advice needed
Replies: 9
Views: 1361

Re: FWH/xHarbour Menus

... ) CONSTRUCTOR METHOD Define( nTop, nLeft, nBottom, nRight, cCaption, nStyle,; nClrText, nClrPane, oBrush ) CONSTRUCTOR METHOD Activate( bClicked, bMoved, bPainted, lCentered, bValid, lModal,; bInit, bRClicked, bWhen, lResize16 ) METHOD AdjTop() INLINE WndAdjTop( ::hWnd ) METHOD ChangeFocus() INLINE ...
by E. Bartzokas
Mon May 25, 2009 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH/xHarbour Menus
Replies: 20
Views: 7761

... Brw1:hWnd,oDlg:hWnd ),SetParent( oDlg:hWnd,oWndChild:hWnd ),oGet[1]:SetFocus(), oDlg:Move( 46, 0 )) ; VALID (oWndChild:End(),.T. ) oWndChild:bmoved = { | nRow, nCol, nFlags | savecrd1(oWndChild,"BAL") } ACTIVATE WINDOW oWndChild ; ON INIT (oWndChild:SetSize( oDlg:nWidth, oDlg:nHeight+61+12, ...
by angstin
Wed Nov 05, 2008 4:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA CON XBROWSE
Replies: 9
Views: 1602

para Antonio Linhares

... TTabs():New(nTop,nLeft,aPrompts,{||.t. },oDlgFld,nOption,nCor1,nCor2,lPixel,lDesign,nWidth,nHeight,) oDlgFld:Activate(oDlgFld:bLClicked,oDlgFld:bMoved,oDlgFld:bPainted,.F.,, .F. ,,oDlgFld:bRClicked,{||.T.},) Return(Self) Qual seria o problema ??? acho q esta no style WS_CHILD, q se eu tirar ...
by giba_f
Mon Oct 06, 2008 1:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: para Antonio Linhares
Replies: 3
Views: 1050

You could try to save the position of the dialog and then add
oDlg:bMoved := ... (Codeblock to move dialog to previous position)
by gkuhnert
Mon Sep 22, 2008 12:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog No Move
Replies: 12
Views: 1307

... "fivewin.ch" FUNC MAIN LOCAL oWnd DEFINE WINDOW oWnd FROM 10,10 TO 20,70 SET MESSAGE OF oWnd TO "TEST ON MOVE" CLOCK DATE KEYBOARD NOINSET oWnd:bMoved := {|nRow,nCol|oWnd:setMsg(LTRIM(STR(nRow)) + " , " + LTRIM(STR(nCol)))} ACTIVATE DIALOG oWnd RETURN Notes : 1) The result is WRONG , nRow is ...
by demont frank
Fri Jun 06, 2008 7:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in bMMoved
Replies: 9
Views: 1345

bMoved is evaluated when the window is moving while bMMoved is evaluated when the mouse is moving. They are two different events.

EMG
by Enrico Maria Giordano
Thu Jun 05, 2008 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in bMMoved
Replies: 9
Views: 1345

you write oWnd:bMoved =... my by oWnd:bMMoved
by Natter
Thu Jun 05, 2008 1:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in bMMoved
Replies: 9
Views: 1345

Saludos Antonio:

Hice lo que sugieres

Prueba a hacer lo siguiente:
oDlg:bMoved = { || oBar:Refresh() }


Y no surte ningun efecto.
Con solo estar posicionado en el Get con Password, y pulsar mayusculas un par de veces, se ve el problema.
by Blessed
Tue Jan 15, 2008 9:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Aun tengo el problema
Replies: 13
Views: 3383

Si, hemos visto el error. Ocurre en XP, en Vista funciona bien.

Prueba a hacer lo siguiente:
oDlg:bMoved = { || oBar:Refresh() }

por lo visto solo ocurre al mover la caja de diálogo una vez que ha salido el aviso de las mayúsculas. Por lo menos, aqui solo falla en esa situación.
by Antonio Linares
Tue Jan 15, 2008 6:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Aun tengo el problema
Replies: 13
Views: 3383
PreviousNext

Return to advanced search