Search Results

1
vote

CEdit control maximum length? (in characters it can display)

"(in characters it can display)" != "when trying to add a character". "when trying to add a character" == "The maximum number of TCHARs the user can enter" unless you mean programmatically …
1
vote

Multi-byte character set in MFC application

For _getmbcp, MSDN says "A return value of 0 indicates that a single byte code page is in use." That sure makes it not very useful. Try one of these: GetUserDefaultLCID GetSystemDefaultLCID GetACP. …
0
votes

What message is processed during the process of minimize or maximize of a window?

You can use Spy++ to see what messages a window received. I have vague memories of OnSize coming earlier than some messages that I expected. …
0
votes

VS2005 C++ compiler problem including <comdef.h> in MFC application

Does your own code do something like this: #define long int …
0
votes

Selected item in my CListCtrl shows ellipsis, despite having plenty of room!

MSDN doesn't seem to say if SetColumnWidth forces the contents to be redrawn automatically. …
1
vote

Question About CFile Seek.

I think MSDN misstated the matter slightly. When you call Seek the file pointer is adjusted, but the actual file on the disk doesn't change yet. If you call Write after that, then the actual file w …