Click here to Skip to main content
15,904,288 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Plese i need some help over here !!!!! Pin
Christian Graus22-Sep-06 1:40
protectorChristian Graus22-Sep-06 1:40 
AnswerRe: Plese i need some help over here !!!!! Pin
Bravoone_200622-Sep-06 2:11
Bravoone_200622-Sep-06 2:11 
GeneralRe: Plese i need some help over here !!!!! Pin
Hamid_RT22-Sep-06 2:36
Hamid_RT22-Sep-06 2:36 
GeneralRe: Plese i need some help over here !!!!! Pin
Christian Graus22-Sep-06 10:16
protectorChristian Graus22-Sep-06 10:16 
Questionsome trouble about my program to receive mails(help, help me) Pin
tanzhenlong21-Sep-06 23:47
tanzhenlong21-Sep-06 23:47 
Questiondiffernece between winsock and csocket Pin
Muhammad Azeem Azam21-Sep-06 22:56
Muhammad Azeem Azam21-Sep-06 22:56 
AnswerRe: differnece between winsock and csocket Pin
_AnsHUMAN_ 21-Sep-06 23:19
_AnsHUMAN_ 21-Sep-06 23:19 
Questionproblem with CEdit Pin
zizzzz21-Sep-06 22:56
zizzzz21-Sep-06 22:56 
AnswerRe: problem with CEdit Pin
Rinu_Raj21-Sep-06 23:12
Rinu_Raj21-Sep-06 23:12 
GeneralRe: problem with CEdit Pin
toxcct21-Sep-06 23:20
toxcct21-Sep-06 23:20 
GeneralRe: problem with CEdit Pin
Rinu_Raj21-Sep-06 23:30
Rinu_Raj21-Sep-06 23:30 
AnswerRe: problem with CEdit Pin
toxcct21-Sep-06 23:17
toxcct21-Sep-06 23:17 
GeneralRe: problem with CEdit Pin
zizzzz21-Sep-06 23:45
zizzzz21-Sep-06 23:45 
GeneralRe: problem with CEdit Pin
toxcct21-Sep-06 23:58
toxcct21-Sep-06 23:58 
AnswerRe: problem with CEdit Pin
Cedric Moonen21-Sep-06 23:26
Cedric Moonen21-Sep-06 23:26 
JokeRe: problem with CEdit Pin
toxcct21-Sep-06 23:59
toxcct21-Sep-06 23:59 
GeneralRe: problem with CEdit Pin
zizzzz22-Sep-06 0:02
zizzzz22-Sep-06 0:02 
GeneralRe: problem with CEdit Pin
Hamid_RT22-Sep-06 1:25
Hamid_RT22-Sep-06 1:25 
GeneralRe: problem with CEdit Pin
zizzzz22-Sep-06 2:12
zizzzz22-Sep-06 2:12 
Questionerror 404 Pin
AnDev21-Sep-06 22:46
AnDev21-Sep-06 22:46 
AnswerRe: error 404 Pin
toxcct21-Sep-06 22:47
toxcct21-Sep-06 22:47 
QuestionSetting the Cursor Pin
Andy20221-Sep-06 22:18
Andy20221-Sep-06 22:18 
AnswerRe: Setting the Cursor Pin
Rinu_Raj21-Sep-06 22:21
Rinu_Raj21-Sep-06 22:21 
GeneralRe: Setting the Cursor Pin
Andy20222-Sep-06 0:37
Andy20222-Sep-06 0:37 
AnswerRe: Setting the Cursor Pin
prasad_som22-Sep-06 1:04
prasad_som22-Sep-06 1:04 
Is there any reason not going for CWaitCursor ?
You code would be modified like this,
// Set hourglass cursor:
CWaitCursor wait;
while (!g_pRecordset->GetadoEOF() /* && g_nLineCounter < 1000 */)
{
// Obtain the MessageDisplayName
g_TheValue = g_pRecordset->Fields->GetItem ("MessageDisplayName")->Value;
g_szMessageDisplayName.Format("%s", (char *)_bstr_t(g_TheValue));
j++;
ProcessMessages();
} 
output.AppendFile(g_szFileName, m_lineData);

You only need to construct its object.




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.