Search found 161 matches: operator

Return to advanced search

Re: Fulltext-Search

... *.prg, *.html, and *.docx, you can combine multiple Get-ChildItem commands, each with a different filter, and merge the results with the pipeline operator (|). Best regards, Otto (Get-ChildItem -Path c:\Entwicklung_2012 -Recurse -Filter *.prg) +(Get-ChildItem -Path c:\Entwicklung_2012 ...
by Otto
Mon Mar 18, 2024 7:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1222

Using Excel with Fivewin and OLE

The following line of code is from an Excel recorded macro:

Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual,Formula1:="=TRUE"

Seems like the Add method has three parameters, how do you call this in FiveWin?

Thanks,
by byron.hopp
Sat Feb 10, 2024 1:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Excel with Fivewin and OLE
Replies: 2
Views: 111

Re: I'm not asking for the moon...

... several times and often the asterisks "***.**" were formed instead of numbers and this is a waste of time if we imagine that if the operator enters in a fast way where you always have to go back with the mouse. Please test this small test https://i.postimg.cc/tRZ43pKk/ju.png ...
by Silvio.Falconi
Fri Jan 19, 2024 7:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: I'm not asking for the moon... Resolved!!
Replies: 24
Views: 2112

Re: Problem with tget numeric

... customer didn't like this type of insertion, he wants to be faithful to the old insertion he did with his pen and paper model. moreover, since the operator has to work in the oven his hands are always dirty with flour and my touch cashier is the only solution but the customer doesn't want it, what ...
by Silvio.Falconi
Wed Jan 17, 2024 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1413

Re: Problem with tget numeric

... SIZE 32, 12 PIXEL FONT oFont PICTURE "99.99" I need the tget controls to enter data quickly, in a bread wholesale application where the operator must enter orders for each shop, supermarket, department store in the city and 4 codes are connected for each order because there are many ...
by Silvio.Falconi
Tue Jan 16, 2024 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1413

Re: Using Microsoft AI Phi-2 from FWH

... Codepage (1252) nicht dargestellt werden. 4>F:\llama.cpp\llama.cpp(10420,28): warning C4146: Einem vorzeichenlosen Typ wurde ein unärer Minus-Operator zugewiesen. Das Ergebnis ist weiterhin vorzeichenlos. 4>F:\llama.cpp\llama.cpp(10450,28): warning C4146: Einem vorzeichenlosen Typ wurde ...
by Jimmy
Fri Dec 22, 2023 1:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Microsoft AI Phi-2 from FWH
Replies: 51
Views: 8159

Re: Is there a PHP IsSet() in Modharbour

Dear Ruth,

hStars must be declared as public:

public hStars

so the "macro" operator can locate and use it

best regards
by Antonio Linares
Thu Nov 09, 2023 3:11 pm
 
Forum: mod_harbour
Topic: Is there a PHP IsSet() in Modharbour
Replies: 6
Views: 678

Re: Xlsxlibhb_ver2

Hola buenos dias, He intentado compilar la librería con Mingw , pero me arroja este error stdint.h:88:32: error: missing binary operator before token "4294967295" #define UINT8_MAX ((uint8_t) 255)#define UINT16_MAX ((uint16_t) 65535)#define UINT32_MAX ...
by audisys
Tue Oct 10, 2023 4:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 7
Views: 683

Re: genblock

... and assigning XXXX n umbrellas to the hotel. look this picture https://i.postimg.cc/t45XNtbr/ser.png to assign the umbrellas the operator presses one of the numerical buttons that are on the left and then selects a button that is inside the first scrollable panel on First Scroll ...
by Silvio.Falconi
Mon Jun 12, 2023 5:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: genblock
Replies: 5
Views: 253

Re: Decode JSON - revisited

it works with [] operator too: ? hChgData["transactionResponse"]["cashier"] or ? hChgData["transactionResponse","cashier"] with hashes the $ operator works too: ? "transactionResponse" ...
by AntoninoP
Wed Feb 15, 2023 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Decode JSON - revisited
Replies: 3
Views: 330

Re: How to create a PRIVATE variable owned by the caller?

... An array cannot be given values with an <initializer>. An <initializer> for a private variable consists of the inline assignment operator (:=) followed by any valid CA-Clipper expression including a literal array. If no explicit <initializer> is specified, the variable is ...
by hmpaquito
Tue Jan 10, 2023 6:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to create a PRIVATE variable owned by the caller?
Replies: 21
Views: 777

Re: Xbrowse bBargetAction and the filtering function for it

... Ref12345 and dataRef123 . I would like a checkbox to set exact or so for only Ref123 This is the result you should expect because the comparison operator used in the filter is '$' If you want the filter to return all records with the field starting with the value, the filter condition can be: ...
by nageswaragunupudi
Sun Jul 03, 2022 3:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse bBargetAction and the filtering function for it
Replies: 4
Views: 834

Re: Index with Macro on Tdatabase

Detlef wrote:Hi Silvio,

you don't need the macro operator.
Just do
Code: Select all  Expand view
do case
   case nPos == 1
   oDbf:CreateIndex( , r1, r1, .f., .f., .t. )
   ...
endcase 


thanks
by Silvio.Falconi
Fri May 13, 2022 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Index with Macro on Tdatabase
Replies: 2
Views: 257

Re: Index with Macro on Tdatabase

Hi Silvio,

you don't need the macro operator.
Just do
Code: Select all  Expand view
do case
   case nPos == 1
   oDbf:CreateIndex( , r1, r1, .f., .f., .t. )
   ...
endcase 
by Detlef
Fri May 13, 2022 8:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Index with Macro on Tdatabase
Replies: 2
Views: 257

Re: color the cells of the xbrowse

... problem is as the first operation (1) locate 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: 822
Next

Return to advanced search