Search Results

0
votes

How do I intercept a paste event in an editbox?

Subclass the edit box and handle the WM_PASTE message. …
5
votes

UTF-8 in Windows

Unfortunately, there is no way to make Unicode the current codepage in Windows. The CP_UTF7 and CP_UTF8 constants are pseudo-codepages, used only in …
1
vote

How do you place sub controls inside a group box?

The problem is having the groupbox as the controls' parent. Groupboxes are not supposed to have any children and using them as parents will cause all kinds of errors (including painting, keyboard n …
13
votes

What are some of the drawbacks to using C-style strings?

C strings lack the following aspects of their C++ counterparts: Automatic memory management: you have to allocate and free their memory manually. Extra capacity for concatena …
0
votes

string separation in C

You can copy the characters one by one, while at the same time keeping a counter of the number of characters copied. Before copying a character, check whether the counter is either 3 or 6; if so wr …
2
votes

What does a const pointer-to-pointer mean in C and in C++?

You were right in your interpretation. Here's another way to look at it: const MyStructure * *ppMyStruct; // ptr --> ptr --> const MyStructure MyStructure *c …