Click here to Skip to main content
15,886,919 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: dialoge data transfer Pin
toxcct13-Dec-07 3:16
toxcct13-Dec-07 3:16 
GeneralRe: dialoge data transfer Pin
Chandrasekharan P13-Dec-07 18:35
Chandrasekharan P13-Dec-07 18:35 
Generalcompile CSerialPort from command line Pin
Ein.Stein13-Dec-07 1:01
Ein.Stein13-Dec-07 1:01 
GeneralRe: compile CSerialPort from command line Pin
KarstenK13-Dec-07 2:40
mveKarstenK13-Dec-07 2:40 
GeneralRe: compile CSerialPort from command line Pin
Ein.Stein13-Dec-07 4:19
Ein.Stein13-Dec-07 4:19 
GeneralRe: compile CSerialPort from command line Pin
Ein.Stein13-Dec-07 4:52
Ein.Stein13-Dec-07 4:52 
GeneralI am new to Visual C++ :: HELP!!! [modified] Pin
Anthony Appleyard13-Dec-07 0:49
Anthony Appleyard13-Dec-07 0:49 
GeneralRe: I am new to Visual C++ :: HELP!!! Pin
Matthew Faithfull13-Dec-07 1:21
Matthew Faithfull13-Dec-07 1:21 
I can help on the characters if nothing else as I'm still on VS2005. You've obviously missed the last decade or so so I'll tell you about something called UNICODE (www.unicode.org) which is a standard for representing characters across lots of languages. This obviously requires more than 8 bits or the 7 of old ASCII so new C++ types are required. We now have wchar_t typdef(ed) to WCHAR and sometimes defined underneath as unsigned short and LPWSTR which is a wchar_t* with LPCWSTR for const wchar_t*. These all refer to 16 bit UNICODE characters and strings.
All the old char, unsinged char, char*, LPSTR, LPCSTR stuff is the same as it ever was. To make things fun there is also TCHAR, LPTSTR, LPCTSTR which are defined as the the wchar_t equivalents if your project #defines UNICODE and _UNICODE (Use both because MS screwed up) and are defined to the char equivalents otherwise. You'll need to #include <tchar.h> as likely as not to make this magic work.
If you think this is all somewhat arcane just wait till you start getting deprecation warnings for not use Safe string functions. Big Grin | :-D
Nothing is exactly what it seems but everything with seems can be unpicked.

GeneralRe: I am new to Visual C++ :: HELP!!! Pin
KarstenK13-Dec-07 2:37
mveKarstenK13-Dec-07 2:37 
GeneralRe: I am new to Visual C++ :: HELP!!! Pin
CPallini13-Dec-07 4:07
mveCPallini13-Dec-07 4:07 
GeneralRe: I am new to Visual C++ :: HELP!!! Pin
Nathan Holt at EMOM13-Dec-07 8:00
Nathan Holt at EMOM13-Dec-07 8:00 
GeneralWM_DRAWITEM does not process for tab control Pin
yaminisridaran13-Dec-07 0:46
yaminisridaran13-Dec-07 0:46 
QuestionRe: WM_DRAWITEM does not process for tab control Pin
Nelek13-Dec-07 1:45
protectorNelek13-Dec-07 1:45 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
yaminisridaran13-Dec-07 17:16
yaminisridaran13-Dec-07 17:16 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
Mark Salsbery13-Dec-07 6:26
Mark Salsbery13-Dec-07 6:26 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
yaminisridaran13-Dec-07 17:19
yaminisridaran13-Dec-07 17:19 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
Mark Salsbery13-Dec-07 19:05
Mark Salsbery13-Dec-07 19:05 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
yaminisridaran13-Dec-07 19:26
yaminisridaran13-Dec-07 19:26 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
Mark Salsbery13-Dec-07 19:32
Mark Salsbery13-Dec-07 19:32 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
yaminisridaran13-Dec-07 19:34
yaminisridaran13-Dec-07 19:34 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
Mark Salsbery13-Dec-07 19:37
Mark Salsbery13-Dec-07 19:37 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
yaminisridaran13-Dec-07 19:39
yaminisridaran13-Dec-07 19:39 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
yaminisridaran13-Dec-07 19:40
yaminisridaran13-Dec-07 19:40 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
Mark Salsbery13-Dec-07 19:45
Mark Salsbery13-Dec-07 19:45 
GeneralRe: WM_DRAWITEM does not process for tab control Pin
yaminisridaran13-Dec-07 19:57
yaminisridaran13-Dec-07 19:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.