Search found 39 matches: represented

Return to advanced search

Re: Unicode vs UTF8

Utf8 encoding uses either 1 or 2 or 3 bytes for each character. All latin characters upto asc 127 are represented by the same single character both in Ansi and Utf8 encodings. Accented WU characters are encoded with 2 bytes. Complex scripts like Asian languages use 3 bytes ...
by nageswaragunupudi
Sun Jan 07, 2024 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unicode vs UTF8
Replies: 2
Views: 1032

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

We need to keep this in mind. While all English characters and all characters of other West European languages other than accented characters are represented by a single byte in both ANSI and UTF8 notiation, the accented characters (which include German Umlauts) are represented by a single byte ...
by nageswaragunupudi
Sun Aug 27, 2023 2:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2164

Re: Search by format

... for East Asian languages? If you are confined to English and West European languages, all characters other than accented characters are represented by a single byte (and the same byte) both in ANSI and UTF8. So, normal RegEx expressions should work with UTF8 text also, if you are not ...
by nageswaragunupudi
Wed Aug 02, 2023 3:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search by format
Replies: 7
Views: 455

Promtp-Editor: Unleash ChatGPT's Power: The Ultimate Prompt

... This prompt is working well for me. Best regards, Otto Please modify the source code provided below. Each button or checkbox in the code is represented by a row and column position indicated with the "@" symbol. The row and column positions are pairs of parameters separated by ...
by Otto
Fri Jun 09, 2023 10:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Promtp-Editor: Unleash ChatGPT's Power: The Ultimate Prompt
Replies: 4
Views: 457

Re: Convert and print chinese idioms

... popular UTF8 encoding of Unicode and also uses UTF16BE encoding for communication with Windows OS. This is a Chinese word with 3 characters is represented by 9 bytes, 228,184,173,229,155,189,231,137,136 when encoded in UTF8 and 6 bytes in UTF16BE, 45,78,253,86,72,114 Unicode UTF8 encoding is ...
by nageswaragunupudi
Fri Jul 22, 2022 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert and print chinese idioms
Replies: 3
Views: 489

Re: The AI Master - SenseAI

What can it do?
CodeProject SenseAI can currently

Detect objects in images

Detect faces in images

Detect the type of scene represented in an image

Recognise faces that have been registered with the service

We will be constantly expanding the feature list.
by Antonio Linares
Wed Apr 06, 2022 11:00 am
 
Forum: latest AI news
Topic: The AI Master - SenseAI
Replies: 1
Views: 199

Re: flowchart for mod harbour projects

... I think in my case, this is more of a block diagram. A block diagram is a diagram of a system in which the principal parts or functions are represented by blocks connected by lines that show the relationships of the blocks. They are heavily used in engineering in hardware design, electronic ...
by Otto
Sun Nov 22, 2020 9:31 am
 
Forum: mod_harbour
Topic: flowchart for mod harbour projects
Replies: 5
Views: 612

Artificial Intelligence: GPT with Harbour and FWH

... routines that basically help to "vectorize" words. As an example for this, lets consider "colors". Colors can be represented by 3 numbers (red,green,blue) which could be represented as x,y,z coordinates (vectors) in "space". This way we can add "red" ...
by Antonio Linares
Fri Aug 14, 2020 11:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Artificial Intelligence: GPT with Harbour and FWH
Replies: 7
Views: 1376

New FTDN June 2020 (FWH 20.06)

... - new function HashTree( hHash, [nOpenLevel] ) --> oTree A nested hash (some values of a hash being hash again) can be represented as a tree for convenient display in xbrowse. http://forums.fivetechsupport.com/viewtopic.php?f=3&t=39022&p=232806&hilit=hash_tree#p232806 ...
by Antonio Linares
Thu Jul 09, 2020 9:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2020 (FWH 20.06)
Replies: 1
Views: 1344

Re: Customer .dbf

AutoIncrement field in DBFCDX/DBFNTX is represented as "+". AutoInc fields of DBFCDX/DBFNTX are not compatible with autoincrement field of ADS. Older DBUs and other older DBF maintenance programs may not support recently implemented ...
by nageswaragunupudi
Wed May 13, 2020 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Customer .dbf
Replies: 6
Views: 901

Re: GET logical value represented by bitmap

using NOBORDER or lborder := .f. has the same result
i.e.
when the mouse is over the bitmap the border appears but when created from code it doesn't

Regards
Peter
by reds
Mon May 27, 2019 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GET logical value represented by bitmap
Replies: 6
Views: 997

Re: GET logical value represented by bitmap

In the meantime just try REDEFINE BTNBMP oBtn ID 4001 NOBORDER OF oDlg ; FILE IIF( lFlag, "..\bitmaps\on.bmp", "..\bitmaps\off.bmp" ) ; ACTION ( lFlag := ! lFlag, ; ::SetImages( If( lFlag, "..\bitmaps\on.bmp", ; "..\bitmaps\off.bmp" ) ) ) METHOD ReDefine( nId,...
by ukoenig
Fri May 24, 2019 6:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GET logical value represented by bitmap
Replies: 6
Views: 997

Re: GET logical value represented by bitmap

Thanks Uwe I will try it out The bitmap is working and from code there is no border, which was I want but from resource it keeps the border Regards Peter #Include "FiveWin.Ch" Function Main() Local oDlg,oBtn LOCAL lFlag := .f.      DEFINE DIALOG oDlg RESOURCE 1001       REDEFINE  B...
by reds
Fri May 24, 2019 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GET logical value represented by bitmap
Replies: 6
Views: 997

Re: GET logical value represented by bitmap

Peter the solution You are looking for :?: GET and a btnbmp ( with image-switch ) I've used BTNBMP display any info like ".T." or ".F." ( as string ) inside a get the image is displayed as yes or no and belongs to a selected logical var-status http://www.pflegeplus.co...
by ukoenig
Fri May 24, 2019 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GET logical value represented by bitmap
Replies: 6
Views: 997

Re: GET logical value represented by bitmap

I've used BTNBMP
Regards
Peter
by reds
Fri May 24, 2019 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GET logical value represented by bitmap
Replies: 6
Views: 997
Next

Return to advanced search