Search found 32 matches: isiconic

Return to advanced search

Re: Maximizar Ventana

... que tenían los diálogos" al momento en que se minimiza la pantalla principal: oPublic:oVentPrin:bResized := { || Iif( !oPublic:oVentPrin:IsIconic(), oPublic:oDoIt:oChat:RestauraDlg(), NIL ) } y el método quedó asi: ///////////////////////////////////////////////////////////////////////////////////////////////////////////// ...
by EBM
Mon Nov 27, 2017 5:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Maximizar Ventana
Replies: 3
Views: 939

Re: Titulo de Dialogo

... el efecto: ///////////////////////////////////////////////////////////////////////////////////////////////// FUNCTION Parpadeo( oWnd ) If oWnd:IsIconic() .and. oWnd:lNewMsg FlashWnd( oWnd:hWnd, 1 ) Tone( 2000, .1 ) else oWnd:lNewMsg := .F. EndIf Return .T. //////////////////////////////////////////////////////////////////////////////// ...
by EBM
Mon Nov 13, 2017 3:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Titulo de Dialogo
Replies: 14
Views: 2118

A problem < keep on top >

... Another solution with the same effect. FUNCTION TOP_CLOSE(nType) hWnd := FindWnd( "Keeping at top" ) // Title !!! IF hWnd != NIL IF ISICONIC( hWnd ) SHOWWINDOW( hWnd, SW_RESTORE ) ENDIF IF nType = 1 SETFOREGROUNDWINDOW( hWnd ) ENDIF IF nType = 2 SENDMESSAGE( hWnd, WM_CLOSE ) ENDIF ...
by ukoenig
Sat Nov 11, 2017 4:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem < keep on top >
Replies: 1
Views: 575

Re: Ayuda DLL

Antonio buenos dias, gracias por la ayuda Agrego la VM.LIB (xharbour), y me manda estos errorres :( :( Proyecto: Kept5, Entorno: BorlandDLL: [1]:Harbour.Exe Source\Tseguro.prg /m /n /es2 /ki /iP:\32bits\xharbour\include;P:\32bits\FWH\INCLUDE /i /oObj\Tseguro.c xHarbour Compiler build 1.2.1 (SimpLex)...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6329

Re: How to keep a appl. on top of the dialog on resize ?

... 2 #define SW_RESTORE 9 ,,, ,,, FUNCTION TOP_CLOSE(nType) hWnd := FindWnd( "COLOR-PICKER 1.1" ) // Title !!! IF hWnd != NIL IF ISICONIC( hWnd ) SHOWWINDOW( hWnd, SW_RESTORE ) ENDIF IF nType = 1 SETFOREGROUNDWINDOW( hWnd ) ENDIF IF nType = 2 SENDMESSAGE( hWnd, WM_CLOSE ) ENDIF ...
by ukoenig
Sat Aug 01, 2015 1:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to keep a appl. on top of the dlg on resize ? (solved)
Replies: 5
Views: 2423

Re: Como verificar que el programa esta en ejecución

... Exe... MsgBox( "El programa " + APP_TITLE + " ya esta siendo ejecutado!" ) hWnd := FindWindow( APP_TITLE ) IF hWnd > 0 IF IsIconic( hWnd ) Restore( hWnd ) ELSE SetForeGroundWindow( hWnd ) ENDIF ELSE * MsgStop( "No es possible encontrar el programa !", "Error", ...
by postinelli
Mon Jan 05, 2015 4:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como verificar que el programa esta en ejecución
Replies: 14
Views: 2333

Re: "Snap" for Clipper

...  WINDOW.PRG      769 ISCHILD()              (function  in ?)    WINDOW.PRG     3142 ISDERIVEDFROM()        (function  in ?)    WINDOW.PRG     2074 ISICONIC()             (function  in ?)    WINDOW.PRG      659   659   754  2913 ISKINDOF()             (function  in ?)    WINDOW.PRG     2140  2614 ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6689

Re: Calculate position

Marco


change by IsIconic( oDlg:hWnd )
by Daniel Garcia-Gil
Sun Jul 10, 2011 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate position
Replies: 25
Views: 7188

Re: Calculate position

... bytes Time from start: 0 hours 0 mins 2 secs Error occurred at: 07/10/11, 13:33:51 Error description: Warning BASE/1004 Message not found: TDIALOG:ISICONIC Args: 11/09/2009 10:15 543 readme.txt 29/09/2009 16:34 423.424 Fivehc.lib 18/10/2009 08:20 716.296 Fivehcm.lib 26/10/2009 07:47 1.880.576 Fiveh.lib ...
by MarcoBoschi
Sun Jul 10, 2011 11:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate position
Replies: 25
Views: 7188

Re: Minimize Dialog and Window too

... = IDOK oWnd:Iconize() ELSE oWnd:end() ENDIF RETURN NIL FUNCTION RESIZE_DLG() oDlg:end( IDOK ) RETURN NIL FUNCTION RESIZE_WND() IF .NOT. IsIconic( oWnd:hWnd ) dialogo() ENDIF RETURN NIL
by MarcoBoschi
Mon Jan 24, 2011 2:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Minimize Dialog and Window too
Replies: 25
Views: 4207

Re: Minimize Dialog and Window too

Not
IsIconic( oWnd )
It should be
IsIconic( oWnd:hWnd )
by nageswaragunupudi
Mon Jan 24, 2011 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Minimize Dialog and Window too
Replies: 25
Views: 4207

Re: Minimize Dialog and Window too

Anser, IF you run this sample You never listen the sharp sound (IsIconic) #include "Fivewin.ch" REQUEST HB_GT_GUI_DEFAULT FUNCTION MAIN() LOCAL oWnd DEFINE WINDOW oWnd FROM 100 , 100 TO 500 , 500 PIXEL oWnd:bResized = { || IIF(IsIconic( oWnd ), ...
by MarcoBoschi
Mon Jan 24, 2011 11:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Minimize Dialog and Window too
Replies: 25
Views: 4207

Re: Minimize Dialog and Window too

How can I test iconized state OF a Dialog or Window?


IsIconic( <hWnd> ) –> lIconic

The below given fuction may also be useful for you.

To check whether a Window is in maximised state or not
IsZoomed( <hWnd> ) –> lMaximized

Regards
Anser
by anserkk
Mon Jan 24, 2011 10:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Minimize Dialog and Window too
Replies: 25
Views: 4207

Re: How to know if the status of a window?

Sorry, when I changed the search I found IsIconic( oWnd:hWnd ) IsZoomed( oWnd:hWnd ) http://forums.fivetechsupport.com/viewtopic.php?f=3&t=17990&p=94046&hilit=window+minimized#p94046 http://forums.fivetechsupport.com/viewtopic.php?f=6&t=4848&p=21415&hilit=window+minimized#p21415
by sambomb
Mon Oct 11, 2010 1:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to know the status of a window? [SOLVED]
Replies: 1
Views: 429

Re: Maximize and Minimize

Lailton

IsZoomed( hWnd )
IsIconic( hWnd )
by Daniel Garcia-Gil
Wed Apr 07, 2010 11:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Maximize and Minimize
Replies: 1
Views: 398
Next

Return to advanced search