Click here to Skip to main content
15,920,030 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Member 150337041-Jan-21 4:59
Member 150337041-Jan-21 4:59 
AnswerRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Richard MacCutchan31-Dec-20 21:26
mveRichard MacCutchan31-Dec-20 21:26 
GeneralRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Member 150337041-Jan-21 4:52
Member 150337041-Jan-21 4:52 
GeneralRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Richard MacCutchan1-Jan-21 4:55
mveRichard MacCutchan1-Jan-21 4:55 
GeneralRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Member 150337041-Jan-21 5:06
Member 150337041-Jan-21 5:06 
GeneralRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Richard MacCutchan1-Jan-21 5:13
mveRichard MacCutchan1-Jan-21 5:13 
GeneralRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Member 150337044-Jan-21 7:07
Member 150337044-Jan-21 7:07 
GeneralRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Richard MacCutchan4-Jan-21 9:46
mveRichard MacCutchan4-Jan-21 9:46 
AnswerRe: How to get access to CMyView variables from CMainFrame in MFC Pin
11917640 Member 4-Jan-21 22:29
11917640 Member 4-Jan-21 22:29 
GeneralRe: How to get access to CMyView variables from CMainFrame in MFC Pin
Member 150337045-Jan-21 2:44
Member 150337045-Jan-21 2:44 
Questionhaving problem to find an error Pin
bot-joy28-Dec-20 7:25
bot-joy28-Dec-20 7:25 
AnswerRe: having problem to find an error Pin
jeron128-Dec-20 7:40
jeron128-Dec-20 7:40 
AnswerRe: having problem to find an error Pin
CPallini28-Dec-20 20:22
mveCPallini28-Dec-20 20:22 
QuestionRe: having problem to find an error Pin
David Crow29-Dec-20 3:14
David Crow29-Dec-20 3:14 
AnswerRe: having problem to find an error Pin
Patrice T30-Dec-20 12:42
mvePatrice T30-Dec-20 12:42 
Questiongdi+ bitmap save on existing file - showing error Pin
Gopi Nath24-Dec-20 22:21
Gopi Nath24-Dec-20 22:21 
AnswerRe: gdi+ bitmap save on existing file - showing error Pin
Richard MacCutchan24-Dec-20 23:33
mveRichard MacCutchan24-Dec-20 23:33 
GeneralSolved - gdi+ bitmap save on existing file - showing error Pin
Gopi Nath24-Dec-20 23:53
Gopi Nath24-Dec-20 23:53 
Questionstd:strstream does not work Pin
Haakon S.22-Dec-20 2:38
Haakon S.22-Dec-20 2:38 
AnswerRe: std:strstream does not work Pin
Richard MacCutchan22-Dec-20 4:14
mveRichard MacCutchan22-Dec-20 4:14 
GeneralRe: std:strstream does not work Pin
Haakon S.22-Dec-20 22:21
Haakon S.22-Dec-20 22:21 
GeneralRe: std:strstream does not work Pin
Richard MacCutchan22-Dec-20 23:37
mveRichard MacCutchan22-Dec-20 23:37 
GeneralRe: std:strstream does not work Pin
Stefan_Lang23-Dec-20 23:59
Stefan_Lang23-Dec-20 23:59 
AnswerRe: std:strstream does not work Pin
Stefan_Lang23-Dec-20 23:56
Stefan_Lang23-Dec-20 23:56 
GeneralRe: std:strstream does not work Pin
Haakon S.24-Dec-20 0:37
Haakon S.24-Dec-20 0:37 
Hi.

Thanks for helping.

ifstream accepts the >> operator and get() function.

std::ifstream read_file((char*)filbuf,file_size,ios_base::out);
.
.
 pComp=new CComponent;
 read_file>>pComp;


This function is called:

ifstream& operator>>(ifstream& Stream,CComponent* pCmp){

Stream>>pCmp->m_nNo;
Stream.get(pCmp->m_formula,15);
.
.
}

Everything works fine, except that nothing is actually read.

Regards, Haakon.

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.