Search found 398 matches: highlight

Return to advanced search

Re: Ue Studio New Licence Modell

Dear Tim,

We use Antonino Perricone Harbour syntax highlighting

We should ask him to include, if possible, FWH syntax into it or simply create a new one using these guidelines:

https://code.visualstudio.com/api/language-extensions/syntax-highlight-guide
by Antonio Linares
Thu May 26, 2022 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ue Studio New Licence Modell
Replies: 20
Views: 1360

Highlight the numbers

I have this array

Image


I wish Highlight the numbers are on first column from column 4 to 8

sample :

Image
by Silvio.Falconi
Thu May 05, 2022 8:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Highlight the numbers
Replies: 0
Views: 172

Re: color the cells of the xbrowse

... the numbers on the same line second operation (2) the same numbers on different lines It is the final operator who by selecting a checkbox can highlight the numbers (1) or (2)
by Silvio.Falconi
Wed Apr 20, 2022 9:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: color the cells of the xbrowse
Replies: 11
Views: 881

search highest digit in the array

... the last line there is the value 663 the function should return me that in the combination (first column) the maximum output is 663 (9 column) and highlight it (bringing the cursor to that position)
by Silvio.Falconi
Wed Mar 09, 2022 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: search highest digit in the array
Replies: 7
Views: 508

Copy File Name

Hi,

In some application (for example, Total Commander or Explorer) I can highlight the file name and copy it to the clipboard. Is it possible to do the same from the FWH code ?
by Natter
Thu Jan 20, 2022 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy File Name
Replies: 21
Views: 1097

change font header on line

... header when I select the corresponding column in the combobox, when I change column the previous one must go back to the previous font, this to highlight the column where to look for information How can it be done ?
by Silvio.Falconi
Sun Jan 02, 2022 9:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change font header on line
Replies: 0
Views: 203

Print RTF using tPRINTER class ?????

... and I can NOT use the REPORT class. At the end of the document is the DISCLAIMER which the customers want to create themselves, and they want to highlight areas, underline other text, make some bold, and change print sizes. All of this is possible using the RTF5 class. I am able to retrieve text ...
by TimStone
Fri Dec 10, 2021 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Print RTF using tPRINTER class ?????
Replies: 6
Views: 797

Re: Opinions wanted: Browse Refresh Issue

Here is the problem. When browsing a file, using the down arrow, as the highlight bar move, it replaces the content of the row with the original one. So, with inventory, if the partnumber 123 is displayed, as the person scrolls down the list of other parts ...
by nageswaragunupudi
Wed Nov 03, 2021 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Opinions wanted: Browse Refresh Issue
Replies: 4
Views: 497

Opinions wanted: Browse Refresh Issue

... was built by their computer tech, so I don't know about the motherboard. Here is the problem. When browsing a file, using the down arrow, as the highlight bar move, it replaces the content of the row with the original one. So, with inventory, if the partnumber 123 is displayed, as the person ...
by TimStone
Tue Nov 02, 2021 1:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Opinions wanted: Browse Refresh Issue
Replies: 4
Views: 497

Re: Finding XBrowse current record

... down this road because it was the only thing I could get working. However, what I would really like to figure out, is how to find the currently highlight row no matter how the user gets there, click, double-click, arrow keys, mouse, etc. The reason I want to do this is that I want to show two ...
by James Bott
Tue Jul 06, 2021 11:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Finding XBrowse current record
Replies: 11
Views: 1450

Re: Finding XBrowse current record

I am trying to find the current record in a XBrowse. The highlighted row is the current record. I am using FWH 1805 and xHarbour, so things may be different now. The behavior is consistent throughout all versions from the beginning of xbrowse till now. ...
by nageswaragunupudi
Sun Jul 04, 2021 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Finding XBrowse current record
Replies: 11
Views: 1450

Finding XBrowse current record

... so things may be different now. Here is the problem: // This always shows data from the first record in the indexed database, NOT the currently highlighted record in the xbrowseoBrwCust:bLDblClick:= {| oCustomers | msgInfo(oCustomers:custno), msgInfo(oCustomers:last) } ...
by James Bott
Thu Jul 01, 2021 8:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Finding XBrowse current record
Replies: 11
Views: 1450

Re: Make para BCC10

... “Advanced system settings” in the left-side pane. Click on the "Advanced" tab. Click on the "Environment Variables..." button. Highlight the "Path" System variable (bottom). Click on the "Edit..." button. Add the path to the \bin folder: In Windows 7: Append ...
by cnavarro
Sun Mar 28, 2021 5:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Make para BCC10
Replies: 7
Views: 1164

Re: Highlight cel in xbrowse when xbrowse is allready running

For the entire browse:
Code: Select all  Expand view

oBrw:bClrStd := { || ShowColors( cVield ) }
 


or

For a specified column
Code: Select all  Expand view

oBrw:email:bClrStd := { || If( <cond1>, clrPair1, If( <cond2>, clrPair2, ... ) ) }
 
by nageswaragunupudi
Sat Feb 20, 2021 3:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Highlight cel in xbrowse when xbrowse is allready running
Replies: 1
Views: 246

Highlight cel in xbrowse when xbrowse is allready running

I looking for a way to highlight a cel in xbrowse on the fly (when running the program) like most of us i use code like this : function showcolors(cVeld)  local cKleur:=""  local aColorPairs := { ;  ...
by Marc Venken
Fri Feb 19, 2021 4:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Highlight cel in xbrowse when xbrowse is allready running
Replies: 1
Views: 246
PreviousNext

Return to advanced search