Click here to Skip to main content
15,895,370 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionAutomatically appending an auto incrementing build number to Apps title in Visual Studio 2009..? [modified] Pin
montiee4-Oct-08 23:31
montiee4-Oct-08 23:31 
AnswerRe: Automatically appending an auto incrementing build number to Apps title in Visual Studio 2009..? Pin
Bram van Kampen5-Oct-08 2:49
Bram van Kampen5-Oct-08 2:49 
GeneralRe: Automatically appending an auto incrementing build number to Apps title in Visual Studio 2009..? Pin
montiee7-Oct-08 22:15
montiee7-Oct-08 22:15 
GeneralRe: Automatically appending an auto incrementing build number to Apps title in Visual Studio 2009..? Pin
Bram van Kampen9-Oct-08 15:54
Bram van Kampen9-Oct-08 15:54 
Questiondebugging release version build issue in managed code Pin
George_George4-Oct-08 22:07
George_George4-Oct-08 22:07 
QuestionDialog question Pin
yellowine4-Oct-08 18:52
yellowine4-Oct-08 18:52 
AnswerRe: Dialog question Pin
Cedric Moonen4-Oct-08 21:38
Cedric Moonen4-Oct-08 21:38 
AnswerRe: Dialog question Pin
bxveer5-Oct-08 3:53
bxveer5-Oct-08 3:53 
I had the same issue and found a simple solution. In the process/task that you are triggering from this dialog, insert the following code so it gets called periodically while that process/task progresses.

MSG msgs;
while( ::PeekMessage( &msgs, NULL, 0, 0 , PM_NOREMOVE ) )
{
if( !AfxGetThread()->PumpMessage() )
{
::PostQuitMessage(0);
break;
}
}
GeneralRe: Dialog question Pin
yellowine5-Oct-08 19:01
yellowine5-Oct-08 19:01 
Questionhow to run sample files Pin
tom4_254-Oct-08 17:54
tom4_254-Oct-08 17:54 
AnswerRe: how to run sample files Pin
CPallini4-Oct-08 21:46
mveCPallini4-Oct-08 21:46 
GeneralRe: how to run sample files Pin
tom4_255-Oct-08 2:16
tom4_255-Oct-08 2:16 
GeneralRe: how to run sample files Pin
CPallini5-Oct-08 7:46
mveCPallini5-Oct-08 7:46 
GeneralRe: how to run sample files Pin
Hamid_RT6-Oct-08 1:52
Hamid_RT6-Oct-08 1:52 
QuestionHow to assign the value of a default argument for a ActiveX method Pin
followait4-Oct-08 16:31
followait4-Oct-08 16:31 
AnswerRe: How to assign the value of a default argument for a ActiveX method Pin
User 2155974-Oct-08 21:12
User 2155974-Oct-08 21:12 
QuestionGetting Printer DC's Pin
Bram van Kampen4-Oct-08 13:06
Bram van Kampen4-Oct-08 13:06 
AnswerRe: Getting Printer DC's Pin
PJ Arends4-Oct-08 15:22
professionalPJ Arends4-Oct-08 15:22 
GeneralRe: Getting Printer DC's Pin
Bram van Kampen5-Oct-08 1:43
Bram van Kampen5-Oct-08 1:43 
GeneralRe: Getting Printer DC's Pin
PJ Arends5-Oct-08 6:59
professionalPJ Arends5-Oct-08 6:59 
AnswerRe: Getting Printer DC's Pin
Bram van Kampen5-Oct-08 7:26
Bram van Kampen5-Oct-08 7:26 
GeneralRe: Getting Printer DC's Pin
Bram van Kampen5-Oct-08 12:21
Bram van Kampen5-Oct-08 12:21 
AnswerRe: Getting Printer DC's Pin
Hamid_RT5-Oct-08 2:09
Hamid_RT5-Oct-08 2:09 
GeneralRe: Getting Printer DC's Pin
sodevrom5-Oct-08 8:58
sodevrom5-Oct-08 8:58 
GeneralRe: Getting Printer DC's Pin
Bram van Kampen5-Oct-08 12:36
Bram van Kampen5-Oct-08 12:36 

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.