Search found 24 matches: exstyle

Return to advanced search

Re: Desktop Alerts

É um exemplo de DesktopAlert, utilizando códigos de HTML. para executar utilize assim: MsgFancy(Memvar->oDlg,"Acesso negado!!! <br/><br/> Não é permitido modificar lançamentos quando já baixado (Repassado).",nil, CLR_YELLOW,.T.,.F.) coloque junto esta função... #define LWA_A...
by ronaldo
Thu Apr 12, 2018 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Desktop Alerts
Replies: 39
Views: 29691

New FTDN April/Abril 2013 (FWH 13.04)

April 2013 ========== * Enhancement: Enhanced vmh.prg on C Compiler path settings, and support for debug mode. * New: functions FW_GREATEST(...) and FW_LEAST(...). Similar to well known SQL functions GREATEST and LEAST, these functions return greatest or lowest non-nil value in a list of values. The...
by Antonio Linares
Wed May 01, 2013 6:21 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2013 (FWH 13.04)
Replies: 2
Views: 3502

Re: Como se crea una CLASE para dibujar líneas.

con el permiso del maestro mercado * ============================================================================ * CLASS TSLines Version 6.0 Mar/1/2008 * Author: Manuel Mercado * Freeware, you can freely use this class just by respecting the authorïs name. * ========================================...
by QAZWSX2K
Tue May 25, 2010 7:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como se crea una CLASE para dibujar líneas.
Replies: 8
Views: 1773

Re: Funcion para Agregar/Remover STYLES a un control in Run-Time

