Search found 553 matches: element

Return to advanced search

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

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

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

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

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

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

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

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

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

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

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

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

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

Re: DBF to Excel Sheet, without Excel, using ADO ?

... creating Excel Table, ADOX can not create more than 7 fields at a stretch and the field MARRIED is the 8th field. where do you read it about 7st Element :?: as i can say your CODE is wrong. you need a "fresh" ADOC.Column for every Column :!: FUNCTION FW_ADOX_CreateExcelTable( oCn, ...
by Jimmy
Thu Aug 17, 2023 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2579

Re: Saving OuterHTML using Await Implementation with TWebView

... developers make synchronous calls using the TWebView control, typically used in an asynchronous manner. - This class allows waiting for specific elements to be loaded on the web page, ensuring the content is available for extraction. - The idea is to simulate the 'await' functionality seen in ...
by CharlesKwon
Thu Aug 17, 2023 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1632
Next

Return to advanced search