Search found 61 matches: otop

Return to advanced search

Re: Better method Gradient() for class TWindow

... part of it is occupied by buttonbar, hiding the top part of the gradient. In case we like the gradient to fit the visible client area (excluding oTop(oBar), oBottom(MsgBar),oLeft and oRight) what we can do is: oDlg:oBrush:lClientArea := .T. // FWH17.07 http://imagizer.imageshack.us/v2/xq90/922/WenYDf.png
by nageswaragunupudi
Fri Jul 28, 2017 5:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Better method Gradient() for class TWindow
Replies: 5
Views: 1455

Re: Estilo windows 10 en mdichild

... complejo, hay que hacer muchas cosas para reemplazar el comportamiento: maximizar, minimizar, ajustar, etc., y perdemos la comodidad de usar los oTop, oLeft, oClient, etc. Mejor paso a la opcion con tabs, es un poco más fácil y no tengo que reescribir tanto codigo :) Gracias , un saludo.
by Carlos Mora
Fri Dec 23, 2016 3:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Estilo windows 10 en mdichild
Replies: 17
Views: 5732

Re: Alternando Menubar y TRibbonbar

Estas líneas son las que hacen que la ventana cliente de la MDI se redimensione correctamente:

::oWndMain:oTop = ::oRibbonb
::oWndMain:oBar = nil
::oWndMain:Resize()
by Antonio Linares
Thu Mar 31, 2016 9:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Alternando Menubar y TRibbonbar
Replies: 7
Views: 1817

Re: Move controls as window size

... it simple enough and a good starting point. I needed to resize controls as the container dialog also resizes, and the usual solution (oClient, oTop, etc) didn't seem to be right. First thing first. After thinking a little bit about what behavoir would be wanted in every control, it can be resumed ...
by Carlos Mora
Tue May 19, 2015 3:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Move controls as window size
Replies: 21
Views: 6753

Re: Ribbon drawing

oWnd:oTop:=oRbnBar maybe. Lailton, I have no other way to contact you, because you are not answering to me for a few months by now. And I am sending the e-mails regularly almost every week. Your FiveWeb is in question. This ...
by codemaker
Sun Nov 10, 2013 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon drawing
Replies: 5
Views: 1532

Re: Ribbon drawing

Hi Lailton,

Lailton wrote:oWnd:oTop:=oRbnBar

tried, but nope, doesn't works.

Thanks anyway :)

Best regards
by Carlos Mora
Tue Nov 05, 2013 8:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon drawing
Replies: 5
Views: 1532

Re: Ribbon drawing

oWnd:oTop:=oRbnBar

maybe.
by Lailton
Tue Nov 05, 2013 1:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon drawing
Replies: 5
Views: 1532

Re: To Nages: Proposal for implementation

Silvio, I am still not clear what you want to do. Do you want to be able to allow the user to show and hide the toolbar? If so, oWnd:oTop:= oToolbar oWnd:oClient:= oBrowse ACTIVATE WINDOW oWnd Then to hide the toolbar: oWnd:oTop:=nil oWnd:resize() Or to show the toolbar oWin:oTop:= oToolbar ...
by James Bott
Tue May 14, 2013 6:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages: Proposal for implementation
Replies: 28
Views: 7058

como hago esto: window get say

Hola.

Necesito hacer un window y que este dividida en 2 partes la de arriba tiene que tener un say y un get y abajo un xbrowse

Intente con opanel pero no consigo lo del say y el get.
lo unico que me salio es poner un group arriba (oPanel:oTop= ogrupo) y abajo el xbrowse.

Alguna Ayuda?

gracias.
by goosfancito
Wed Aug 17, 2011 12:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: como hago esto: window get say
Replies: 6
Views: 1588

Re: Coloring a line Solved. Now coloring an individual cell

... ID 4001 OF oDlg;       action(nnOPtion := oTabs:nOption,xpicard(oDlg,oBrw,nnOption,xCol,oSay35,oSay36,oSay37))   update    endif       oDlg:oTop := oTabs    getcoors(ownd1:nTop,ownd1:nLeft,ownd1:nBottom,ownd1:nRight)    if ownd1:nright >= 1020 //.and. ownd1:nright < 1028        if ...
by hag
Fri Jan 14, 2011 3:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Coloring a line Solved. Now coloring an individual cell
Replies: 15
Views: 4814

Re: How to receive Windows <ON MOVE> new top/left-position

... the Dialog stays on Screen. ... ... ACTIVATE WINDOW oWndEdit ; ON MOVE ( oWndEdit:CoorsUpdate(), nTop:= oWndEdit:nTop, ; nTop:= nTop + if(oWndEdit:oTop!=nil,oWnd:oTop:nHeight,0), ; nLeft:= oWndEdit:nLeft, nLeft:= nLeft + if(oWndEdit:oLeft!=nil,oWnd:oLeft:nWidth,0), ; oWndCtrl:Move( nTop + 320, ...
by ukoenig
Wed Dec 29, 2010 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to receive Windows <ON MOVE> new top/left-position
Replies: 2
Views: 632

Re: How to receive Windows <ON MOVE> new top/left-position

... have to add the width or height of any objects attached to the window client oClient. oWnd:coorsUpdate() nTop:= oWnd:nTop nTop:= nTop + if(oWnd:oTop!=nil,oWnd:oTop:nHeight,0) // Note that oMenu doesn't have an attribute nHeight. It is fixed at 20 pixels. nTop:= nTop + if(oWnd:oMenu!=nil,20,0)
by James Bott
Wed Dec 29, 2010 7:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to receive Windows <ON MOVE> new top/left-position
Replies: 2
Views: 632

Re: New FWH 10.7

... bar. Not using the splitter will make it simpler to code. Are you setting each control to the window objects for top, left and client? oWnd:oTop:= oRibbonbar oWnd:oLeft:= oExplorerbar oWnd:oClient:= oBrw Then resizing should work. You don't need any panels for this. Regards, James
by James Bott
Fri Aug 13, 2010 11:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 10.7
Replies: 33
Views: 9268

Re: I want stop the buttonbar

Silvio wrote:How I can to fix the button bar when I press vertical and Horizontal scroll ?

Hi Silvio:

Try with oDlg:oTop := oBar

Regards.

Manuel Mercado.
by mmercado
Tue Mar 10, 2009 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: I want stop the buttonbar
Replies: 10
Views: 1319

Re: Mi primera pregunta de este año 2009

... nOr( WS_OVERLAPPED + WS_CAPTION + WS_THICKFRAME + WS_CLIPCHILDREN ) DEFINE WINDOW oWndD TITLE "Aida Control de Polizas V 1.00 2008" from oTop,oLeft to oBottom,oRight MDI Color nRgb(230, 230, 250 ),nRgb( 132, 112, 255) ; MENU BuildMenu() style nOr( WS_OVERLAPPED + WS_CAPTION + WS_THICKFRAME ...
by Daniel Garcia-Gil
Sat Jan 03, 2009 2:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mi primera pregunta de este año 2009
Replies: 5
Views: 792
PreviousNext

Return to advanced search