Search found 16 matches: updateuistate

Return to advanced search

Re: Checkbox still strange

This is the offending code: case nMsg == WM_LBUTTONDOWN if ::lTransparent .and. ( ::IsKindOf( "TRADIO" ) .or. ::IsKindOf( "TCHECKBOX" ) ) ::oWnd:Refresh( .f. ) endif return ::LButtonDown( nHiWord( nLParam ), nLoWord( nLParam ), nWParam ) The changes to WM_UPDATEUISTATE and the ad...
by TimStone
Tue Nov 09, 2010 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Checkbox still strange
Replies: 34
Views: 6067

Re: TRANSPARENCIA SAY Y CHECKBOX fallan al presionar tecla alt

METHOD HandleEvent( nMsg, nWParam, nLParam ) CLASS TControl /* Cambios propuestos por A. Linares y Patricio Avalos Aguirre*/ case nMsg == WM_UPDATEUISTATE // buttons, radios and checkboxes were erased when pressing ALT nResult = Super:HandleEvent( nMsg, nWParam, nLParam ) if Valtype( ::lTransparent...
by Armando Picon
Sun Aug 01, 2010 4:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TRANSPARENCIA SAY Y CHECKBOX fallan al presionar tecla alt
Replies: 16
Views: 3226

Re: TRANSPARENCIA SAY Y CHECKBOX fallan al presionar tecla alt

Thanks for the help. case nMsg == WM_LBUTTONDOWN if Valtype( ::lTransparent ) = "L" .and. ::lTransparent .and. ::IsKindOf( "TRADIO" ) .or. ::IsKindOf( "TCHECKBOX" ) ::oWnd:Refresh() endif return ::LButtonDown( nHiWord( nLParam ), nLoWord( nLParam ), nWParam ) case nMsg ...
by acwoo1
Sun Aug 01, 2010 5:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TRANSPARENCIA SAY Y CHECKBOX fallan al presionar tecla alt
Replies: 16
Views: 3226

Re: Dialog refresh

Antonio, Enrico, by first testing the problem seems to be solved case nMsg == WM_UPDATEUISTATE // buttons, radios and checkboxes were erased when pressing ALT nResult = Super:HandleEvent( nMsg, nWParam, nLParam ) if Upper( ::ClassName() ) == "TBTNBMP" ::Refresh() endif // ::oWnd:Refresh() ...
by MarcoBoschi
Sun Dec 13, 2009 2:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog refresh
Replies: 13
Views: 2075

Re: Dialog refresh

I just tried to remove WM_UPDATEUISTATE handling and found that the sample I already provided at that time works just fine now: #include "Fivewin.ch"FUNCTION MAIN()    LOCAL oWnd    DEFINE WINDOW oWnd    DEFINE BUTTONBAR OF oWnd 2007    DEFINE BUTTON;           OF oWnd:oBar;       ...
by Enrico Maria Giordano
Sun Dec 13, 2009 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog refresh
Replies: 13
Views: 2075

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: 7757

Re: Still trouble Transparent say in dialogs

Thanks Gunther

I am still missing the define for WM_UPDATEUISTATE

Can you post it here ?

TIA

Richard
by Richard Chidiak
Fri Feb 06, 2009 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Still trouble Transparent say in dialogs
Replies: 6
Views: 1033

Junio 2008 ======== * Mejora: En la clase TActiveX se han mejorado las funciones OleGetProperty(), OleSetProperty() y OleInvoke(). Por favor, revisa el código fuente en source\classes\TActiveX.prg * Corrección: Cambio menor en la función WBrwLine() de la clase TWBrowse. * Mejora: En la clase TContro...
by Antonio Linares
Tue Jul 22, 2008 10:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2008 (8.06)
Replies: 1
Views: 3003

New FTDN June/Junio 2008 (8.06)

June 2008 ======= * Enhancement: Class TActiveX improved used functions OleGetProperty(), OleSetProperty() and OleInvoke(). Please review source\classes\TActiveX.prg * Fix: Minor change in Class TWBrowse function WBrwLine(). * Enhancement: Class TControl Method HandleEvent() message WM_UPDATEUISTATE...
by Antonio Linares
Fri Jun 27, 2008 11:33 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2008 (8.06)
Replies: 1
Views: 3003

Construcción Abril 2008 ================= * Mejora: El método MeasureItem() devuelve tamaños ampliados para las opciones de los "menuitems". * Corrección: La clase TControl ha sido modificada para procesar apropiadamente el mensaje WM_UPDATEUISTATE. Esto causaba que algunos controles no se visualiza...
by Antonio Linares
Thu Apr 24, 2008 9:44 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April / Abril 2008 (8.04)
Replies: 1
Views: 3642

New FTDN April / Abril 2008 (8.04)

April 2008 ======= * Enhancement: Class TWindow Method MeasureItem() returns wider sizes for menuitems. * Fix: Class TControl has been modified to properly process WM_UPDATEUISTATE message. This was causing some controls not to be seen when pressing Alt in Vista. * New: Help CHM files support, using...
by Antonio Linares
Fri Apr 11, 2008 11:42 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April / Abril 2008 (8.04)
Replies: 1
Views: 3642

COLORES EN GROUP BOX

Buenas Amigos... Por favor, una ayuda... No consigo poner COLORES en un GROUPBOX. Ya modifique el DIALOGO... Mas... // BROWSE_CADASTRO_BANCOS DIALOG 1, 20, 530, 275 STYLE DS_ABSALIGN | DS_MODALFRAME | 0x4L | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_THICKFRAME CAPTION "SCB - Gerenciamento do Cadastro ...
by karinha
Fri Aug 31, 2007 7:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COLORES EN GROUP BOX
Replies: 11
Views: 3422

//-> Change in your class GROUP.PRG METHOD HandleEvent( nMsg, nWParam, nLParam ) CLASS TGroup local nResult if ::lDrag .and. nMsg == WM_NCHITTEST // To have a standard behavior on Clicks return DefWindowProc( ::hWnd, nMsg, nWParam, nLParam ) endif if nMsg == WM_UPDATEUISTATE // Groups and contain...
by karinha
Thu Aug 24, 2006 4:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: trasparent error in dialog
Replies: 8
Views: 2199

//-> Change in your class GROUP.PRG

#define WM_UPDATEUISTATE 296 // 0x0128
by karinha
Thu Aug 24, 2006 4:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: trasparent error in dialog
Replies: 8
Views: 2199

Antonio, mi falta algo en la CLASSE GROUP.PRG, para ficar perfecta como la antigua. ke és??? #include "FiveWin.ch" #include "Constant.ch" #define WM_NCHITTEST 132 // 0x84 #define WM_UPDATEUISTATE 296 // 0x0128 #ifdef __XPP__ #define Super ::TControl #define New _New #endif //------------------------...
by karinha
Mon Mar 27, 2006 8:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Message not found: TSAY:LTRANSPARENT
Replies: 21
Views: 6344
Next

Return to advanced search