Search found 157 matches: owndclient

Return to advanced search

Re: Transparent Png on MDI Parent

... some bitmaps, I have also used @ 0,0 Bitmap... ...main program @ 0,0 Image oLogo File Mcs_AppPath() + "Images\SqlServerLogo.bmp" Of oWnd:oWndClient No Border ACTIVATE WINDOW oWnd VALID MCS_EXIT(oWnd,cPath,pPRG_ABRV) ON INIT OpenMast() On Resize SetLogo( oLogo,oWnd ) RETURN (NIL) Function ...
by byron.hopp
Fri May 10, 2024 7:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent Png on MDI Parent
Replies: 5
Views: 134

Re: Fijar Texto en la ventana Principal de mi Aplicación

Querido Juan,

Prueba asi:

@ 10,10 SAY "LICENCIA " OF oDp:oFrameDp:oWndClient
by Antonio Linares
Sat Sep 30, 2023 4:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fijar Texto en la ventana Principal de mi Aplicación
Replies: 5
Views: 384

Re: lIncrFilter + MDI

... ) DEFINE WINDOW oWnd MDI DEFINE BUTTONBAR oBar OF oWnd SIZE 45,45 2007 DEFINE BUTTON OF oBar PROMPT "TEST" CENTER ACTION Test() oWnd:oWndClient:bPainted := {||oWnd:oWndClient:DrawImage( "c:\fwh\bitmaps\logo.bmp", "BR" )} ACTIVATE WINDOW oWnd return nil Function ...
by cpheraclio
Sun Jun 04, 2023 11:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: lIncrFilter + MDI
Replies: 4
Views: 373

Re: How to set up a child window inside a main window

Dear Silvio, Even if you modify the size of oWndClient, the child windows will exceed its area, it is the way Windows is designed. You may try to use oWndChild:aMinMaxInfo to restrict the child dimensions ok But for a sample If I move on left ...
by Silvio.Falconi
Fri Nov 11, 2022 11:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set up a child window inside a main window
Replies: 6
Views: 466

Re: How to set up a child window inside a main window

Dear Silvio,

Even if you modify the size of oWndClient, the child windows will exceed its area, it is the way Windows is designed.

You may try to use oWndChild:aMinMaxInfo to restrict the child dimensions
by Antonio Linares
Fri Nov 11, 2022 11:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set up a child window inside a main window
Replies: 6
Views: 466

Re: Logo on MDI window.

... I have this Main window and I put the image as you can see but I have a Bar at right, when I hide the bar the oWinMain:oWndClient not bpainted and when I reopen the bar right I must redraw the image how I can resolve it ? I add oApp:oWinMain:bResized := { || SetLogo( ...
by Silvio.Falconi
Wed Nov 09, 2022 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Logo on MDI window.
Replies: 10
Views: 918

Re: ¿Se puede Salir de un dialogo y Retornar al mismo punto?

... Time from start: 0 hours 0 mins 5 secs Error occurred at: 13/10/2022, 08:40:42 Error description: Warning BASE/1004 Message not found: TWINDOW:OWNDCLIENT Stack Calls =========== Called from: source\rtl\tobject.prg => TWINDOW:ERROR( 0 ) Called from: source\rtl\tobject.prg => TWINDOW:MSGNOTFOUND( ...
by JoseAlvarez
Thu Oct 13, 2022 12:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Se puede Salir de un dialogo y Retornar al mismo punto?
Replies: 12
Views: 1281

Re: Ocultar la ButtonBar

Prueba con oWnd:oWndClient:Resize()
by Antonio Linares
Tue Jul 19, 2022 6:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ocultar la ButtonBar
Replies: 11
Views: 944

Test Windows Mdi with panel right

... nil  I could also use a Tpanel but then it's not good because I would like the child not to go in that part that is the area in the window (owndclient) is determined as it happens with the tbar
by Silvio.Falconi
Mon Apr 25, 2022 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test Windows Mdi with panel right
Replies: 10
Views: 724

Re: SysCtrl PANEL BLACK

Antonio Linares wrote:João,

Please try this:

oMetro := MakeMetroPanel( oWnd:oWndClient )


Perfecto mi amado GURU. Eres simplemente mi mayor ídolo. Me gustas más que Bill Gates. jajajajajajajajaja.

https://imgur.com/FyOHeWp

Image

Regards, saludos.
by karinha
Sat Sep 11, 2021 4:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SysCtrl PANEL BLACK
Replies: 25
Views: 1457

Re: SysCtrl PANEL BLACK

João,

Please try this:

oMetro := MakeMetroPanel( oWnd:oWndClient )
by Antonio Linares
Sat Sep 11, 2021 3:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SysCtrl PANEL BLACK
Replies: 25
Views: 1457

Logo on MDI window.

... code I used in the main program just before the Activate Window: @ 0,0 Bitmap oLogo File Mcs_AppPath() + "Images\EocwdLogo.bmp" of oWnd:oWndClient PIXEL NOBORDER oWnd:CoorsUpdate() oWnd:bPainted := {|| SetLogo( oLogo,oWnd )} Here is the function that runs during the paint event. Function ...
by byron.hopp
Sat Jan 02, 2021 11:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Logo on MDI window.
Replies: 10
Views: 918

Re: Saber si ventana MDI esta abierta

... // Esta funcion selecionada una ventana MDI si ya esta abierta. LOCAL i:=0, lSuccess:=.f. cTitle:=upper(cTitle) FOR i=1 TO LEN(oWndP:oWndClient:aWnd) IF UPPER( oWndP:oWndClient:aWnd[i]:cCaption )=cTitle oWndP:oWndClient:aWnd[i]:SetFocus() lSuccess:=.t. ENDIF NEXT RETURN lSuccess Return
by JESUS MARIN
Wed Oct 16, 2019 9:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Saber si ventana MDI esta abierta - ( SOLUCIONADO )
Replies: 9
Views: 1711

Re: Ribbon Theme

Robert,

As you are using a MDI environment you have to change this line this way:

local oRb := TRibbonBar():New( oWnd:oWndClient )
by Antonio Linares
Tue Apr 30, 2019 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28486

Re: Ribbon Bar Sample ?

... oMenu brush oBrush1 It errors out on this line because it expects the MDI window to exist. DEFINE DIALOG oDlgRB[1] FROM 0,0 TO 538,782 OF oWndr:oWndClient PIXEL I suggest trying panels instead. I haven't tried this but I am pretty sure it will work. You can Hide() the current one and Show() ...
by James Bott
Thu Oct 25, 2018 12:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Bar Sample ?
Replies: 13
Views: 2699
Next

Return to advanced search

cron