Click here to Skip to main content
15,922,309 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Bit Fielf In UML Pin
Software_Developer23-Nov-11 0:43
Software_Developer23-Nov-11 0:43 
GeneralRe: Bit Field In UML Pin
Member 842679823-Nov-11 1:13
Member 842679823-Nov-11 1:13 
GeneralRe: Bit Field In UML Pin
Software_Developer23-Nov-11 3:24
Software_Developer23-Nov-11 3:24 
GeneralRe: Bit Field In UML Pin
Member 842679824-Nov-11 7:05
Member 842679824-Nov-11 7:05 
GeneralRe: Bit Field In UML Pin
Member 842679825-Nov-11 21:23
Member 842679825-Nov-11 21:23 
QuestionDoesn't open heading file VC ++ Pin
PeLeg8922-Nov-11 23:55
PeLeg8922-Nov-11 23:55 
AnswerRe: Doesn't open heading file VC ++ Pin
Richard MacCutchan23-Nov-11 0:04
mveRichard MacCutchan23-Nov-11 0:04 
GeneralRe: Doesn't open heading file VC ++ Pin
PeLeg8923-Nov-11 0:14
PeLeg8923-Nov-11 0:14 
GeneralRe: Doesn't open heading file VC ++ Pin
Richard MacCutchan23-Nov-11 0:30
mveRichard MacCutchan23-Nov-11 0:30 
GeneralRe: Doesn't open heading file VC ++ Pin
Erudite_Eric23-Nov-11 1:24
Erudite_Eric23-Nov-11 1:24 
AnswerRe: Doesn't open heading file VC ++ Pin
Albert Holguin23-Nov-11 2:47
professionalAlbert Holguin23-Nov-11 2:47 
GeneralRe: Doesn't open heading file VC ++ Pin
PeLeg8923-Nov-11 2:56
PeLeg8923-Nov-11 2:56 
GeneralRe: Doesn't open heading file VC ++ Pin
Albert Holguin23-Nov-11 3:32
professionalAlbert Holguin23-Nov-11 3:32 
QuestionHow to access physical memory location from IP address Pin
fingerss522-Nov-11 21:11
fingerss522-Nov-11 21:11 
AnswerRe: How to access physical memory location from IP address Pin
CPallini22-Nov-11 21:38
mveCPallini22-Nov-11 21:38 
AnswerRe: How to access physical memory location from IP address Pin
Erudite_Eric22-Nov-11 23:50
Erudite_Eric22-Nov-11 23:50 
AnswerRe: How to access physical memory location from IP address Pin
Software_Developer23-Nov-11 0:31
Software_Developer23-Nov-11 0:31 
GeneralRe: How to access physical memory location from IP address Pin
fingerss523-Nov-11 1:45
fingerss523-Nov-11 1:45 
QuestionSetDefaultCommConfig does not control / save DTR / RTS parameters - why ? Pin
Vaclav_22-Nov-11 9:49
Vaclav_22-Nov-11 9:49 
I am having hard time trying to understand why SetDefaultCommConfig will not set DTR / RTS parameters to 0. I can set the DCB to DTR = DTR_CONTROL_DISABLE (0) but when I read it back using GetDefaultCommConfig it goes back to 1.
I can control baud rate as expected, no problems here.
So what is so special about DTR or RTS that is cannot be controlled using Set/GetDefaultCommConfig?
Has data flow control involved here? In my system it is set to None.
The MSDN is rather cryptic saying that “some parameters cannot be changed” -using these APIs.

Here is my test code snippet:
COMMCONFIG config;
CString sPort;
int nPort = 2;
sPort.Format(_T("COM%d"), nPort);
DWORD dwSize = sizeof(COMMCONFIG);
if (!GetDefaultCommConfig(sPort, &config, &dwSize))
{
TRACE(_T("Failed in call to GetDefaultCommConfig\n"));

}

config.dcb.fDtrControl = DTR_CONTROL_DISABLE;// DTR_CONTROL_ENABLE;
config.dcb.fRtsControl = RTS_CONTROL_DISABLE;
config.dcb.BaudRate = 123456;
config.dcb.fOutxDsrFlow = false;

All parmaters are correct in watch.

if (!SetDefaultCommConfig(sPort, &config, dwSize))
{
TRACE(_T("Failed in call to GetDefaultCommConfig\n"));

}
if (!GetDefaultCommConfig(sPort, &config, &dwSize))
{
TRACE(_T("Failed in call to GetDefaultCommConfig\n"));

}

As always , thanks for your help.
AnswerRe: SetDefaultCommConfig does not control / save DTR / RTS parameters - why ? Pin
CPallini22-Nov-11 21:42
mveCPallini22-Nov-11 21:42 
GeneralRe: SetDefaultCommConfig does not control / save DTR / RTS parameters - why ? Pin
Vaclav_23-Nov-11 3:49
Vaclav_23-Nov-11 3:49 
Questionstring operation Pin
robin70022-Nov-11 9:40
robin70022-Nov-11 9:40 
AnswerRe: string operation Pin
Richard MacCutchan22-Nov-11 9:59
mveRichard MacCutchan22-Nov-11 9:59 
GeneralRe: string operation Pin
robin70022-Nov-11 10:13
robin70022-Nov-11 10:13 
GeneralRe: string operation Pin
Richard MacCutchan22-Nov-11 10:22
mveRichard MacCutchan22-Nov-11 10:22 

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.