Click here to Skip to main content
15,908,843 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questioncmd.exe bug / GetFileType from kernel mode Pin
Mike_V18-Jan-07 16:20
Mike_V18-Jan-07 16:20 
Questionhelp returning data from DLL Pin
Calvin Streeting18-Jan-07 13:36
Calvin Streeting18-Jan-07 13:36 
QuestionRe: help returning data from DLL Pin
prasad_som18-Jan-07 17:30
prasad_som18-Jan-07 17:30 
AnswerRe: help returning data from DLL Pin
Calvin Streeting18-Jan-07 22:00
Calvin Streeting18-Jan-07 22:00 
QuestionProblem with my code - cant fine what wrong - please need help. Pin
Yanshof18-Jan-07 12:12
Yanshof18-Jan-07 12:12 
AnswerRe: Problem with my code - cant fine what wrong - please need help. Pin
Stephen Hewitt18-Jan-07 12:17
Stephen Hewitt18-Jan-07 12:17 
GeneralRe: Problem with my code - cant fine what wrong - please need help. Pin
prasad_som18-Jan-07 17:33
prasad_som18-Jan-07 17:33 
GeneralRe: Problem with my code - cant fine what wrong - please need help. Pin
Yanshof18-Jan-07 21:03
Yanshof18-Jan-07 21:03 
I dont have any access to private member of the class that i inheritor from.
I inheritor from class CObject because i need to use Serialize.

This is my cpp fine code ( the h file code i add already )

#include "stdAfx.h"<br />
#include "MyFile.h"<br />
<br />
IMPLEMENT_SERIAL(CMyFile, CObject, 1);<br />
<br />
CMyFile::CMyFile(void)<br />
{<br />
}<br />
<br />
CMyFile::~CMyFile(void)<br />
{<br />
}<br />
<br />
void CMyFile::operator=(CMyFile& MyFile)<br />
{<br />
    m_sData = MyFile.GetData();<br />
    m_sPath = MyFile.GetPath();<br />
}<br />
<br />
void CMyFile::Serialize(CArchive &ar)<br />
{<br />
    CObject::Serialize(ar);<br />
<br />
    if(ar.IsStoring())<br />
    {<br />
        ar << m_sPath << m_sData;<br />
    }<br />
    else<br />
    {<br />
        ar >> m_sPath >> m_sData;<br />
    }<br />
}

QuestionRe: Problem with my code - cant fine what wrong - please need help. Pin
prasad_som18-Jan-07 21:26
prasad_som18-Jan-07 21:26 
AnswerRe: Problem with my code - cant fine what wrong - please need help. Pin
Yanshof18-Jan-07 21:26
Yanshof18-Jan-07 21:26 
GeneralRe: Problem with my code - cant fine what wrong - please need help. Pin
prasad_som18-Jan-07 21:44
prasad_som18-Jan-07 21:44 
GeneralRe: Problem with my code - cant fine what wrong - please need help. Pin
Yanshof18-Jan-07 21:56
Yanshof18-Jan-07 21:56 
GeneralRe: Problem with my code - cant fine what wrong - please need help. Pin
prasad_som18-Jan-07 22:00
prasad_som18-Jan-07 22:00 
QuestionHow can I pass a pointer to a VARIANT to a function? Pin
Joan M18-Jan-07 10:35
professionalJoan M18-Jan-07 10:35 
AnswerRe: How can I pass a pointer to a VARIANT to a function?[modified] Pin
CPallini18-Jan-07 11:03
mveCPallini18-Jan-07 11:03 
GeneralRe: How can I pass a pointer to a VARIANT to a function?[modified] Pin
Joan M18-Jan-07 19:47
professionalJoan M18-Jan-07 19:47 
GeneralRe: How can I pass a pointer to a VARIANT to a function?[modified] Pin
CPallini18-Jan-07 21:03
mveCPallini18-Jan-07 21:03 
AnswerRe: How can I pass a pointer to a VARIANT to a function? Pin
Stephen Hewitt18-Jan-07 12:12
Stephen Hewitt18-Jan-07 12:12 
GeneralRe: How can I pass a pointer to a VARIANT to a function? Pin
Joan M18-Jan-07 19:46
professionalJoan M18-Jan-07 19:46 
GeneralRe: How can I pass a pointer to a VARIANT to a function? Pin
Joan M18-Jan-07 19:51
professionalJoan M18-Jan-07 19:51 
QuestionVisual C++ 2005 Express setup error message Pin
Nawar_nrr18-Jan-07 8:05
Nawar_nrr18-Jan-07 8:05 
AnswerRe: Visual C++ 2005 Express setup error message Pin
Mark Salsbery18-Jan-07 8:43
Mark Salsbery18-Jan-07 8:43 
GeneralRe: Visual C++ 2005 Express setup error message Pin
David Crow18-Jan-07 8:51
David Crow18-Jan-07 8:51 
GeneralRe: Visual C++ 2005 Express setup error message Pin
Nawar_nrr18-Jan-07 9:06
Nawar_nrr18-Jan-07 9:06 
GeneralRe: Visual C++ 2005 Express setup error message Pin
Cedric Moonen18-Jan-07 9:41
Cedric Moonen18-Jan-07 9:41 

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.