Search found 73 matches: globally

Return to advanced search

Re: HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?

If you have your own preview function, you can set it globally. bPrevious := SetCustomPrintPreview( { |oDevice, oReport| MyPreview( oDevice, oReport ) } ) and keep changing whenever you want. You can try this example to begin ...
by nageswaragunupudi
Tue Sep 26, 2023 10:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?
Replies: 3
Views: 308

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

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

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

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

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

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

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

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

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

Re: Create help system with F1

chatGPT proposal: Topic ID: A unique identifier for each help topic. This field can be an auto-incrementing numeric value or a GUID (Globally Unique Identifier) that serves as a primary key for the table. Topic Title: The title or heading of the help topic. This field should store a concise ...
by Antonio Linares
Tue Jul 11, 2023 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 869

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( oGet:lFocused, { CLR_WHITE, CLR_HBLUE &...
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

Re: can use SWITCH Control in XBROWSE ?

... { bmpOn, bmpOff, bmpNil }, .t., { "Married", "Single" } ) If the browse has more than one logical column, we can globally set for all logical columns by: oBrw:SetChecks( ... )
by nageswaragunupudi
Tue May 30, 2023 12:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: can use SWITCH Control in XBROWSE ?
Replies: 7
Views: 512

Re: W3Schools webpage template "COMPANY" to mod harbour

... then it is like local. You only can access it inside the function in which you declared the variable. static is similar to JS variables declared globally (outside any function) have Global Scope. Static declaration in HARBOUR must be done before the main function. With TEMPLATE PARAMS you pass ...
by Otto
Mon May 16, 2022 6:22 pm
 
Forum: mod_harbour
Topic: W3Schools webpage template "COMPANY" to mod harbour
Replies: 7
Views: 816

Re: Excellent little app to remote control your mobile

Apart from MyMoblier, you can also use apps like R-HUB remote support servers, logmein, Teamviewer etc. for remotely accessing mobile phones from computers, desktops, laptops etc. They work well and are widely used globally by businesses and individuals.
by Holo3
Tue Aug 04, 2020 5:58 am
 
Forum: FiveWin for Pocket PC
Topic: Excellent little app to remote control your mobile
Replies: 1
Views: 8245
Next

Return to advanced search