Search found 914 matches: unicode

Return to advanced search

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

... 20 GET oGet VAR cVar1 PICTUE "@!" SIZE 200,20 PIXEL OF oDlg VARCHAR 70 ON CHANGE { || oDlg:Update() }  In Unicode Gets picture clause "@!" works. Please do not use any other picture clauses. We can also use the clauses CASE "UPPER"CASE ...
by nageswaragunupudi
Sun Nov 12, 2023 2:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet():ReDefine - UTF8 encoding fails [Solved]
Replies: 6
Views: 318

New FTDN October/Octubre 2023 (FWH 23.10)

... SetStyle( nStyle ) Refer prg source for the list of styles. * ListView: Samples: (1) revised litvie1.prg amd new sample (2) listvie2.prg for Unicode implementation * Unicode implementation for ToolBars and Rebars revised sample: samples\toolbar1.prg * Enhanced: function FW_SayTextHilite(). ...
by Antonio Linares
Thu Nov 02, 2023 9:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3909

Re: Search in RichEdit 5

...     ::nStartReplace := nPosi   ELSE      msginfo( "no more found" )      lRet := .F.   ENDIFRETURN lRet but i have Problem with UNICODE in HB_FUNC() ( ANSI Version work ) static TCHAR       cFindWhat[ 1024 ];static TCHAR       cReplaceWith[ 1024 ];static FINDREPLACE ...
by Jimmy
Fri Oct 27, 2023 5:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search in RichEdit 5
Replies: 2
Views: 249

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

... work with UTF8 encoded Umlauts. Even with Ansi encoded umlauts, Harbour Upper/Lower functions work only if the codepage is set to German. But a Unicode Get control does not have to depend on Harbour's Upper() function for converting to Upper case when picture clause "@!" is used. Windows ...
by nageswaragunupudi
Sat Oct 14, 2023 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet() - UTF8 encoding fails [Solved]
Replies: 20
Views: 1736

Re: TEdit() - UTF8 encoding fails

UTF-8 to Unicode

Utf-8 is Unicode
Probably you mean ANSI to UTF8.
by nageswaragunupudi
Thu Sep 14, 2023 8:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet() - UTF8 encoding fails [Solved]
Replies: 20
Views: 1736

TGet() - UTF8 encoding fails [Solved]

...  local oDlg   local oGet   local cVar1 := "üäö"   REQUEST HB_CODEPAGE_UTF8   HB_CDPSELECT( "UTF8" )   FW_SetUnicode( .T. )   DEFINE DIALOG oDlg SIZE 600, 600 PIXEL TRUEPIXEL   @  20, 20 GET oGet VAR cVar1 SIZE 200,20 PIXEL OF oDlg VARCHAR 70 PICTURE ...
by frose
Thu Sep 14, 2023 8:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet() - UTF8 encoding fails [Solved]
Replies: 20
Views: 1736

Re: Listview Unicode for CLASS TGrid()

... Languages are not the biggest Problem for Fivewin my TGrid() ANSI Version work so far but when enable LVS_OWNERDATA it does not work with FW_SetUnicode( .T. ) :(      ::nStyle := nOR( ::nStyle, LVS_OWNERDATA )      ::bDisplay := { | nPtrNMHDR | ::OnDISPINFO( nPtrNMHDR ) ...
by Jimmy
Mon Sep 04, 2023 9:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 412

Re: Listview Unicode for CLASS TGrid()

... I will stand corrected if I am wrong. I think if the application is not at all meant for East Asian Languages which are totally dependent on Unicode, better we stick to ANSI mode only ( I mean for applications meant for West European Languages only. Only requirement for UTF8 is when writing ...
by nageswaragunupudi
Mon Sep 04, 2023 2:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 412

Re: preview report got error when Windows User name Chinese word

This is happening because our metafile functions like create, open, etc are not supporting Unicode file path names. These functions are now made Unicode compatible. With this you will not face this problem from the next version of FWH2208 to be released. For the present ...
by richard-service
Fri Sep 01, 2023 10:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: preview report got error when Windows User name Chinese word
Replies: 10
Views: 686

Re: Listview Unicode for CLASS TGrid()

... "C" but for these "Problem" my "C" Knowledge is to small my ANSI Version , using TCHAR / LPSTR , work but how with Unicode :?: need some help please
by Jimmy
Thu Aug 31, 2023 3:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 412

Re: Listview Unicode for CLASS TGrid()

how to use this with Unicode
Code:
lvi.pszText = (TCHAR*) hb_parvc (2, 1);

can I see the full HB_FUNC?
Or you can send to me.
by nageswaragunupudi
Wed Aug 30, 2023 6:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 412

Re: Listview Unicode for CLASS TGrid()

i guess it is while i have not use fw_parWide() / LPWSTR but LPTSTR

Yes.
If you like we can make the modifications.
by nageswaragunupudi
Wed Aug 30, 2023 6:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 412

Re: Listview Unicode for CLASS TGrid()

#define UNICODE    // Made Unicode compatible 2023-07-07#include <CommCtrl.h>#undef UNICODE#include "fwh.h"  Sole purpose of this def and undef is to get the our program defines to work with Wide ...
by nageswaragunupudi
Wed Aug 30, 2023 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 412

Re: Listview Unicode for CLASS TGrid()

... It is safer to use FWH built-in functions to make properly working Unicode library.
by nageswaragunupudi
Wed Aug 30, 2023 2:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 412

Listview Unicode for CLASS TGrid()

hi, i have found in c:\fwh\source\winapi\listview.c what was change for Unicode   LPWSTR pWide = fw_parWide( 3 );//   lvi.pszText  = ( LPTSTR ) hb_parc( 3 );   lvi.pszText  = pWide; Question : is fw_parWide() the same as AnsiToWide() :?: --- i have now ...
by Jimmy
Wed Aug 30, 2023 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 412
PreviousNext

Return to advanced search