Search found 166 matches: ocontrol

Return to advanced search

Re: also error with btnbmp SHOWPOPUP

... .... ENDMENU ACTIVATE POPUP oMenu OF oParent AT oBrw:nTop+nRow, oBrw:nLeft+nCol RETURN (NIL) and another on action Function MenuContextual(oControl,oBrw,oDbf,cIniUser,cSection,lExport,lColConfig,oParent,oCont ) .... ENDMENU return oMenu and another with btnbmp ocolonne .... ACTION oColonne:ShowPopUp( ...
by Silvio.Falconi
Sun Mar 31, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1756

Re: TITLE CLASS BUG with oDLg TRansparent

... is shown behind the controls too. If we want to display the background (color/brush/gradient) of a control to be shown, then we should set oControl:lTransparent := .F. in the dialog's init clause. Please test the small sample. This way you can show the gradient of oTitle on a transparent ...
by Silvio.Falconi
Mon Mar 18, 2024 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 1698

Re: TITLE CLASS BUG with oDLg TRansparent

... is shown behind the controls too. If we want to display the background (color/brush/gradient) of a control to be shown, then we should set oControl:lTransparent := .F. in the dialog's init clause. Please test the small sample. This way you can show the gradient of oTitle on a transparent ...
by nageswaragunupudi
Mon Mar 18, 2024 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 1698

Re: How to find out the IDs of controls and types?

Dear Jimmy,

nAt = AScan( ::aControls, { | oControl | oControl:hWnd == hChild } )
::aControls[ nAt ]
by Antonio Linares
Tue Jan 09, 2024 6:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to find out the IDs of controls and types?
Replies: 16
Views: 1868

PaintBorder of Btnbmp ( fwteam)

... run ok the border color https://i.postimg.cc/GpgQV8XH/hh.gif I set the btnbmps into the scrollpanel with :nClrBorder := { || (IIF(ocontrol:lMOver,CLR_BLUE,CLR_HGRAY)) }
by Silvio.Falconi
Sat Jun 10, 2023 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PaintBorder of Btnbmp ( fwteam)
Replies: 1
Views: 157

Re: Bug in TBtnClr

Dear Enrico,

tbtnclr.prg modified as:

static Function PickColor(nColor,oControl)

many thanks for your feedback
by Antonio Linares
Fri May 19, 2023 6:52 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in TBtnClr
Replies: 2
Views: 12547

Re: how to "activate" Spacebar ?

Dear Jimmy,

Please try with:

oControl:PostMsg( WM_KEYDOWN, 32 )

or

oControl:PostMsg( WM_CHAR, 32 )
by Antonio Linares
Sun Jan 15, 2023 7:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to "activate" Spacebar ?
Replies: 1
Views: 153

Re: FiveWin ActiveX Event

You may give the focus to a specific control before sending the key

oControl:SetFocus()
by Antonio Linares
Sun Jul 17, 2022 10:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin ActiveX Event
Replies: 6
Views: 634

Re: Rectangle as bitmap

oControl:SaveToBmp("test.bmp")

Enviado desde mi SM-M325FV mediante Tapatalk
by Antonio Linares
Thu Oct 07, 2021 10:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rectangle as bitmap
Replies: 35
Views: 1999

Re: Mostrar/ocultar consulta presionando/soltando boton de mouse

cnavarro wrote:Y si investigas tambien con el
oControl:bLButtonUp = { | nRow, nCol | ....



\samples\TESTMOUS.PRG ?

Regards, saludos.
by karinha
Wed Sep 01, 2021 9:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mostrar/ocultar consulta presionando/soltando boton de mouse
Replies: 10
Views: 1107

Re: Mostrar/ocultar consulta presionando/soltando boton de mouse

Y si investigas tambien con el
oControl:bLButtonUp = { | nRow, nCol | ....
by cnavarro
Wed Sep 01, 2021 4:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mostrar/ocultar consulta presionando/soltando boton de mouse
Replies: 10
Views: 1107

Re: XBrowse: Using Get for incremental Seek/Filters

... if the user select a checkbox and then click on ok the procedure call this function Function ChangeBrowse(oBrw,oControl)            local aItems:= {}            AEval( oBrw:aCols, { ...
by Silvio.Falconi
Thu Feb 18, 2021 8:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3877

Re: change on line a combo

Silvio, can you please try this: Function ChangeBrowse( oBrw, oControl) local aItems:= {} AEval( oBrw:aCols, { |o| If( o:lHide,, iif( len(alltrim(o:cHeader))>0, AAdd( aItems, o:cHeader ) , ) ) } ) oControl[2]:setItems(aItems) oControl[2]:refresh() oBrw:Setfocus() ...
by Silvio.Falconi
Tue Nov 17, 2020 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change on line a combo
Replies: 24
Views: 5389

Re: change on line a combo

Silvio, can you please try this: Function ChangeBrowse( oBrw, oControl) local aItems:= {} AEval( oBrw:aCols, { |o| If( o:lHide,, iif( len(alltrim(o:cHeader))>0, AAdd( aItems, o:cHeader ) , ) ) } ) oControl[2]:setItems(aItems) oControl[2]:refresh() oBrw:Setfocus() ...
by Otto
Tue Nov 17, 2020 4:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change on line a combo
Replies: 24
Views: 5389

Re: NO RESPONSE = TITLETEXT Refresh() Arrays...???

... is correct, we advise you to create the controls only the first time and when refreshing data subsequently, you only change the data displayed by oControl:SetText( cNewText ). The code to refresh the data can be something like this: for i := 1 to Len( oVar_AA )   for j := 1 to ...
by nageswaragunupudi
Sun Jun 07, 2020 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLETEXT Refresh() Arrays...(SOLVED)
Replies: 2
Views: 520
Next

Return to advanced search