Search found 240 matches: focused

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, as ...
by nageswaragunupudi
Mon Mar 25, 2024 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4942

Re: Another for Btnbmp

... has to use colors/gradients to indicate which button has focus. I provide you a sample program, suppressing drawing of border while indicating the focused button with colors. I used some simple colors for demonstration, but you can use your own colors/gradients according to your taste. function ...
by Silvio.Falconi
Mon Mar 25, 2024 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4942

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

Re: Another for Btnbmp

... has to use colors/gradients to indicate which button has focus. I provide you a sample program, suppressing drawing of border while indicating the focused button with colors. I used some simple colors for demonstration, but you can use your own colors/gradients according to your taste. function ...
by nageswaragunupudi
Mon Mar 25, 2024 1:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4942

Re: WebView2 Essentials: Guides, Tips & Resources

... WebView_Create, SetWindowPos) suggests integration with lower-level system APIs or another library for web view control. The class design is focused on interaction between the native application and the web view, providing functionalities like navigation, script execution, and event handling. ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 481

Re: How To Change Globally GET Text color when it is focused

Dear Rao Sir ,

Many Thanks a lot !! Now the problem is resolved its working as expected.

Thanks
Shridhar
by shrifw
Sun Aug 13, 2023 5:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1553

Re: How To Change Globally GET Text color when it is focused

Hi Karinha , Thanks for this but mine requirement is bit different as given below : GETs are classified ================== 1. READ/WRITE GET Focus ==> { nRGB(111, 30, 81) , nRGB(245, 235, 147) } 2. READ/WRITE GET Un-Focus ==> { nRGB(43, 43, 43) , nRGB(248, 239, 186) } 3. READONLY GET ==> {...
by nageswaragunupudi
Sat Aug 12, 2023 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1553

Re: How To Change Globally GET Text color when it is focused

Hello, using this example, tell me what remains to be done? Hola, usando este ejemplo, dime ¿qué queda por hacer? // C:\FWH..\SAMPLES\CORMEMO.PRG**************************************************** Multi SAY/GET testing in 32 bit Xbase++ mode....** Jon Berg 10-8-99          ...
by karinha
Sat Aug 12, 2023 7:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1553

Re: How To Change Globally GET Text color when it is focused

2. READ/WRITE GET Un-Focus ==> { nRGB(43, 43, 43) , nRGB(248, 239, 186) }
3. READONLY GET ==> { nRGB(43, 43, 43) , nRGB(248, 239, 186) }

Same colors for both readonly and read/write?
by nageswaragunupudi
Sat Aug 12, 2023 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1553

Re: How To Change Globally GET Text color when it is focused

Hi Karinha , Thanks for this but mine requirement is bit different as given below : GETs are classified ================== 1. READ/WRITE GET Focus ==> { nRGB(111, 30, 81) , nRGB(245, 235, 147) } 2. READ/WRITE GET Un-Focus ==> { nRGB(43, 43, 43) , nRGB(248, 239, 186) } 3. READONLY GET ==> { ...
by shrifw
Sat Aug 12, 2023 5:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1553

Re: How To Change Globally GET Text color when it is focused

#Include "Fivewin.Ch"#Define CLR_SOFTYELLOW nRGB( 255, 251, 225 )FUNCTION Main()   LOCAL...   MEMVAR...   PRIVATE..   PUBLIC...   SetBalloon( .T. )   SkinButtons()   SetGetColorFocus(...
by karinha
Sat Aug 12, 2023 3:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1553

Re: How To Change Globally GET Text color when it is focused

Dear Rao Sir ,

Sorry for the wrong the TITLE of the Topic but I am looking for to set color for READONLY GET which becomes disabled state on WHEN condition.

Thanks
Shridhar
by shrifw
Sat Aug 12, 2023 2:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1553

Re: How To Change Globally GET Text color when it is focused

I had posted on the How to change GET Text Color when it is focused.


The simplest way is:
Code: Select all  Expand view
SetGetColorFocus( [nFocusColor] )

at the beginning of your application.
by nageswaragunupudi
Sat Aug 12, 2023 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1553

Re: How To Change Globally GET Text color when it is focused

Dear Rao Sir , As the below code works for Active GETs when they Focus/Unfocus but it is not for READONLY GETS what is the property to set color also readonly GETs ( which is basically enabled as per WHEN condition ) TGet():bColorBlock :=  { |oGet| IF( oGet:lFocused, { CLR...
by shrifw
Sat Aug 12, 2023 10:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Change Globally GET Text color when it is focused
Replies: 13
Views: 1553

HOW TO CONFIGURE GLOBALLY BORDER WHEN GET IS FOCUSED?

Dear All , How we can configure to show the BORDER when GET is focused for unfocused GETs do not want to show the border. I am looking similar solution as color setting focus/un-focus the given below.   TGet():bColorBlock :=  { |oGet| IF( ...
by shrifw
Sat Jun 24, 2023 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW TO CONFIGURE GLOBALLY BORDER WHEN GET IS FOCUSED?
Replies: 0
Views: 150
Next

Return to advanced search