Search found 1415 matches: filter

Return to advanced search

Re: Mr Rao :SetFilter no funciona

... registros con índices es mas rápido saludos. Here we are not talking about DBF tables. What you said is true for DBF fiters. We are talking about filters in mysql tables using fwh maria library. The data is in memory and filter is applied on data which is already in the memory. Filters, sorting, ...
by nageswaragunupudi
Sat Mar 23, 2024 7:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mr Rao :SetFilter no funciona
Replies: 11
Views: 2382

Re: Fulltext-Search

... To search in different file types such as *.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) ...
by Otto
Mon Mar 18, 2024 7:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1226

Re: Fulltext-Search

... TC. Here are the values for the same search. TC 1.40 min findstr 40 sec = command prompt ps 15 sec Get-ChildItem -Path c:\www\htdocs -Recurse -Filter *.prg | Select-String -Pattern "AP_GetPairs()" | ForEach-Object { $_.Path } I think I'll continue with PowerShell. Best regards, Otto
by Otto
Sun Mar 17, 2024 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1226

Fulltext-Search

... your own input DIALOG. Using a HASHis a bit unusual at the beginning. I need this search for my DMS system. I will gradually expand the query filters. Best regards, Otto #include "fivewin.ch"static h := {=>}static oTimerREQUEST DBFCDXREQUEST DBFFPTfunction main  ...
by Otto
Fri Mar 15, 2024 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1226

Re: GetHostByName( GetHostName() )

... to enumerate all network interfaces on your system. These functions provide information about each network adapter, including IP addresses. Filter by Subnet: Once you have the information about each network adapter, filter the results to get the one that belongs to the subnet you are interested ...
by Antonio Linares
Wed Mar 06, 2024 9:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetHostByName( GetHostName() )
Replies: 1
Views: 157

Re: Por qué el error en este SELECT?

... database.table and appsap.hdrodc is th old database.table I do it this way and the records are copied but I get the error described above when I filter the table and there are no records to show INSERT INTO HdrOdc (HDR_ODC,HDR_FDE,HDR_CAN,HDR_DOL,HDR_TDC,HDR_SUR,HDR_IMS,HDR_TRA,HDR_VIA,HDR_EQU,HDR_NMN,HDR_PRV,HDR_PRO,HDR_CON,HDR_CDP,HDR_SOL,HDR_TOU,HDR_IMP,HDR_PDD,HDR_DSC,HDR_SUB,HDR_PDI,HDR_IVA,HDR_NET,HDR_RIS,HDR_IIS,HDR_RIV,HDR_IIV,HDR_FLE,HDR_TOT,HDR_PAG,HDR_CYV,HDR_MDO,HDR_ISS,HDR_EYH,HDR_IND,HDR_CAR,HDR_EEN) ...
by Armando
Mon Mar 04, 2024 3:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Por qué el error en este SELECT?
Replies: 9
Views: 269

Re: Mark field as required

... information in the dialog and flag the records missing "required" data with an icon of the same color in a browse. You could also filter a browse to contain only those records with missing "required" data. This allows the user (or any other user) to find the missing data ...
by James Bott
Sat Feb 03, 2024 7:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mark field as required
Replies: 23
Views: 1765

Re: RAO advice on using Mysql

... FieldGet(),FieldPut() SetOrder(cSort,,lDescend) Save() Close() or End() --------------- NOT SUPPORTED: Seek(), Filter(),Delete(),Append() The RecSet class is created in such rare cases where it is essential to read and display a big table in full. This is not ...
by nageswaragunupudi
Fri Feb 02, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 971

Re: leer y pdf y extraer datos

El pdf que tengo, al abrirlo con el notepad dice %PDF-1.3 %Äåòåë§ó ÐÄÆ 4 0 obj << /Filter /FlateDecode /Length 3182 >> stream por lo que lei en google habría que decodificarlo, es asi? porque al ejecutar el programa (ahora lo ejecuta poniendo la ruta completa ...
by goosfancito
Fri Jan 26, 2024 11:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: leer y pdf y extraer datos
Replies: 16
Views: 828

Re: oRs:Find() ado en dos campos, sobre xbrowse, como?

Hello
ors:Find() only works with one field.

If I need more fields use the Filter function

oRs:Filter = "ll_consec="+alltrim(cFcEn)+" AND ll_docume="+alltrim(cFcDc)
IF oRs:RecordCount() == 0

ENDIF
oRs:Filter := "
Maurizio "
by Maurizio
Mon Jan 22, 2024 8:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: oRs:Find() ado en dos campos, sobre xbrowse, como?
Replies: 7
Views: 422

Re: ID of the new process

... objProcess.ProcessID Loop ``` Keep in mind that this method continuously monitors process creation, so you may need to implement some logic to filter out the specific process you are interested in. Choose the method that best fits your requirements and the level of detail you need for your ...
by Antonio Linares
Tue Nov 14, 2023 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ID of the new process
Replies: 2
Views: 320

Re: DBF Repair Tools

Tim, Then I used DBU to filter out only valid records, and tried to export them. I used the filter .NOT. EMPTY( fieldname ). However they must have something embedded in there because the filter doesn't work. I would write a routine to ...
by James Bott
Mon Nov 13, 2023 6:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF Repair Tools
Replies: 7
Views: 769

DBF Repair Tools

... actually valid. The rest display as blank. First I utilized DBF Doctor to do a repair but it only found about 30 bad records. Then I used DBU to filter out only valid records, and tried to export them. I used the filter .NOT. EMPTY( fieldname ). However they must have something embedded in there ...
by TimStone
Wed Nov 08, 2023 8:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF Repair Tools
Replies: 7
Views: 769

Re: XML, CON ARCHIVO ADJUNTO PDF

... 255( € € €€ €€ € €€€€€ü ÀÀÀÿ ÿ ÿÿ ÿÿ ÿ ÿÿÿÿÿ)]/Subtype/Image/BitsPerComponent 8/Width 1/Length 9/Height 1/Filter/FlateDecode/Mask [8 8 ]>>stream xœã endstream endobj 6 0 obj <</Length 950/Filter/FlateDecode>>stream xœ½˜]nã6€ßuŠAŸ¶€Í ÿ)剖å­It$9»I§´@P¤'ëz†^¨#9Ùl²‘܆naò…á|œáüÉɪO¤—¦Ðß&EŸœ'Ά»^Ãg*5ô÷ÉɆGè¿$~ìdŸE~¾ÿv‘œipJ1©ökÅãZ%~¿K>”ç;zƒ.„»7ô]ßÐõvÜÏ4IZq„6¢” ...
by elmoiquique
Sat Sep 30, 2023 6:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XML, CON ARCHIVO ADJUNTO PDF
Replies: 35
Views: 2259

Re: Filtrar consulta de tdolphin

... realizada para mostrarla en un xBrowse. This is extremely easy using FWH Maria library. But here we are using Dolphin. Do not think of reading the filtered data again from the Server. Let us just filter the data inside XBrowse. i.e., let us display in xbrowse only those records that match the filter ...
by nageswaragunupudi
Tue Sep 26, 2023 5:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Filtrar consulta de tdolphin
Replies: 15
Views: 815
Next

Return to advanced search