Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
740 views

Delphi 2010 Wide functions vs. String functions

We're currently converting a Delphi 2007 project to Delphi 2010. We were already using Unicode (via WideStrings and TNT Unicode Controls). I was expecting to replace all Wide functions, e.g. ...
7
votes
3answers
5k views

Delphi: Is it necessary to convert string to WideString?

I found a Windows API function that performs "natural comparison" of strings. It is defined as follows: int StrCmpLogicalW( LPCWSTR psz1, LPCWSTR psz2 ); To use it in delphi, I ...
5
votes
2answers
513 views

Delphi XE2 AnsiFormat() and ANSI String constants

Is there a handy Format() function that works only on Ansi strings? Because everytime I use an AnsiString with Format() I get a warning. And no, I don't want Delphi to convert my AnsiStrings back and ...
4
votes
4answers
6k views

(Wide)String - storing in TFileStream, Delphi 7. What is the fastest way?

I'm using Delphi7 (non-unicode VCL), I need to store lots of WideStrings inside a TFileStream. I can't use TStringStream as the (wide)strings are mixed with binary data, the format is projected to ...
3
votes
3answers
205 views

How do i construct a WideString with a diacratic in a non-unicode Delphi version?

i am trying to construct a (test) WideString of: á (U+00E1 Small Letter Latin A with acute) but using it's decomposed form: LATIN SMALL LETTER A (U+0061) COMBINING ACUTE ACCENT (U+0301) ...
3
votes
1answer
97 views

Does boost test have support for wide strings?

I'm just using BOOST_TEST_MESSAGE(L"blah") and the only thing that is printed out is an hex value such as 0x12345678. Am I missing some configuration? I'm using boost 1.44.
3
votes
3answers
325 views

When and why can sprintf fail?

I'm using swprintf to build a string into a buffer (using a loop among other things). const int MaxStringLengthPerCharacter = 10 + 1; wchar_t* pTmp = pBuffer; for ( size_t i = 0; i < nNumPlayers ...
3
votes
3answers
416 views

Can we use wmain() functions with Unix compilers or it'll work only on windows?

Can we use wmain() functions with Unix compilers or it'll work only on\for windows?
2
votes
1answer
406 views

How to call this Delphi function from C#?

i'm having problems calling a delphi function from C# (attempted to read or write protected memory), and was wondering what the correct way of calling the method should be. The Delphi function ...
2
votes
4answers
206 views

Sending TCHAR buffer with send(sock, wszBuffer, …)?

I have a wide-character XML message that I need to send over a Win32 socket in C++. TCHAR wszBuffer[1024]; Should I sprintf(szSendBuffer, "%S", wszBuffer) the wide character buffer to a char array ...
2
votes
4answers
870 views

Why doesn't wstring::c_str cause a memory leak if not properly deleted

Code Segment 1: wchar_t *aString() { wchar_t *str = new wchar[5]; wcscpy(str, "asdf\0"); return str; } wchar_t *value1 = aString(); Code Segment 2 wstring wstr = L"a value"; ...
2
votes
2answers
517 views

C++: wide characters outputting incorrectly?

My code is basically this: wstring japan = L"日本"; wstring message = L"Welcome! Japan is "; message += japan; wprintf(message.c_str()); I'm wishing to use wide strings but I do not know how ...
2
votes
4answers
978 views

2-byte (UCS-2) wide strings under GCC

