Click here to Skip to main content
15,917,862 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: .ico replaced, 32*32 icon changed, 16*16 not changed, why Pin
Iain Clarke, Warrior Programmer23-Nov-07 5:51
Iain Clarke, Warrior Programmer23-Nov-07 5:51 
GeneralRe: .ico replaced, 32*32 icon changed, 16*16 not changed, why Pin
followait24-Nov-07 16:12
followait24-Nov-07 16:12 
QuestionDynamic generation of server controls in asp.net 2.0 Pin
ysunil_7422-Nov-07 17:22
ysunil_7422-Nov-07 17:22 
AnswerRe: Dynamic generation of server controls in asp.net 2.0 Pin
Hamid_RT22-Nov-07 19:30
Hamid_RT22-Nov-07 19:30 
QuestionRead serial port at high baud rate Pin
Guo_yt22-Nov-07 16:03
Guo_yt22-Nov-07 16:03 
AnswerRe: Read serial port at high baud rate Pin
KarstenK22-Nov-07 20:38
mveKarstenK22-Nov-07 20:38 
AnswerRe: Read serial port at high baud rate Pin
kakan22-Nov-07 21:30
professionalkakan22-Nov-07 21:30 
AnswerRe: Read serial port at high baud rate Pin
Roger Stoltz22-Nov-07 22:03
Roger Stoltz22-Nov-07 22:03 
First, you have to make sure that the PDA device supports the baudrate you're trying to use like KarstenK suggested.

Second, you should really use overlapped I/O (asynchronous), as kakan also suggested for many reasons.
One reason that may not be so obvious is that any code you post may seem all right at a glance, but suffers from timing issues since it is supposed to be synchronous which makes it hard for us to help you. When you're not using overlapped I/O, the serial port driver can only complete one IRP at a time, which means that while you're blocking on a read operation you cannot issue a write operation.
Read this article[^] to get started with overlapped I/O.


"It's supposed to be hard, otherwise anybody could do it!" - selfquote
"High speed never compensates for wrong direction!" - unknown

GeneralRe: Read serial port at high baud rate Pin
Guo_yt25-Nov-07 0:29
Guo_yt25-Nov-07 0:29 
QuestionTabbing Order in Dialogs Pin
Bram van Kampen22-Nov-07 15:50
Bram van Kampen22-Nov-07 15:50 
AnswerRe: Tabbing Order in Dialogs [modified] Pin
Nibu babu thomas22-Nov-07 16:13
Nibu babu thomas22-Nov-07 16:13 
GeneralRe: Tabbing Order in Dialogs Pin
Bram van Kampen22-Nov-07 16:53
Bram van Kampen22-Nov-07 16:53 
GeneralRe: Tabbing Order in Dialogs Pin
Nibu babu thomas22-Nov-07 17:33
Nibu babu thomas22-Nov-07 17:33 
GeneralRe: Tabbing Order in Dialogs Pin
Bram van Kampen23-Nov-07 1:15
Bram van Kampen23-Nov-07 1:15 
GeneralRe: Tabbing Order in Dialogs Pin
Hamid_RT22-Nov-07 19:42
Hamid_RT22-Nov-07 19:42 
GeneralRe: Tabbing Order in Dialogs Pin
Bram van Kampen23-Nov-07 21:46
Bram van Kampen23-Nov-07 21:46 
GeneralRe: Tabbing Order in Dialogs Pin
Hamid_RT26-Nov-07 19:24
Hamid_RT26-Nov-07 19:24 
AnswerRe: Tabbing Order in Dialogs... Resolved Pin
Bram van Kampen30-Nov-07 14:57
Bram van Kampen30-Nov-07 14:57 
QuestionWin32 / MFC mixing TRUE / BST_CHECK for SetCheck function Pin
xanagan66622-Nov-07 14:17
xanagan66622-Nov-07 14:17 
AnswerRe: Win32 / MFC mixing TRUE / BST_CHECK for SetCheck function Pin
Hamid_RT22-Nov-07 19:42
Hamid_RT22-Nov-07 19:42 
GeneralRe: Win32 / MFC mixing TRUE / BST_CHECK for SetCheck function Pin
xanagan66622-Nov-07 20:51
xanagan66622-Nov-07 20:51 
GeneralRe: Win32 / MFC mixing TRUE / BST_CHECK for SetCheck function Pin
ovidiucucu22-Nov-07 21:51
ovidiucucu22-Nov-07 21:51 
GeneralRe: Win32 / MFC mixing TRUE / BST_CHECK for SetCheck function Pin
CPallini22-Nov-07 22:12
mveCPallini22-Nov-07 22:12 
AnswerRe: Win32 / MFC mixing TRUE / BST_CHECK for SetCheck function Pin
CPallini22-Nov-07 22:05
mveCPallini22-Nov-07 22:05 
AnswerRe: Win32 / MFC mixing TRUE / BST_CHECK for SetCheck function Pin
xanagan66622-Nov-07 23:09
xanagan66622-Nov-07 23:09 

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.