Click here to Skip to main content
15,905,616 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Problem running on other pc Pin
Code-o-mat29-Jan-09 2:35
Code-o-mat29-Jan-09 2:35 
AnswerRe: Problem running on other pc Pin
ATM@CodeProject29-Jan-09 2:38
ATM@CodeProject29-Jan-09 2:38 
GeneralRe: Problem running on other pc Pin
Thilek29-Jan-09 2:43
Thilek29-Jan-09 2:43 
AnswerRe: Problem running on other pc Pin
Cosmic Egg29-Jan-09 9:11
Cosmic Egg29-Jan-09 9:11 
GeneralRe: Problem running on other pc Pin
Thilek30-Jan-09 3:40
Thilek30-Jan-09 3:40 
GeneralRe: Problem running on other pc Pin
Thilek30-Jan-09 3:54
Thilek30-Jan-09 3:54 
GeneralRe: Problem running on other pc Pin
Thilek30-Jan-09 3:55
Thilek30-Jan-09 3:55 
QuestionDebug Assertion : Project exe cannot be found or does not match. Pin
Divya Lalwani29-Jan-09 2:09
Divya Lalwani29-Jan-09 2:09 
Hi, can u please help.
Its a small project and involves communication with a device. The data sent by the device is Written to .DAT file (WeightValue.dat).
Following is the code:
CStdioFile fil;
fil.Open("WeightValue.dat",CFile::modeReadWrite);
fil.WriteString(LPCTSTR(value));
fil.Close();

When I try running the exe in Release / Debug Configuration, I get a debug assertion saying :
"Debugging information for ADRTest.exe cannot be found or doess not match.Binary was not built with debug information."

ADRTest.exe has triggered a breakpoint and breaks to show.

void CStdioFile::WriteString(LPCTSTR lpsz)
{
ASSERT(lpsz != NULL);
breakpoint here-> ASSERT(m_pStream != NULL);

if (lpsz == NULL)
{
AfxThrowInvalidArgException();
}

if (_fputts(lpsz, m_pStream) == _TEOF)
AfxThrowFileException(CFileException::diskFull, _doserrno, m_strFileName);
}

Awaiting your kind reply.

Thanks and Regards.
Divya.
AnswerRe: Debug Assertion : Project exe cannot be found or does not match. Pin
Code-o-mat29-Jan-09 2:21
Code-o-mat29-Jan-09 2:21 
QuestionRe: Debug Assertion : Project exe cannot be found or does not match. Pin
David Crow29-Jan-09 2:51
David Crow29-Jan-09 2:51 
QuestionChanging Background color and Static Control background color. Pin
Le@rner29-Jan-09 1:50
Le@rner29-Jan-09 1:50 
AnswerRe: Changing Background color and Static Control background color. Pin
ATM@CodeProject29-Jan-09 1:57
ATM@CodeProject29-Jan-09 1:57 
AnswerRe: Changing Background color and Static Control background color. Pin
Code-o-mat29-Jan-09 2:02
Code-o-mat29-Jan-09 2:02 
GeneralRe: Changing Background color and Static Control background color. Pin
Le@rner29-Jan-09 17:37
Le@rner29-Jan-09 17:37 
QuestionMerging the two video files Pin
raj157629-Jan-09 1:28
raj157629-Jan-09 1:28 
AnswerRe: Merging the two video files Pin
Code-o-mat29-Jan-09 2:09
Code-o-mat29-Jan-09 2:09 
QuestionDetours Simple sample applications dll export problem Pin
keret29-Jan-09 1:24
keret29-Jan-09 1:24 
AnswerRe: Detours Simple sample applications dll export problem Pin
«_Superman_»29-Jan-09 1:49
professional«_Superman_»29-Jan-09 1:49 
GeneralRe: Detours Simple sample applications dll export problem Pin
keret29-Jan-09 3:41
keret29-Jan-09 3:41 
GeneralRe: Detours Simple sample applications dll export problem Pin
«_Superman_»29-Jan-09 19:49
professional«_Superman_»29-Jan-09 19:49 
GeneralRe: Detours Simple sample applications dll export problem Pin
keret30-Jan-09 0:35
keret30-Jan-09 0:35 
Questionhow to get file name to input to 'IWMMetadataEditor' in C++ ? Pin
Supriya Tonape29-Jan-09 1:22
Supriya Tonape29-Jan-09 1:22 
QuestionThread Question Pin
Dennis L29-Jan-09 0:54
Dennis L29-Jan-09 0:54 
AnswerRe: Thread Question Pin
Code-o-mat29-Jan-09 0:59
Code-o-mat29-Jan-09 0:59 
GeneralRe: Thread Question [modified] Pin
Dennis L29-Jan-09 1:36
Dennis L29-Jan-09 1: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.