Search found 157 matches: owndclient

Return to advanced search

Re: Detectar cuando una aplicación pierde el foco

Quique,

Esta forma te sirve mientras una ventana MdiChold esté abierta:

oWnd:bLostFocus = { | o, hWnd | If( GetFocus() != oWnd:oWndClient:hWnd, MsgBeep(),) }
by Antonio Linares
Mon Mar 18, 2013 10:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar cuando una aplicación pierde el foco
Replies: 2
Views: 389

XBrowse - Midi y lRegistered

... ( uno encima y otro debajo) Hasta aqui perfecto Para hacer unas pruebas quería poner un xbrowse con un array en la parte derecha sobre la oApli:oWndClient Compilacion perfecta Ejecucion: fallo en el ::Create del xbrowse Después de muchas vueltas, pruebas y horas, se me ocurrió poner oBrw:lRegisterd ...
by cnavarro
Thu Feb 21, 2013 8:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse - Midi y lRegistered
Replies: 14
Views: 2644

Re: MASTER ANTONIO

... que cambiar a quien le pertenece: DEFINE WINDOW ::oWndHija FROM 12,1 TO (Getsysmetrics(17)/16)-1, (Getsysmetrics(16)/8)-1; VSCROLL OF ::oWnd:oWndClient ; TITLE ::Title; // MDICHILD ; ICON ::oIconoWnd ; BORDER NONE Ya que la ventana MDI contiene una ventana invisible (oWndClient) que controla ...
by Antonio Linares
Tue Feb 12, 2013 10:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MASTER ANTONIO
Replies: 12
Views: 2044

About METRO and MDI

... oMWnd TITLE "FiveMDbu" MDI MENU BuildMenu() STYLE nOr( WS_POPUP, WS_MAXIMIZE ) ; COLOR CLR_WHITE, CLR_GREEN oMetro := MPANEL( oMWnd:oWndClient, oMetro ) .... .... // -------------------------- static function MPANEL( oWnd, oMetro ) local oBtn[11] DEFINE METROPANEL oMetro OF oWnd ...
by ukoenig
Tue Jun 12, 2012 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: About METRO and MDI
Replies: 0
Views: 400

Re: MDI-Frame and using oWnd:bResized := {|| ...} ?

Enrico, Yes, tested with the same Result : nothing happens. oWnd:oWndClient:bResized := {|| Msgalert ( "Test" ) } I can use ON RESIZE ( that works ), but a called function is executed twice. I noticed it, because of a forgotten logical var. The ...
by ukoenig
Fri Apr 06, 2012 6:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI-Frame and using oWnd:bResized := {|| ...} ?
Replies: 3
Views: 803

Re: Mouse events on MDI-frame ?

... nRow, nCol,, ,.T.), NIL ), ; // Width and height <   nMTop := nRow, nMLeft := nCol, oWnd:Refresh() ) }    ELSE   oWnd:oWndClient:bRClicked := {| nRow,nCol | ( IIF( nCol + 590 > nSWidth .and. nRow <= nSHeight, ;          oDlg:Move( ...
by ukoenig
Thu Mar 29, 2012 10:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mouse events on MDI-frame ?
Replies: 2
Views: 672

Re: Date/Time On Back Ground

Riaz,

Please try this change in my example:

DEFINE TIMER oTimer ACTION oWnd:oWndClient:Say( 2, 2, Time() )
by Antonio Linares
Mon Mar 26, 2012 11:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Date/Time On Back Ground
Replies: 29
Views: 9598

Re: Custom xBrowse

... PROMPT "Test"; ADJUST NOBORDER; ACTION uCustBrow( oWnd ) @ 0,0 XBROWSE oBrow1 SIZE 900,400 PIXEL OF oWnd:oWndClient ; AUTOCOLS AUTOSORT oBrow1:cAlias := 'cust' oBrow1:CreateFromCode() ACTIVATE WINDOW oWnd MAXIMIZED; return nil //------------------------------------------------------------------------------ ...
by ryugarai27
Fri Mar 23, 2012 12:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Custom xBrowse
Replies: 12
Views: 3369

Re: Custom xBrowse

... PROMPT "Test"; ADJUST NOBORDER; ACTION uCustBrow( oWnd ) @ 5,5 XBROWSE oBrow1 SIZE 700,400 PIXEL OF oWnd:oWndClient ; AUTOCOLS AUTOSORT oBrow1:cAlias := 'cust' oBrow1:CreateFromCode() ACTIVATE WINDOW oWnd MAXIMIZED; // ON INIT ( oWnd:oClient := oBrow1, ...
by ryugarai27
Thu Mar 15, 2012 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Custom xBrowse
Replies: 12
Views: 3369

Re: ¿Como puedo mostrar PNG, JPG o GIF además de BMP?

... RETURN NIL //-----------------------------------------// STATIC FUNCTION PongaBmp( hDC, oBmp, oWnd ) PalBmpDraw( hDC, 0, 0,oBmp:hBitmap,, oWnd:oWndClient:nWidth, oWnd:oWndClient:nHeight,, .t.) return nil Espero te sirva de guía. Saludos.
by FranciscoA
Fri Dec 16, 2011 11:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Como puedo mostrar PNG, JPG o GIF además de BMP?
Replies: 2
Views: 608

Re: Cambiar el fondo de la ventana principal en tiempo de ejecu

... //-----------------------------------------// STATIC FUNCTION PongaBmp( hDC, oBmp, oWnd ) PalBmpDraw( hDC, 0, 0,oBmp:hBitmap,, oWnd:oWndClient:nWidth, oWnd:oWndClient:nHeight,, .t.) return nil //---------------------------------- Function CambiaImagen( oBmp, oWnd ) local cImage if ...
by FranciscoA
Sun Jul 10, 2011 7:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar el fondo de la ventana principal en tiempo de ejecu
Replies: 6
Views: 1574

Re: MDI without caption

Hi,
I only need to disable the main menu because I don't need to create a MDI window I'm using directly oWnd:oWndClient to operate on the MDI.
So it's going well for my case.
by Marco Turco
Mon Apr 25, 2011 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI without caption
Replies: 6
Views: 1464

MDI without caption

... from start: 0 hours 0 mins 0 secs Error occurred at: 04/23/11, 11:01:37 Error description: Error BASE/1004 Class: 'NIL' has no exported method: OWNDCLIENT Args: [ 1] = U Any ideas ? Thanks in advance
by Marco Turco
Sat Apr 23, 2011 9:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI without caption
Replies: 6
Views: 1464

UNA CONSULTA COLORES

... oWnd /* Degradado en una ambiente MDI. Ventana Padre. Fijate como en un Ambiente MDI,la padre ,debemos pasarle a la funcion del degradado , oWnd:oWndClient. */ Function Main() Local nColor := 73647364737 /ESTE CODIGO DE DONDE SALE DEFINE WINDOW oWnd MDI TITLE "Pasate por http://www.getex.net/gentefive" ...
by elmoiquique
Tue Mar 08, 2011 11:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: UNA CONSULTA COLORES
Replies: 4
Views: 883

como centrar una window

... menu que tiene por defecto 2.- con NOSYSMENU deberia no mostrar el menu pero si esta PIXEL da error base/1004 class: nil has no exported method: OWNDCLIENT entonces como determinar el centro con coordenadas de texto?
by QAZWSX2K
Fri Feb 04, 2011 11:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: como centrar una window
Replies: 2
Views: 486
PreviousNext

Return to advanced search