Search found 173 matches: hex

Return to advanced search

Re: Inicio lento aplicacion Fivewin 32 bits en Windows 11

... common folder. The Shrinker is called Aspack .. and an additional benefit is that your .exe once shrinked makes it impossible for anyone to use a hex edit to look at your .exe which could revel your source code .. here is the link .. http://www.aspack.com/downloads.html Thanks Rick Lipkin Last ...
by Enrico Maria Giordano
Sat May 11, 2024 2:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inicio lento aplicacion Fivewin 32 bits en Windows 11
Replies: 14
Views: 171

Re: Inicio lento aplicacion Fivewin 32 bits en Windows 11

... common folder. The Shrinker is called Aspack .. and an additional benefit is that your .exe once shrinked makes it impossible for anyone to use a hex edit to look at your .exe which could revel your source code .. here is the link .. http://www.aspack.com/downloads.html Thanks Rick Lipkin Thank ...
by quim
Sat May 11, 2024 1:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inicio lento aplicacion Fivewin 32 bits en Windows 11
Replies: 14
Views: 171

Re: Inicio lento aplicacion Fivewin 32 bits en Windows 11

... common folder. The Shrinker is called Aspack .. and an additional benefit is that your .exe once shrinked makes it impossible for anyone to use a hex edit to look at your .exe which could revel your source code .. here is the link .. http://www.aspack.com/downloads.html Thanks Rick Lipkin
by Rick Lipkin
Sat May 11, 2024 1:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inicio lento aplicacion Fivewin 32 bits en Windows 11
Replies: 14
Views: 171

Re: Slow EXE Launch.

... .. the smaller the .exe the quicker the program loads .. another benefit of the "shrinker" is that the .exe can not be read with a hex editor that may reveal some of your code ... Here is the link to review Aspack http://www.aspack.com/aspack.html
by Rick Lipkin
Tue May 07, 2024 7:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow EXE Launch.
Replies: 8
Views: 224

Re: Learn SQL with ChatGPT or when can ChatGPT really help

frose wrote:But when I want to use hex codes for the search string, MariaDB has HEX() and UNHEX().
What is the equivalent in plain SQL?


Why do you want to use hex codes for the search string? This is the first question you have to answer.
by Enrico Maria Giordano
Fri Nov 17, 2023 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Learn SQL with ChatGPT or when can ChatGPT really help
Replies: 9
Views: 672

Re: Learn SQL with ChatGPT or when can ChatGPT really help

... vll_term WHERE WORT LIKE CONCAT('%', _utf8'\u00DF', '%'); doesn't work. ChatGPT has obviously made a mistake here. But when I want to use hex codes for the search string, MariaDB has HEX() and UNHEX(). What is the equivalent in plain SQL? ChatGPT says: Certainly, if you're constrained ...
by frose
Fri Nov 17, 2023 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Learn SQL with ChatGPT or when can ChatGPT really help
Replies: 9
Views: 672

Re: String in unicode

... number of characters (not bytes) and HB_UTF8SUBSTR( cString, n, 1 ) to get the nth character (not byte) Example: Let us take a sample string in Hex: "41C39CC49EE0B095". This is displayed as : AÜĞక #include "fivewin.ch"function Main()   local cString := HEXTOSTR( ...
by nageswaragunupudi
Thu Nov 16, 2023 6:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: String in unicode
Replies: 6
Views: 479

Re: TGet() - UTF8 encoding fails [Unsolved]

... und C3B6, not DC C4 D6, see for example https://www.charset.org/utf-8! DC C4 D6 are the ANSI hexcodes +---+--------+-----------------+|STR|ANSI-HEX|UTF8-HEX         ||üäö|FC E4 F6|C3 BC C3 A4 C3 B6||ÜÄÖ|DC C4 D6|C3 9C C3 84 C3 96|+---+--------+-----------------+ With the ...
by nageswaragunupudi
Thu Oct 12, 2023 11:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet() - UTF8 encoding fails [Solved]
Replies: 20
Views: 1757

Re: not ISOEM(), ISANSI() or IsUTF8()

... ), "Ü" )   cText := STRTRAN( cText, CHR( 223 ), "ß" )#endif both "seems" to be same (!) even HEX are same so i don´t understand why UTF16toUTF8( strToWide( UML_OEMTOANSI())) did not work to create "right" Excel Sheet
by Jimmy
Wed Aug 30, 2023 8:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2166

Re: not ISOEM(), ISANSI() or IsUTF8()

... cRet If you don't mind, I like to ask you some help purely for my knowledge and educational purpose. Can you please post some OEM strings here in Hex? cTextOEM := FieldGet( n )cTextHex := STRTOHEX( cTextOEM )  and please post the hex string. A few strings like that. I am not sure ...
by Jimmy
Mon Aug 28, 2023 1:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2166

Re: not ISOEM(), ISANSI() or IsUTF8()

... If you don't mind, I like to ask you some help purely for my knowledge and educational purpose. Can you please post some OEM strings here in Hex? cTextOEM := FieldGet( n )cTextHex := STRTOHEX( cTextOEM )  and please post the hex string. A few strings like that. I am not ...
by nageswaragunupudi
Mon Aug 28, 2023 2:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2166

Re: not ISOEM(), ISANSI() or IsUTF8()

... this string is encoded. We can find out its encoding by testing with IsUtf8() or still better, with STRTOHEX( c ) The same character is encoded as hex "FC" in ANSI and encoded as hex "C3BC" in UTF8. When FWH displays, both look exacty alike and in fact both represent the same ...
by nageswaragunupudi
Sun Aug 27, 2023 2:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2166

how store Image into Database

... : which Type for DBF ? "M" or "V" or ? which Type for SQL ? "BLOB" or ? when store "Image" into DBF using HEX or MEMOREAD ? SQL using HEX with "pre-FIX" ? when XBROWSEr / EDIT how to prevent FIELD from "type into" Image FIELD ... how ...
by Jimmy
Sun Jul 23, 2023 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how store Image into Database
Replies: 3
Views: 324

Re: SetClipboardData to UTF-8

nageswaragunupudi wrote:May I know how were you deriving those hex codes?


Code: Select all  Expand view
StrToHex( cVar1, " " )
by frose
Sat Jul 01, 2023 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetClipboardData to UTF-8
Replies: 14
Views: 1076

Re: SetClipboardData to UTF-8

Mr Froze
In your postings above, you were also posting hex codes.
May I know how were you deriving those hex codes?
by nageswaragunupudi
Fri Jun 30, 2023 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetClipboardData to UTF-8
Replies: 14
Views: 1076
Next

Return to advanced search