Click here to Skip to main content
15,912,932 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Programatically set Internet Explorer Pin
Don Miguel21-Jan-02 21:43
Don Miguel21-Jan-02 21:43 
GeneralRe: Programatically set Internet Explorer Pin
Not Active21-Jan-02 4:37
mentorNot Active21-Jan-02 4:37 
GeneralRe: Programatically set Internet Explorer Pin
21-Jan-02 5:27
suss21-Jan-02 5:27 
GeneralRe: Programatically set Internet Explorer Pin
Don Miguel21-Jan-02 7:13
Don Miguel21-Jan-02 7:13 
QuestionMSHTML in app. Is it legal? Pin
Jon Newman21-Jan-02 1:30
Jon Newman21-Jan-02 1:30 
AnswerRe: MSHTML in app. Is it legal? Pin
Mike Eriksson24-Jan-02 1:47
Mike Eriksson24-Jan-02 1:47 
QuestionTwo question about window's timer?? Pin
hemouse21-Jan-02 1:28
hemouse21-Jan-02 1:28 
AnswerRe: Two question about window's timer?? Pin
Ravi Bhavnani21-Jan-02 1:45
professionalRavi Bhavnani21-Jan-02 1:45 
hemouse wrote:
the program's interface can't updated until this long task has finished,
what shoud I do in such case?


You should create a thread to perform time consuming tasks (such as the file copy) in the background. Alternatively, you can perform the file copy in small chunks, between which you should flush the Windows message queue. The separate thread is the preferred way.

hemouse wrote:
when I drag another application's window, It seem that the WM_TIMER message only occured after I release the mouse-button

WM_TIMER messages are still being sent as you perform the drag. However, Windows will handle higher priority messages first (eg: WM_MOUSEMOVE). Eventually, all the WM_TIMER messages will be handled as a single one. You need to restructure your logic to account for this.

/ravi

"There is always one more bug..."
http://www.ravib.com
ravib@ravib.com
GeneralRe: Two question about window's timer?? Pin
hemouse21-Jan-02 23:45
hemouse21-Jan-02 23:45 
AnswerRe: Two question about window's timer?? Pin
Joao Vaz21-Jan-02 2:33
Joao Vaz21-Jan-02 2:33 
AnswerRe: Two question about window's timer?? Pin
21-Jan-02 2:58
suss21-Jan-02 2:58 
AnswerRe: Two question about window's timer?? Pin
HintiFlo30-Jan-02 23:14
HintiFlo30-Jan-02 23:14 
QuestionDid anybody ever use MSFlexGrid control in VC++ before? Pin
Aaron K.B. Huang20-Jan-02 21:54
Aaron K.B. Huang20-Jan-02 21:54 
AnswerRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Christian Graus20-Jan-02 22:01
protectorChristian Graus20-Jan-02 22:01 
GeneralRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Aaron K.B. Huang20-Jan-02 22:45
Aaron K.B. Huang20-Jan-02 22:45 
GeneralRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Christian Graus21-Jan-02 5:49
protectorChristian Graus21-Jan-02 5:49 
GeneralRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Aaron K.B. Huang21-Jan-02 15:02
Aaron K.B. Huang21-Jan-02 15:02 
GeneralRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Rashid Thadha21-Jan-02 22:26
Rashid Thadha21-Jan-02 22:26 
GeneralRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Aaron K.B. Huang21-Jan-02 22:55
Aaron K.B. Huang21-Jan-02 22:55 
GeneralRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Chitrack20-Sep-04 20:46
Chitrack20-Sep-04 20:46 
AnswerRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Rashid Thadha20-Jan-02 22:10
Rashid Thadha20-Jan-02 22:10 
GeneralRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Aaron K.B. Huang20-Jan-02 22:44
Aaron K.B. Huang20-Jan-02 22:44 
GeneralRe: Did anybody ever use MSFlexGrid control in VC++ before? Pin
Aaron K.B. Huang21-Jan-02 20:54
Aaron K.B. Huang21-Jan-02 20:54 
GeneralSerial Communication Pin
et20-Jan-02 21:28
et20-Jan-02 21:28 
GeneralRe: Serial Communication Pin
Jon Hulatt20-Jan-02 21:47
Jon Hulatt20-Jan-02 21:47 

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.