when porting my Visual C++ project to GCC, I found out that the wchar_t datatype is 4-byte UTF-32 by default. I could override that with a compiler option, but then the whole wcs* (wcslen, wcscmp, ...
2
votes
4answers
3k views

Converting wide char string to lowercase in C++

How do I convert a wchar_t string from upper case to lower case in C++? The string contains a mixture of Japanese, Chinese, German and Greek characters. I thought about using towlower... ...
2
votes
2answers
263 views

What is the best way to find wide string headaches such as L“%s”?

Here is an example of one of the headaches I mean: We have a multiplatform project that uses mostly Unicode strings for rendering text to the screen. On windows in VC++ the line: ...
2
votes
3answers
279 views

Delphi < 2009, unicode replacement for JvAppStorage

I'm looking for the best option to store my application settings. I decided to write own class that inherits from TPersistent which would store all the config options available. Currently I'm looking ...
1
vote
1answer
178 views

How does MSVC's STL open an fstream with a wide string filename? [closed]

Possible Duplicate: Opening fstream with file with Unicode file name under Windows using non-MSVC compiler I have been trying to find a simple way to open a file with non-ASCII characters ...
1
vote
1answer
123 views

Pantheios wide characters?

I'm trying to integrate logging into my Windows C++ application, and I wanted to use Pantheios, as it generally has very favorable comments. That said, all the examples included are using macros like ...
1
vote
2answers
88 views

Using narrow string manipulation functions on wide data

I'm parsing an XML file which can contain localized strings in different languages (at the moment its just english and spanish, but in the future it could be any language), the API for the XML parser ...
1
vote
3answers
493 views

C++ how convert wide string to base64?

What is the best way to convert wide string to base64?
1
vote
2answers
510 views

How can I make fixed-length Delphi strings use wide characters?

Under Delphi 2010 (and probably under D2009 also) the default string type is UnicodeString. However if we declare... const s :string = 'Test'; ss :string[4] = 'Test'; ... then the first string ...
1
vote
5answers
445 views

How to return WideString from COM server?

This Interface at _TLB.pas file // *********************************************************************// // Interface: ITMyCOM // Flags: (256) OleAutomation // GUID: ...
1
vote
5answers
450 views

What can cause SysFreeString to hit an Int 3 breakpoint?

I've got some code that worked fine under Delphi 2007 but breaks under D2010. It involves passing in a string, converting it to a PWideChar (specifically, a WideString pointer, not a UnicodeString ...
1
vote
1answer
417 views

How to cast wchar_t into int for displaying the code point?

I have a simple function in my program, when I was wanting to mess around with unicode and do stuff with it. In this function, I wished to display the code value of the character the user entered. It ...
1
vote
5answers
919 views

Delphi: Fast(er) widestring concatenation

i have a function who's job is to convert an ADO Recordset into html: class function RecordsetToHtml(const rs: _Recordset): WideString; And the guts of the function involves a lot of wide string ...
1
vote
3answers
483 views

widestring compatibility problem in Delphi

In a dll build with Delphi 2006 Foo(aPath: widestring); begin _rootPath := aPath; end; In an executable built with Delphi 2010 _Foo := GetProcAddress(FooModule,’Foo’); _Foo(‘123456’); Stepping ...
1
vote
4answers
1k views

How do I convert System::WideString to a char* in C++ and vice versa?

I have a situation where I need to compare a char* with a WideString. How do I convert the WideString to a char* in C++?
1
vote
4answers
954 views

Case insensitive search in Unicode in C++ on Windows

I asked a similar question yesterday, but recognize that i need to rephase it in a different way. In short: In C++ on Windows, how do I do a case-insensitive search for a string (inside another ...
1
vote
2answers
326 views

Delphi 2006 system.delete for widestrings?

is there a counterpart of the Delete procedure that could be used for widestrings? Or should I just use copy and concatenate the resulting WideStrings?
1
vote
1answer
371 views

Copy files with widestring path in C++

I'm having some trouble using wchar_t* strings for copying a file, how do I open them in C/C++ I need to use wide chars because the filenames are in unicode with different foreign languages. Thanks ...
1
vote
2answers
1k views

MS Word Ole Automation, ADO and foreign characters

I'm trying to export WideString texts from the database (ADO / MS Access) to the MS Word document (Delphi 7), but foreign characters are not correctly transferred (i.e. "è" instead of "č"): while not ...
1
vote
3answers
630 views

Typographic apostrophe + wide string literal broke my wofstream (C++)

I’ve just encountered some strange behaviour when dealing with the ominous typographic apostrophe ( ’ ) – not the typewriter apostrophe ( ' ). Used with wide string literal, the apostrophe breaks ...
0
votes
1answer
70 views

Converting a wstring to jstring on Linux

I'm having problems converting a wstring to jstring in unix, as the size of wchar_t on linux in 4 bytes (not 2 bytes like windows and thus I cannot use the casting of a wchar_t to a jchar). Can ...
0
votes
1answer
43 views

how to correctly format WideString using sprintf or wprintf

I am using this code to format WideString but with no success! It prints unexpecting results :( here is my code WideString s; dep=new TStringList(); while(!DM->tDepPln->Eof) { //where ...
0
votes
5answers
851 views

ReadLn working with WideString (utf-8 files)

I use delphi 7. I need to read a utf-8 file line by line, each line contain a word and its weight (a number) So I need to read every next line, then divide a line by a separator (tab char) and save ...
0
votes
4answers
301 views

C++ template function specialization using TCHAR on Visual Studio 2005

I'm writing a logging class that uses a templatized operator<< function. I'm specializing the template function on wide-character string so that I can do some wide-to-narrow translation before ...
0
votes
0answers
310 views

trouble with boost::filesystem::wrecursive_directory_iterator

I'm trying to write a program to help me manage my iTunes library, including removing duplicates and cataloging certain things. At this point I'm still just trying to get it to walk through all the ...
0
votes
6answers
803 views

Delphi, string vs widestring memory usage issue, non-unicode VCL (D7)

I'm storing some classes with WideString parameters describing them (like name, description and some others). Now if I change all those WideStrings to simple "string" (I'm using alias actually so I ...
0
votes
3answers
146 views

Where is wctype in Visual C 2008 Express?

I'm porting 3rd party software from Linux to Windows using Visual C 2008 Express. I have trouble only with function `wctype'. It's declared in %VCDIR%/include/wctype.h file as follow: _MRTIMP2 ...
0
votes
1answer
693 views

Combining wide string literal with string macro

I have a macro for a character string as follows: #define APPNAME "MyApp" Now I want to construct a wide string using this macro by doing something like: const wchar_t *AppProgID = APPNAME ...
0
votes
2answers
468 views

Local WideString variable debug error “Int3 DbgBreakPoint”

In C++Builder, I wrote the following code (in Button1Click handler), When I run in debug mode, I get the "Int3 DbgBreakPoint" (Stack corrupted?). This doesn't happen for AnsiSting (Maybe reference ...
-2
votes
3answers
414 views

Delphi - Store WideStrings inside a program

In the past I used INI-Files to store Unicode text, but now I need to store unicode text in the same program. How can I achieve this result? Want to store these letters: āčēūīšķļņž EDIT Abiously ...