0
votes
1answer
57 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 *AppProg …
0
votes
4answers
88 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 ( …
2
votes
4answers
253 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 to …
2
votes
2answers
109 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
134 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. Cu …
2
votes
4answers
669 views
(Wide)String - storing in TFileStream, Delphi 7. What is the fastest way?
Hi,
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 f …
1
vote
2answers
98 views
Delphi 2006 system.delete for widestrings?
Hi all,
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
116 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 foreig …
5
votes
3answers
804 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 …
1
vote
2answers
310 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 …
0
votes
3answers
259 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 ap …
0
votes
2answers
235 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 …
