Search found 37 matches: setstyle

Return to advanced search

Re: New FTDN October/Octubre 2023 (FWH 23.10)

... AddImage( cImage ) Para añadir cualquier imagenm no sólo mapas de bits e iconos. * Clase TListView: (source\classes\tlistvie.prg) - Nuevo método SetStyle( nStyle ) Por favor, revisa el código fuente prg para conocer la lista de estilos. * ListView samples: (1) listvie1.prg revisado (2) listvie2.prg ...
by Antonio Linares
Sun Dec 03, 2023 4:46 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3576

New FTDN October/Octubre 2023 (FWH 23.10)

... - New Method AddImage( cImage ) To add any image, not only bitmaps and icons. * TListView class: (source\classes\tlistvie.prg) New Method SetStyle( nStyle ) Refer prg source for the list of styles. * ListView: Samples: (1) revised litvie1.prg amd new sample (2) listvie2.prg for Unicode ...
by Antonio Linares
Thu Nov 02, 2023 9:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3576

Re: Style WS_TABSTOP

hi,
nageswaragunupudi wrote:The method is WinStyle, not SetStyle
Code: Select all  Expand view
oControl:WinStyle( WS_TABSTOP,  .T.  or .F. )

Thx for Answer.

Yes, this work now :D
by Jimmy
Tue Aug 09, 2022 7:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Style WS_TABSTOP
Replies: 6
Views: 474

Re: Style WS_TABSTOP

Extremely sorry for my typo.

The method is WinStyle, not SetStyle

Code: Select all  Expand view
oControl:WinStyle( WS_TABSTOP,  .T.  or .F. )
by nageswaragunupudi
Tue Aug 09, 2022 2:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Style WS_TABSTOP
Replies: 6
Views: 474

Re: Style WS_TABSTOP

... oImage:lBmpTransparent := .F.      oImage:bLDblClick := { || MsgInfo( "Hello World" ) }      // Crash here      oImage:SetStyle( WS_TABSTOP, .F. )   ACTIVATE WINDOW oDlg CENTEREDRETURN or this   iMax := LEN(oObj:aControls)   FOR ii := 1 TO iMax     oControl ...
by Jimmy
Tue Aug 09, 2022 1:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Style WS_TABSTOP
Replies: 6
Views: 474

Re: BTNBMP default button

Damiano,

Try this:

#define BM_SETSTYLE 244

oDlg:bInit := { || oBtnBmp:SendMsg( BM_SETSTYLE, BS_DEFPUSHBUTTON, 1 ) }

or

oDlg:bInit := { || oBtnBmp:PostMsg( BM_SETSTYLE, BS_DEFPUSHBUTTON, 1 ) }
by Antonio Linares
Thu May 26, 2022 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BTNBMP default button
Replies: 9
Views: 598

Re: Colorized cell of xbrowse

... { { 1, RGB( 252, 235, 220 ), RGB( 255, 0,0 ) } }}} endif NEXT :CreateFromCode() :aCols[ 1 ]:nWidth := 100 :aCols[ 1 ]:nDataStrAlign := AL_LEFT :SetStyle( 2018 ) end with static function ChangeColor( oBrw, n ) return {|| { CLR_BLACK, ColorCell( oBrw:aRow[ n ]:VALUE ) } } static function ColorCell( ...
by FranciscoA
Mon Mar 07, 2022 2:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colorized cell of xbrowse
Replies: 13
Views: 1258

Re: Colorized cell of xbrowse

... { { 1, RGB( 252, 235, 220 ), RGB( 255, 0,0 ) } }}} endif NEXT :CreateFromCode() :aCols[ 1 ]:nWidth := 100 :aCols[ 1 ]:nDataStrAlign := AL_LEFT :SetStyle( 2018 ) end with static function ChangeColor( oBrw, n ) return {|| { CLR_BLACK, ColorCell( oBrw:aRow[ n ]:VALUE ) } } static function ColorCell( ...
by Silvio.Falconi
Sun Mar 06, 2022 4:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colorized cell of xbrowse
Replies: 13
Views: 1258

Re: FWH 2102: GET Upper, Lower, Proper Cases

... the RC file, ES_LOWERCASE takes precedence. 4) If ES_LOWERCASE is specified in the RC file, it overrides the picture clause "@!" 5) oGet:SetStyle( "UPPER" / "LOWER"/ "PROPER" ) can be used to force Upper,Lower or Proper cases. 6) oGet:SetStyle() over-rides ...
by nageswaragunupudi
Sat Mar 06, 2021 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2102: GET Upper, Lower, Proper Cases
Replies: 3
Views: 768

Re: falla ribbon style 2015

Antonio and James made a SetStyle for ribbon , search on english forum
by Silvio.Falconi
Sun Jan 05, 2020 5:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: falla ribbon style 2015
Replies: 2
Views: 625

Re: tabs look 2015

my new class have 3 colors set you can insert wich you want for your application as for the ribbonbar setstyle 1. Line set is the line you can see here : https://i.postimg.cc/vmPWcj7s/line.jpg 2. Focus ( selected) 3. not focus ( no selected) each tab have two ...
by Silvio.Falconi
Mon Dec 23, 2019 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tabs look 2015
Replies: 23
Views: 3669

Re: Ribbon Theme

... RB_THEME_ORANGE 10 #define RB_THEME_PURPLE 11 where are the syle from 1 to 5 :) then we must add a new methos direclty to ribbon called METHOD SetStyle( nStyle ) or change this METHOD SetStyles( l2010, l2013, l2015, nTopMargin, nClrPaneRB, nClrBoxOut, nClrBoxIn,; nClrBoxSelOut, nClrBoxSelIn, ...
by Silvio.Falconi
Mon May 06, 2019 11:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28029

Re: Xbrowse :SetStyle( 2018 ) ERROR

Nages,
Ithink we must change also the bar (graphics) or add a new as MARQSTYLE_HIGHLWIN10
not blue but green clear
by Silvio.Falconi
Wed Jan 16, 2019 12:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse :SetStyle( 2018 ) ERROR
Replies: 4
Views: 859

Re: Xbrowse :SetStyle( 2018 ) ERROR

thanks
by Silvio.Falconi
Tue Jan 15, 2019 2:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse :SetStyle( 2018 ) ERROR
Replies: 4
Views: 859

Re: Xbrowse :SetStyle( 2018 ) ERROR

Right. Fixed for next release. Request you to change line 8515 of xbrowse.prg: Existing:         OSend( oMenu, "_L" + Str( ::n2KStyle, 4 ), .t. )  Change this line as:         OSend( oMenu, "_L" + Str( Min( ...
by nageswaragunupudi
Tue Jan 15, 2019 2:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse :SetStyle( 2018 ) ERROR
Replies: 4
Views: 859
Next

Return to advanced search