Search found 934 matches: unicode

Searched query: unicode

by leandro
Tue Feb 11, 2025 6:48 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar tamaño caja toast
Replies: 7
Views: 1338

Re: Ajustar tamaño caja toast

... nResult := RoInitialize( 0 ) // RO_INIT_SINGLETHREADED
IF nResult != 0
RETURN nResult
ENDIF

// Crear un HSTRING a partir de la cadena Unicode
nResult := WindowsCreateString( cRuntimeClassName, nLength, @pHString )
IF nResult != 0
RoUninitialize()
RETURN nResult
ENDIF

// Llamar a ...
by Antonio Linares
Tue Feb 11, 2025 7:30 am
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar tamaño caja toast
Replies: 7
Views: 1338

Re: Ajustar tamaño caja toast

... nResult := RoInitialize( 0 ) // RO_INIT_SINGLETHREADED
IF nResult != 0
RETURN nResult
ENDIF

// Crear un HSTRING a partir de la cadena Unicode
nResult := WindowsCreateString( cRuntimeClassName, nLength, @pHString )
IF nResult != 0
RoUninitialize()
RETURN nResult
ENDIF

// Llamar a ...
by Antonio Linares
Fri Jan 17, 2025 11:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4826

Re: Using new Class TDeepSeek for documenting

... methods to open, close, clear, and manipulate the clipboard's contents, including text, bitmaps, metafiles, and files. The class also supports Unicode text and provides methods to check if the clipboard is empty or contains specific types of data.

### Class Overview

- **Class Name ...
by Surasak
Sun Dec 01, 2024 2:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 17
Views: 6333

Re: Incorrect Font Display

Dear nageswaragunupudi,

As below is the sample of my Unicode Program with GET cannot enter THAI character if variable = nil at first

#include "FiveWin.ch"
function Main
local oWnd
public cFont0,oFont0,cName,oName
FW_SetUnicode( .T. )
HB_SETCODEPAGE( "UTF8" )
cFont0="Tahoma"

*cName = space ...
by Surasak
Sat Nov 30, 2024 1:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 17
Views: 6333

Re: Incorrect Font Display

Dear nageswaragunupudi,

Sorry for my fault, In case Unicode class MENU display incorrect , I found that I can assign FONT to this class to correct the font

I found some part of my Unicode program have to store space() to variable before take the value from database to variable ,
If not, GET command ...
by Surasak
Sat Nov 30, 2024 7:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 17
Views: 6333

Re: Incorrect Font Display

Dear nageswaragunupudi,

for my regular ANSI Program
? GetOEMCP(), GetACP(), HB_CDPSELECT() = 874,874,EN

for my Unicode Program
? GetOEMCP(), GetACP(), HB_CDPSELECT() = 874,874,UTF8

Thank you very much for your support
in case you want to contract direst, my e-mail is surasak@asic-net.com
by Surasak
Sat Nov 30, 2024 5:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 17
Views: 6333

Re: Incorrect Font Display

... problem with FW24,

for example :

- at the first time when run the program it take 5 to10 seconds before program start

- When I try to use unicode by function FW_SetUnicode( .T. ) + HB_SETCODEPAGE( "UTF8" ) and change my code to UTF8,
I found class MENU display incorrect , I test by use ...
by nageswaragunupudi
Sat Nov 30, 2024 3:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 17
Views: 6333

Re: Incorrect Font Display

It may be problem from unicode character
Yes, you are right.
These combinations are being treated as 2-byte utf8 characters.

We are looking into how to resolve the issue for you.
Please give us a little time.
by nageswaragunupudi
Sat Nov 30, 2024 1:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 17
Views: 6333

Re: Incorrect Font Display

... when I enter some of 2 THAI character font for example chr(202)+chr(161) , chr(203)+chr(162) , chr(202)+chr(164) etc. , It may be problem from unicode character,

We have done some tests and found this problem. Is this the problem you are reporting?
https://imagizer.imageshack.com/v2/xq70/924 ...
by dutch
Fri Nov 29, 2024 3:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 17
Views: 6333

Re: Incorrect Font Display

Dear K.Surasak,

Please let me see your sample code. I'm Thai. If you use Fw_setunicode(.T.), you must save your prg file as Encoding : UTF-8.
If you ANSI, don't use FW_SetUnicode(.F.) function.
Surasak wrote:My program is ANSI not Unicode. but some THAI characters is display like Unicode.
by Surasak
Fri Nov 29, 2024 11:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 17
Views: 6333

Re: Incorrect Font Display

My program is ANSI not Unicode. but some THAI characters is display like Unicode.
by Surasak
Fri Nov 29, 2024 8:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 17
Views: 6333

Incorrect Font Display

... BCC7.70) , I found the Font display incorrect when I enter some of 2 THAI character font for example chr(202)+chr(161) , chr(203)+chr(162) , chr(202)+chr(164) etc. , It may be problem from unicode character, I try to use command FW_SetUnicode( .F. ) but nothing change. How can I solve this problem.
by nageswaragunupudi
Sun Nov 03, 2024 4:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 2850

Re: Copy file by mask

... txt (simple English)
2) MyÄÅÆFile.txt (WU ANSI codepage 1252)
3) MyДЕЖFile.txt (Russian ANSI codepage 1251)
4) MyమనవFile.txt (UTF8 codepage of any Unicode language, in this case, Telugu)

I propose 2 approaches to copy these 4 matching files into the destination folder.
function CopyX()
WaitRun ...
by Garbi
Tue Oct 08, 2024 3:15 pm
Forum: FiveWin para Harbour/xHarbour
Topic: España: Normativa sancionadora sistemas informáticos
Replies: 288
Views: 146388

Re: España: Normativa sancionadora sistemas informáticos

... smb smbs smtp smtps telnet tftp
Features: alt-svc AsynchDNS HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile libz NTLM SPNEGO SSL SSPI threadsafe Unicode UnixSockets

Y ahora siguiendo las indicaciones de Paquito he creado nif.xml para probar la validez del nif porque me ha aparecido muy ...
by Antonio Linares
Thu Aug 22, 2024 4:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH_2407 oSay does not assume nHeight
Replies: 32
Views: 7107

Re: FWH_2407 oSay does not assume nHeight

... lShaded: SHADED, SHADOW > ] ;
[ <lBox: BOX > ] ;
[ <lRaised: RAISED > ] ;
[ <adj: ADJUST> ] ;
[ <lTrans: TRANSPARENT>];
[ <uni: UNICODE, ANSI> ] ;
[ <lVCenter: VCENTER> ] ;
[ CARGO <uCargo> ] ;
=> ;
[ <oSay> := ] TSay():New( <nRow>, <nCol>, <{cText}>,;
[<oWnd>], [<cPict ...