Click here to Skip to main content
15,888,816 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralNULL character problem Pin
LighthouseJ1-Mar-05 18:38
LighthouseJ1-Mar-05 18:38 
GeneralRe: NULL character problem Pin
RicoH2-Mar-05 0:31
RicoH2-Mar-05 0:31 
GeneralRe: NULL character problem Pin
LighthouseJ2-Mar-05 2:48
LighthouseJ2-Mar-05 2:48 
GeneralRe: NULL character problem Pin
David Crow2-Mar-05 2:34
David Crow2-Mar-05 2:34 
GeneralRe: NULL character problem Pin
LighthouseJ2-Mar-05 2:46
LighthouseJ2-Mar-05 2:46 
QuestionHow to call PostThreadMessage from outside the thread function Pin
saha2k51-Mar-05 18:23
saha2k51-Mar-05 18:23 
AnswerRe: How to call PostThreadMessage from outside the thread function Pin
saha2k51-Mar-05 22:25
saha2k51-Mar-05 22:25 
Question" MFC appliation has encountered an error" Why??? Pin
wasife1-Mar-05 17:32
wasife1-Mar-05 17:32 
I am making a login form(very simple). i am storing username and password(both 5 characters each fixed)in file. when i try to login and press login button, it gives the message "MFC application has encountered and error and needs to close...". And some time it raises exception like "dbgHeap on line 1017" . Please somebody could help me. I am pasting complete code of Login button message handler...
BOOL CNewJoiningFormDlg::LogIn()
{
UpdateData(TRUE);
if(m_strLoginName.GetLength()!=5)
{
MessageBox("Login Name must be exactly 5 characters long","Stop",MB_ICONSTOP|MB_OK);
return FALSE;
}
if(m_strPassword.GetLength()!=5)
{
MessageBox("Password must be exactly 5 characters long","Stop",MB_ICONSTOP|MB_OK);
return FALSE;
}
/*---Declare the variables in which login and password will be read from the file*/
CString psw;
CString login;
//--Take the file pointer to the beginning of the file
ASSERT_VALID(m_pPSWFile);
m_pPSWFile->SeekToBegin();
DWORD fileLength=m_pPSWFile->GetLength();
UpdateData(FALSE);
while( (m_pPSWFile->GetPosition()) < fileLength )
{
m_pPSWFile->Read(&login,5);
if(login==m_strLoginName)
{
UpdateData(FALSE);
m_pPSWFile->Read(&psw,5);
if(psw==m_strPassword)
{
UpdateData(FALSE);
AfxMessageBox("You supplied correct Login Name and Password");
return TRUE;
}
}
}
return FALSE;
}
AnswerRe: &quot; MFC appliation has encountered an error&quot; Why??? Pin
Christian Graus1-Mar-05 18:04
protectorChristian Graus1-Mar-05 18:04 
AnswerRe: " MFC appliation has encountered an error" Why??? Pin
David Crow2-Mar-05 2:44
David Crow2-Mar-05 2:44 
GeneralRe: &quot; MFC appliation has encountered an error&quot; Why??? Pin
Chris Losinger2-Mar-05 3:16
professionalChris Losinger2-Mar-05 3:16 
QuestionHow can I get the MAC addresses of all IP devices on same network ? Pin
charisma_youn1-Mar-05 16:34
charisma_youn1-Mar-05 16:34 
AnswerRe: How can I get the MAC addresses of all IP devices on same network ? Pin
Alexander M.,2-Mar-05 2:58
Alexander M.,2-Mar-05 2:58 
Questionhow to create setup files Pin
rjnl1-Mar-05 15:39
rjnl1-Mar-05 15:39 
AnswerRe: how to create setup files Pin
LighthouseJ1-Mar-05 15:59
LighthouseJ1-Mar-05 15:59 
AnswerRe: how to create setup files Pin
zhang8006051-Mar-05 16:13
zhang8006051-Mar-05 16:13 
AnswerRe: how to create setup files Pin
ThatsAlok2-Mar-05 2:38
ThatsAlok2-Mar-05 2:38 
QuestionHow to determine the column No. in CListView when user right-clicked the list header? Pin
lisoft1-Mar-05 15:32
lisoft1-Mar-05 15:32 
AnswerRe: How to determine the column No. in CListView when user right-clicked the list header? Pin
zhang8006051-Mar-05 17:04
zhang8006051-Mar-05 17:04 
GeneralSeveral child documents Pin
joy0071-Mar-05 15:32
joy0071-Mar-05 15:32 
GeneralPointer to Void problem Pin
LighthouseJ1-Mar-05 15:19
LighthouseJ1-Mar-05 15:19 
GeneralRe: Pointer to Void problem Pin
zhang8006051-Mar-05 15:44
zhang8006051-Mar-05 15:44 
GeneralRe: Pointer to Void problem Pin
LighthouseJ1-Mar-05 16:17
LighthouseJ1-Mar-05 16:17 
GeneralGantt charts Pin
Anonymous1-Mar-05 15:07
Anonymous1-Mar-05 15:07 
GeneralRe: Gantt charts Pin
cmk2-Mar-05 14:03
cmk2-Mar-05 14:03 

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.