saludos hernan:: algun ejemplo simple de como aplicar la funcion.. GRACIAS Hola gracias a todos, pues es demasiado simple: Supongamos que tenemos un control que tenemos que QUITAR o AGREGAR EL TAB_STOP en tiempo de ejecucion, en funcion de una variable del aplicativo en cuestion. ChangeStyleWindow(...
by Hernan Diego Ceccarelli
Mon Jan 25, 2010 2:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funcion para Agregar/Remover STYLES a un control in Run-Time
Replies: 13
Views: 2458

Re: GRID ON RPREVIEW

Marcello, if you try to insert an control it is not transparent , it not run ok why ? sample @ 2,1 say osay Prompt "test" of oWnd size 40,100 DESIGN TRANSPARENT or @ 2,1 say osay Prompt "test" of oWnd size 40,100 DESIGN oSay:ltransparent:=.t. I try to insert : if ::lTransparent S...
by Silvio
Fri Jan 15, 2010 8:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GRID ON RPREVIEW
Replies: 11
Views: 2633

RibbonBar ALT key

Hello Antonio, I changed the method in TRibbonBar and added a class TXPanel. But I must do something wrong. If I press the ALT key I don’t see the panel. Would you be so kind to post a working sample. Thanks in advance Otto Otto, We are working on a Method KeybMode() that first of all may show those...
by Otto
Tue Jan 12, 2010 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RibbonBar ALT key
Replies: 10
Views: 1860

Re: FWH/xHarbour Menus

* DIALOG.PRG (Modified for using a brush to standard window color dialogs) * The brush is called WPAPER2 and it should be included in the .RC file ! // Add this line to your .RC file // WPAPER2 BITMAP "./Bitmaps/WPAPER2.BMP" #include "FiveWin.ch" #include "Constant.ch" ...
by E. Bartzokas
Mon May 25, 2009 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH/xHarbour Menus
Replies: 20
Views: 7786

Re: CONTEXTHELP

Hello, Otto!
It has to be something like:
#define WS_EX_CONTEXTHELP 1024
#define GWL_EXSTYLE (-20)
SetWindowLong( oWnd:hWnd, GWL_EXSTYLE, nOr( GetWindowLong( oWnd:hWnd, GWL_EXSTYLE ), WS_EX_CONTEXTHELP ) )
But for me it's also doesn' work... I can't understand the reason...
by Loach
Sat Apr 25, 2009 6:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CONTEXTHELP
Replies: 2
Views: 506

Desculpas, aqui la classe correcta: //-> con modificaciones - 23/09/2008 #include "FiveWin.ch" #include "Constant.ch" #define SS_CENTER 1 #define SS_RIGHT 2 #define SS_GRAYRECT 5 // BOXRECT #define TA_LEFT 0 #define TA_RIGHT 2 #define TA_CENTER 6 #define TA_TOP 0 #define TA_BOTTOM 8 #define COLOR...
by karinha
Tue Sep 23, 2008 7:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Karinha
Replies: 17
Views: 3701

Better do it this way, as it is an extended style: #define GWL_EXSTYLE (-20) SetWindowLong( oWnd:hWnd, GWL_EXSTYLE, WS_EX_CLIENTEDGE ) or SetWindowLong( oWnd:hWnd, GWL_EXSTYLE, nOr( GetWindowLong( oWnd:hWnd, GWL_EXSTYLE ), WS_EX_CLIENTEDGE ) ) to keep the previous extended style too
by Antonio Linares
Mon Jun 16, 2008 6:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: window styles
Replies: 13
Views: 2750

Change Dialog Style at runtime

How to change dialog style define from resource? RC: INFO DIALOG 6, 15, 473, 347 STYLE WS_POPUP | WS_VISIBLE | WS_SYSMENU FONT 10, "Courier" { } PRG: //perfectly as expected DEFINE DIALOG oDlg RESOURCE 'INFO' ... ACTIVATE DIALOG oDlg //------------------- //on the other prg with child window DEFINE ...
by fraxzi
Fri May 23, 2008 4:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change Dialog Style at runtime
Replies: 5
Views: 1340

... DIALOGEX 4,3,146,81 CAPTION "IDD_DLG" FONT 14,"Times New Roman",700,0 STYLE WS_CAPTION|WS_VISIBLE|WS_SYSMENU|WS_TABSTOP EXSTYLE WS_EX_CLIENTEDGE BEGIN CONTROL "Test",IDC_STC1,"Static",WS_CHILD|WS_VISIBLE,24,19,66,17 END When I selected WS_EX_CLIENTEDGE ...
by Ken Wantz
Mon Feb 25, 2008 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A Better Resource Editor?
Replies: 19
Views: 6908

Otto,

Try this:

SetWindowLong( oDlg:hWnd, GWL_EXSTYLE,;
nXor( GetWindowLong( ::hWnd, GWL_EXSTYLE ), WS_EX_CONTEXTHELP ) )
by Antonio Linares
Fri Jul 20, 2007 10:35 am
 
Forum: FiveWin for CA-Clipper
Topic: Windows 95 help icon on the caption of dialogs
Replies: 8
Views: 2447

Toni,

Has probado a comparar los estilos en tiempo de ejecución ?

MsgInfo( GetWindowLong( oFolder:hWnd, GWL_STYLE ) )
ó
MsgInfo( GetWindowLong( oFolder:hWnd, GWL_EXSTYLE ) )
by Antonio Linares
Thu May 17, 2007 7:33 am
 
Forum: FiveWin para Pocket PC
Topic: Folder desde recursos tipo Bottom
Replies: 17
Views: 4432

Sobreescribir Método

PROCEDURE tDialog_Modify() OVERRIDE METHOD Help95 CLASS tDialog WITH MyHelp95 RETURN *============================================ #define GWL_EXSTYLE -20 #define WS_EX_CONTEXTHELP 1024 Static Function MyHelp95() Local Self:=qSelf() if ::lHelpIcon == NIL ::lHelpIcon := .f. endif if ::lHelpIcon SetWi...
by César E. Lozada
Fri Mar 16, 2007 4:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Sobreescribir metodo ?
Replies: 12
Views: 2482
Next

Return to advanced search