Search found 6670 matches: button

Return to advanced search

Re: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna

bEditWhen works with all edit types. In case of EDIT_BUTTON, the button is inactive. In case of EDIT_LISTBOX and EDIT_GET_LISTBOX, the listbox opens (this is for information of the user) but the user can not change the value. bEditWhen works in all cases. ...
by nageswaragunupudi
Fri Mar 29, 2024 3:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna
Replies: 8
Views: 200

Re: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna

Hola Antonio

Una consulta,,, como desabilito un EDIT_BUTTON dentro de un xbrowse, dependiendo de la condicion

olbx101c:acols[4]:bEditWhen:= { || olbx101c:aArrayData[olbx101c:nArrayAt][5]="1" }

lo hago de esta manera pero no me funciona, sigue estando habilitado

Gracias
by elmoiquique
Thu Mar 28, 2024 4:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna
Replies: 8
Views: 200

Re: Control EDIT y readonly.

... el Xbrowse) que le permiten editar el registro o no. Normalmente estos GET los tengo :Readonly := .T., y cuando el usuario autorizado pincha en un Button los hago :Readonly := .F., para que se puedan editar. Así un usuario NO autorizado si imprime pantalla no ha podido alterar nada. Por eso quiero ...
by FiveWiDi
Thu Mar 28, 2024 7:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Control EDIT y readonly.
Replies: 5
Views: 134

Re: records on xbrowse

... inser a variable nTotalrecords at init oDbf:= TCustomer():New() oDbf:setorder(1) oDbf:Gotop() nTotalRecords:= oDbf:OrdKeyCount() and the on each button WHEN ( nTotalRecords > oBrw:nDataRows ) but it's wrong also
by Silvio.Falconi
Wed Mar 27, 2024 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 212

Re: records on xbrowse

oDbf:OrdKeyCount() ) This works only for oDbf. Using oBrw:nLen or oBrw:KeyCount() works for all datasources. ok but the button are not refreshed , only when I move the mouse into obrw for a sample WHEN ( oBrw:nDataRows <= oBrw:nLen ) not work WHEN ( oBrw:nDataRows >= oBrw:nLen ...
by Silvio.Falconi
Tue Mar 26, 2024 12:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 212

Re: Another for Btnbmp

the btnbmp class takes the color of the text to create the internal box when it has focus Yes, for painting focusrect in case of FLAT style buttons. but it shouldn't be like this....the box must be dotted and not necessarily take the color from the color of the text, honestly maybe operationally ...
by Silvio.Falconi
Mon Mar 25, 2024 11:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 603

Re: Another for Btnbmp

When an element, such as a button, is focused on a webpage, the browser typically outlines it with a dotted or solid border. This behavior is akin to the "FocusRect" you mentioned. The focus outline is crucial for accessibility, ...
by nageswaragunupudi
Mon Mar 25, 2024 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 603

Re: Another for Btnbmp

Dear Mr. Silvio when I press a button then a black border forms how do I remove the black border? By default, this border, called FocusRect is drawn around the button in focus, same way as Windows OS paints TButton, TButtonBmp. This border ...
by Silvio.Falconi
Mon Mar 25, 2024 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 603

Re: Another for Btnbmp

Dear Mr. Rao, When an element, such as a button, is focused on a webpage, the browser typically outlines it with a dotted or solid border. This behavior is akin to the "FocusRect" you mentioned. The focus outline is crucial for accessibility, ...
by Otto
Mon Mar 25, 2024 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 603

Re: Another for Btnbmp

Dear Mr. Silvio when I press a button then a black border forms how do I remove the black border? By default, this border, called FocusRect is drawn around the button in focus, same way as Windows OS paints TButton, TButtonBmp. This border ...
by nageswaragunupudi
Mon Mar 25, 2024 1:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 603

Re: Another for Btnbmp

... dotted rectangle must be formed and not a black rectangle Furthermore it is aesthetically ugly to look at How can I eliminate the movement of the button? when I move the mouse over a btnbmp control the button must change color without shrinking and without making the typical movement of the button ...
by Silvio.Falconi
Sat Mar 23, 2024 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 603

Re: WebView resize

... to create collapsible sections that mimic the TEXplorerBar's functionality. Buttons: Buttons in FiveWin can be directly translated to <button> elements in HTML. These buttons can be styled with CSS and made interactive with JavaScript, functioning within the WebView2 control. Panels ...
by Otto
Thu Mar 21, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 314

Re: Another for Btnbmp

... el procedimiento probablemente sea incorrecto al crear el borde, de lo contrario no se puede explicar in my Tbtnclr class when I press the button no internal black border is formed the procedure is probably wrong when creating the border otherwise it can't be explained
by Silvio.Falconi
Thu Mar 21, 2024 9:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 603

Re: Question about performance RowSet

when i have a button to "insert' a new record, is there other way editing data without RowSet object? Please try this and let us know.   oData := TArrayData():New( oCn, "select * from <tablename> limit ...
by Eroni
Wed Mar 20, 2024 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 467

Another for Btnbmp

I have two btnbmp https://i.postimg.cc/gjqPTnSn/uu.png when I press a button then a black border forms how do I remove the black border? the test Function test()   local oDlg,oFont,oBold   local oCursorBtn :=TCursor():New(,'HAND')local ...
by Silvio.Falconi
Tue Mar 19, 2024 11:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 603
Next

Return to advanced search