Search found 555 matches: element

Return to advanced search

Re: Reload data in a combobox

... } ) ) on the nigth the last solution was this https://i.postimg.cc/yYK3VmxP/resolved.gif the first combobox two element the second combobox one element on save I must save the text of categories I think this problem come from dbf because is the same dbf sample ...
by Silvio.Falconi
Wed May 01, 2024 7:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reload data in a combobox
Replies: 3
Views: 123

combobox color

I have a combobox

@ 10, 120 COMBOBOX aget[1] VAR cCategoria Items ArrTranspose(aCategorie )[ 2] size 200,90 PIXEL OF oDlg


on first element of aCategorie there is "nessuna" and the last item is "Aggiungi"

I wish change color and font of text only on these two items
by Silvio.Falconi
Fri Apr 26, 2024 8:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: combobox color
Replies: 22
Views: 557

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

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 ...
by Otto
Mon Mar 25, 2024 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5082

Re: FWH Gradiens .. seem slower FWH 2310 - RAO

Dear Rick, In function LightGreyGrad() an array with just one element (one subarray) is used In function DarkGreyGrad() an array with two elements (two subarrays) is used so function DarkGreyGrad() is doing more work than function LightGreyGrad() Try with ...
by Antonio Linares
Sat Feb 24, 2024 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH Gradiens .. seem slower FWH 2310 - RAO
Replies: 2
Views: 181

Parameterization of xReport

... In our project, we use a custom CSS class named .custom-thead to style the appearance of table headers. This class is applied to the <thead> element of the table to give it a unique look. The .custom-thead class is defined as follows: .custom-thead { background-color: #007bff; /* Blue */ ...
by Otto
Sat Jan 13, 2024 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameterization of xReport
Replies: 2
Views: 572

Re: Browse Json

Yes thank you, but how do I set up the TCBrowse to browse it. I have been able to see the data in the Json, it is basically an array where each element contains a hash which has the three fields returned from the "for json auto" call. But can I pass the object created from the hb_JsonDecode ...
by byron.hopp
Thu Jan 11, 2024 1:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Browse Json
Replies: 8
Views: 838

Re: xBrowser

Mr Rao, Goodnight! In the following example, although we have 7 columns, when placing the 7th element in the array the program does not execute. That's why there are 6 elements in the array. I think the color change occurs when the content becomes larger than the space ...
by oliveiros junior
Wed Dec 20, 2023 9:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser
Replies: 8
Views: 1260

oBrw:report() ... control fonts

... 2     [   2] = N   3Stack Calls===========   Called from: Lib\report.prg => TREPORT:SAY( 528 ) let say me there are only two element of array aFont but I need N 3 but on aFont there are 3 element ( xbrowse(oRep:afont) ) https://i.postimg.cc/FFp540r3/kkkkk.png ...
by Silvio.Falconi
Wed Dec 13, 2023 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBrw:report() ... control fonts
Replies: 0
Views: 312

SetArray xBrowser

... following: I have a browser with 3 columns and 20 lines. Each line has an image and below the image description. When I do a search to look for an element that only occurs once in the browser, it returns the description of that element in the first line and column, but it does not renew the image, ...
by oliveiros junior
Tue Dec 12, 2023 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetArray xBrowser
Replies: 2
Views: 276

Re: show a string into xbrowse

Simpler way is: oCol:cEditPicture := "###gg" run only the last element https://i.postimg.cc/jqckNKDN/kio.png sample cstring:= "30/60/90" aData := hb_ATokens(cString,"/") @ 10, 5 XBROWSE oBrw OF oDlg ; COLUMNS 1,2; ...
by Silvio.Falconi
Tue Dec 12, 2023 10:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show a string into xbrowse
Replies: 4
Views: 412

Re: xbrowse and tooltip

The Red dot would be a extra element into the cell.... Mr. Rao will know the possibilities. But this is also a option. 1 Coloring the cell like in this post : https://forums.fivetechsupport.com/viewtopic.php?f=3&t=40217&hilit=cellborder ...
by Marc Venken
Fri Nov 24, 2023 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse and tooltip
Replies: 5
Views: 569

Fivewin controls similar to javascript elements

Dear friends, I asked ChatGPT for tutoring: I use FiveWin, and it appears to be based on C++. In this environment, we utilize controls similar to elements. However, these controls consume events, necessitating their forwarding to the superclass. To me, the Windows queue seems to bear a strong resemblance ...
by Otto
Tue Nov 21, 2023 7:33 am
 
Forum: mod_harbour
Topic: Fivewin controls similar to javascript elements
Replies: 2
Views: 1131

Re: SetDlgGradient

Try like this:
Code: Select all  Expand view
SetDlgGradient( { { 0.6, CLR_BLUE, CLR_WHITE }, { 0.4, CLR_WHITE, CLR_BLUE }, .F. } )

If the last element of the gradient array is .F., instead of an array, the gradient is horizontal.
by nageswaragunupudi
Thu Sep 28, 2023 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetDlgGradient
Replies: 10
Views: 850

Detached Local

... it can be Different Layout   MENUITEM "Player"   MENU      AddMenuPlayer()   ENDMENU but i always get only "last" Element ... #include "fivewin.ch"#define Use_Detach_LocalSTATIC nRow     := 3STATIC nCol     := 3function Main()local oWnd, oMenu  ...
by Jimmy
Thu Sep 14, 2023 10:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Detached Local
Replies: 2
Views: 189
Next

Return to advanced search