Search found 21 matches: owindow

Return to advanced search

Re: Detect any activity of a window?

Dear Hakan,

You could use oWindow:bMMoved to check if the mouse was moved over the window
by Antonio Linares
Wed Dec 14, 2022 2:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Detect any activity of a window?
Replies: 4
Views: 357

Re: FiveWin to HTML

Dear Ari, With latest FWH 22.10 (also available on FWH 22.06) you can do oWindow:Html() or oDialog:Html() and FWH writes the HTML for you :-) Not all controls are available yet, but you can see the way we are implementing it in FWH. Look for Method Html() in ...
by FiveWiDi
Mon Nov 14, 2022 8:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin to HTML
Replies: 5
Views: 518

Re: FiveWin to HTML

Dear Ari,

With latest FWH 22.10 (also available on FWH 22.06) you can do oWindow:Html() or oDialog:Html() and FWH writes the HTML for you :-)

Not all controls are available yet, but you can see the way we are implementing it in FWH. Look for Method Html() in each class.
by Antonio Linares
Thu Nov 10, 2022 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin to HTML
Replies: 5
Views: 518

Re: Running out of Windows Handles.

Dear Byron,

Don't create TSay objects. Use oWindow:Say( ... ) method for a window or dialog
by Antonio Linares
Wed Nov 02, 2022 9:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Running out of Windows Handles.
Replies: 6
Views: 326

Re: Fwh19.05 - New Class TDockPnel

In function MenuPopup add

//
MENUITEM "Minimize" ACTION o:oWnd:oWnd:Minimize() // oWindow:Minimize // So oWindow is object window principal and static variable
by cnavarro
Wed Oct 07, 2020 3:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fwh19.05 - New Class TDockPnel
Replies: 93
Views: 16058

Re: Event handling

Try with
oWindow:bLostFocus := { || ...... }
by cnavarro
Tue Oct 06, 2020 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Event handling
Replies: 7
Views: 699

Re: Is this possible ?

Prueba asi:

oWindow:oMsgBar:oClock:nClrText = CLR_BLUE // ó cualquier color RGB
by Antonio Linares
Wed Aug 21, 2013 6:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is this possible ?
Replies: 2
Views: 497

Re: Program crashing

The function MainMenu executes prior to creation of the main window. Therefore the parameter oWindow received by MainMenu() function is NIL and you are calling oWindow:End() results in calling NIL:End().

Instead of using oWindow:End(), use WndMain():End()
by nageswaragunupudi
Wed Jun 29, 2011 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program crashing
Replies: 8
Views: 1590

Re: Program crashing

Hunter, Try that: ... MainMenu (@oWindow, @oMenu, @nChoice, {|| oWindow } ) ... STATIC PROCEDURE MainMenu (oWindow, oMenu, nChoice, bWindow ) SETKEY(ASC("X"), {|| IIF( GetKeyState( ACC_ALT ), EVAL({|| IIF(ALERT( ; "¿ Terminar ...
by hmpaquito
Wed Jun 29, 2011 11:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program crashing
Replies: 8
Views: 1590

Re: To Antonio: Harbour OLE implementation

Hello Toninho, Yes it have, and I confirm it with Mindaugas, pleaser look: Great news. :D #include "fivewin.ch" function MAIN local oWindow, oActiveX DEFINE WINDOW oWindow FROM 0,0 to 400,300 TITLE "Google" WIN_AxInit() oActiveX = WIN_AxGetControl( WApi_CreateWindowEX( 0, ...
by Rossine
Wed Jun 17, 2009 7:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: Harbour OLE implementation
Replies: 28
Views: 8240

Re: Transparent bitmap on window

Antonio, its a normal window as in your example. But in the "@ 5,5 BITMAP" i MUST define "OF oWindow". If not, no picture is to see.
But all my tests come to same result. The picture is NOT transparent!?

Image
by byte-one
Wed Feb 11, 2009 11:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent bitmap on window
Replies: 14
Views: 2384

Bitmaps

... It's the same thing. As I said, an handle is nothing more than a numeric value. Found it !!!! When I define my window browse DEFINE WINDOW ::oWindow MDICHILD FROM 0,0 TO oRect:nBottom-30 , oRect:nRight-10 ; TITLE cTitle ; STYLE nOR( WS_THICKFRAME, WS_CAPTION, WS_MINIMIZEBOX, WS_MAXIMIZEBOX, ...
by Antonio Linares
Wed Aug 27, 2008 7:34 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 65278

Darrell, What control has the focus when the key is pressed ? The key event will go to the focused control, and in the case that there is no a control, it will be routed to the window or dialog. Then you just need to implement: <oControl_or_oWindow_or_oDialog>:bKeyChar = { | nKey | ... your co...
by Antonio Linares
Mon Jun 23, 2008 7:40 am
 
Forum: FiveWin for Pocket PC
Topic: FWPPC and MC3000 scan button
Replies: 13
Views: 5603

GetStockObject():
http://msdn2.microsoft.com/en-us/library/ms533223(VS.85).aspx

WM_GETFONT:
http://msdn2.microsoft.com/en-us/library/ms632624(VS.85).aspx

In FWH:
<oWindow|oDialog|oControl>:oFont
by Antonio Linares
Wed Jan 02, 2008 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get the defined font of some window object
Replies: 2
Views: 574

... analizarlos usando <oControl>:bKeyDown ó <oControl>:bKeyChar. Si no tienes controles definidos, pues usarías <oDialog> ó <oWindow> en vez de <oControl>
by Antonio Linares
Thu Dec 13, 2007 7:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como fazer isso com FIVEWIN?
Replies: 3
Views: 890
Next

Return to advanced search