Search found 2740 matches: string

Return to advanced search

Re: funcion C a xBase

This is not C. C does not have a "string" type.
by Enrico Maria Giordano
Mon Apr 22, 2024 3:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funcion C a xBase
Replies: 6
Views: 120

Test a string is encoded with cMimeEnc()

Is is possible to test a string to see whether it was encoded with cMimeEnc() or not?

TIA
by hua
Fri Apr 19, 2024 10:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test a string is encoded with cMimeEnc()
Replies: 0
Views: 36

AYUDA Validacion LRC para datafono

... hexadecimales. Ej: 02006236303030303030303030313030302020301C 'Retorna el LRC en valor Hexadecimal. Ej. 5D Private Function CheckLCR(ByVal s As String) As String Dim checksum As Integer = 0 'Este valor lo reemplazé por 2 y todo salió de maravillas. For Each c As Char In GetStringFromHex(s) checksum ...
by russimicro
Sat Mar 30, 2024 6:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA Validacion LRC para datafono
Replies: 2
Views: 488

incremental search on Xbrowse

Hi all, Is it possible to modify xbrowse so that it can also accept the 'space' character in the 'seek' search string? This change would allow searches even with 2 or more words.  xbrowse vers. : #define FWVERSION    "FWH 23.10" #define FW_VersionNo ...
by mauri.menabue
Sat Mar 23, 2024 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2008

Re: How to include hbCurl?

... + ' > clogrooms.txt'  Your request doesn't appear to be valid JSON: Parse error on line 1: tags: { name: tag1, ^ Expected one of: 'STRING', 'NUMBER', 'NULL', 'TRUE', 'FALSE', '{', '['
by Marc Venken
Wed Mar 20, 2024 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2950

Re: Fulltext-Search

... 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: 1247

Fulltext-Search

... then call it with waitrun(). I redirect the response from findstr to a file and then examine the hits. Actually, the program only needs the search string and the path for now. I'm using a DIALOG here. It's an experiment with using a HASH instead of variables, but you can easily build your own input ...
by Otto
Fri Mar 15, 2024 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1247

Re: FW_DbfSqlQuery con campos mayores de 256 carracteres

... driver from the following address: https://www.microsoft.com/en-us/download/details.aspx?id=32602 I have tried with the connection string: oC:Open('Provider=vfpoledb;Data Source='+cPath+';Collating Sequence=general;') and the result is the same, when there are fields longer ...
by VictorCasajuana
Fri Mar 08, 2024 2:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FW_DbfSqlQuery con campos mayores de 256 carracteres
Replies: 3
Views: 655

Re: Strange characters going from FWH to Outlook FWH 13.10

Otto,

Thanks for your suggestion.
But if I have to use this function to check every character in every string, isn't that slowing down my application?
by driessen
Mon Feb 19, 2024 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange characters going from FWH to Outlook FWH 13.10
Replies: 18
Views: 3722

Re: Search by line

I needed to find out if the string consists only of numbers or not. I wrote such a function: if AtLine(adr, "{|xx|asc(xx)<48.or.asc(xx)>57}")=0 ............................................... endif function AtLine(itm, xBk)  ...
by Natter
Tue Feb 06, 2024 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search by line
Replies: 8
Views: 311

Re: Different Processing of Escape Characters in Mod Harbour

Dear Otto,
I think \n leads to an error because the backslash is an escape character in javascript.
according to chatgpt :-) ... when used in a string, the \ expects to be followed by another character to form the escape sequence.
So \\n is needed in this case I suppose.
kind regards
ruth
by Ruth
Wed Jan 31, 2024 1:38 pm
 
Forum: mod_harbour
Topic: Different Processing of Escape Characters in Mod Harbour
Replies: 5
Views: 493

Re: Creating table with Trichedit

... FWrite(oFile, "\f0\cf0 ") I understand that to insert an image file, first, you need to convert the image file to a Hexa decimal string and then insert it. // For BMPFWrite(oFile, "\intbl{\pict\wmetafile8\picw" + LTrim(Str(nImageWidth)) + "\pich" ...
by Silvio.Falconi
Thu Jan 25, 2024 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1454

Re: Creating table with Trichedit

... FWrite(oFile, "\f0\cf0 ") I understand that to insert an image file, first, you need to convert the image file to a Hexa decimal string and then insert it. // For BMPFWrite(oFile, "\intbl{\pict\wmetafile8\picw" + LTrim(Str(nImageWidth)) + "\pich" ...
by anserkk
Thu Jan 25, 2024 4:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1454

Traduzione da Java a Fwh

Salve, Dato che non ho familiarità con Java, mi servirebbe una traduzione di questa funzione in fwh e xHarbour public static String getHeaderBytes(String msg) { char[] msgLength = new char[4]; msgLength[0] = (char) Integer.parseInt(String.valueOf(msg.length()), 10); msgLength[1] = (char) ...
by a.tixi@htech.it
Wed Jan 24, 2024 11:21 am
 
Forum: All products support
Topic: Traduzione da Java a Fwh
Replies: 2
Views: 300

Re: Grabar imagen en tabla mysql

Por alguna razón un PNG cuando lo convertimos a string queda muy grande y al guardarlo en mysql
se cae el sistema.
Pero hay una solución , en el siguiente link lo explica bien el amigo Juan Navas

viewtopic.php?f=6&t=30337&hilit=GETPAGES

saludos
by sysctrl2
Thu Jan 18, 2024 11:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Grabar imagen en tabla mysql
Replies: 5
Views: 401
Next

Return to advanced search

cron